.esw-vtpp {
	box-sizing: border-box;
	width: min(var(--esw-vtpp-width, 100%), var(--esw-vtpp-max-width, 960px));
	max-width: 100%;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}
.esw-vtpp--left { margin-right: auto; margin-left: 0; }
.esw-vtpp--center { margin-right: auto; margin-left: auto; }
.esw-vtpp--right { margin-right: 0; margin-left: auto; }
.esw-vtpp__preview {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: var(--esw-vtpp-border-width, 1px) solid var(--esw-vtpp-border, #1f2937);
	border-radius: var(--esw-vtpp-radius, 12px);
	background: #000;
	box-shadow: var(--esw-vtpp-shadow, none);
	cursor: pointer;
	line-height: 0;
}
.esw-vtpp__preview:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
}
.esw-vtpp__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .18s ease, filter .18s ease;
}
.esw-vtpp__preview:hover .esw-vtpp__image,
.esw-vtpp__preview:focus-visible .esw-vtpp__image {
	transform: scale(1.012);
	filter: brightness(.92);
}
.esw-vtpp__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: clamp(62px, 10vw, 86px);
	height: clamp(44px, 7vw, 60px);
	transform: translate(-50%, -50%);
	border-radius: 18%;
	background: var(--esw-vtpp-play, #ff0000);
	box-shadow: 0 4px 14px rgba(0,0,0,.32);
	display: grid;
	place-items: center;
	transition: transform .18s ease;
}
.esw-vtpp__play span {
	width: 0;
	height: 0;
	margin-left: 5px;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 18px solid var(--esw-vtpp-play-icon, #fff);
}
.esw-vtpp__preview:hover .esw-vtpp__play,
.esw-vtpp__preview:focus-visible .esw-vtpp__play {
	transform: translate(-50%, -50%) scale(1.06);
}
.esw-vtpp__caption {
	margin-top: .55rem;
	font-size: .95em;
	line-height: 1.4;
}
.esw-vtpp__credit {
	margin-top: .35rem;
	font-size: 11px;
	line-height: 1.3;
	opacity: .62;
}
.esw-vtpp__credit a { color: inherit; text-decoration: none; }
.esw-vtpp__credit a:hover, .esw-vtpp__credit a:focus { text-decoration: underline; }
.esw-vtpp-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 3vw, 36px);
	background: rgba(0,0,0,.86);
}
.esw-vtpp-modal.is-open { display: flex; }
.esw-vtpp-modal__dialog {
	position: relative;
	width: min(1100px, 100%);
	max-height: 100%;
}
.esw-vtpp-modal__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.esw-vtpp-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.esw-vtpp-modal__close {
	position: absolute;
	right: -10px;
	top: -48px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,.65);
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
}
.esw-vtpp-modal__close:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
body.esw-vtpp-modal-open { overflow: hidden !important; }
.esw-vtpp-notice { padding: 10px 12px; border: 1px solid currentColor; border-radius: 6px; }
@media (max-width: 640px) {
	.esw-vtpp { width: 100%; }
	.esw-vtpp-modal { padding: 12px; }
	.esw-vtpp-modal__close { right: 0; top: -48px; }
}
@media (prefers-reduced-motion: reduce) {
	.esw-vtpp__image, .esw-vtpp__play { transition: none; }
}
