/* ==========================================================================
   Video Lightbox
   ========================================================================== */

.video-lightbox[hidden] {
	display: none;
}

.video-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}

.video-lightbox__content {
	position: relative;
	width: 90vw;
	max-width: 960px;
}

.video-lightbox__embed {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 4px;
}

.video-lightbox__iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-lightbox__close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: background 0.15s ease;
}

.video-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

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