.awd-video-popup {
	position: relative;
	width: 100%;
}

.awd-video-popup__link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 0.5rem;
}

.awd-video-popup__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.awd-video-popup__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem;
	background: rgb(0 0 0 / 25%);
	color: #fff;
	text-align: center;
	transition: background-color 180ms ease;
}

.awd-video-popup__link:hover .awd-video-popup__overlay,
.awd-video-popup__link:focus-visible .awd-video-popup__overlay {
	background: rgb(0 0 0 / 40%);
}

.awd-video-popup__play {
	display: grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	padding-left: 0.2rem;
	border-radius: 50%;
	background: #cb3234;
	font-size: 1.25rem;
}

.awd-video-popup__title {
	font-weight: 600;
	text-shadow: 0 1px 3px rgb(0 0 0 / 70%);
}

.awd-video-popup__notice {
	padding: 1rem;
	border: 1px dashed #8c8f94;
	background: #f6f7f7;
}

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