.ipolitico-video-player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 0.13);
	background:
		radial-gradient(circle at center, rgb(201 154 74 / 0.22), transparent 28%),
		linear-gradient(130deg, #163d66, #08192e);
}

.video-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	color: inherit;
	background: transparent;
	cursor: pointer;
}

.video-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease, filter 240ms ease;
}

.video-poster::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 48%, rgb(3 19 40 / 0.42));
	pointer-events: none;
}

.video-poster:hover img {
	transform: scale(1.015);
	filter: brightness(0.9);
}

.video-poster:hover .play,
.video-poster:focus-visible .play {
	color: var(--navy);
	background: var(--gold);
}

.video-poster:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: -3px;
}

.ipolitico-video-player iframe,
.ipolitico-video-player video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	background: #000;
}

.dome-feature .ipolitico-video-player {
	min-height: 330px;
}

.article-video {
	margin-top: 34px;
	margin-bottom: 34px;
}

.article-video .ipolitico-video-player {
	max-height: 700px;
	border-color: var(--line);
}

.article-media-credit {
	margin-top: 8px;
	color: var(--muted);
	font: 12px/1.4 var(--sans);
}

@media (prefers-reduced-motion: reduce) {
	.video-poster img {
		transition: none;
	}
}

@media (max-width: 980px) {
	.dome-feature .ipolitico-video-player {
		min-height: 0;
	}
}
