.video-text br{
    @apply hidden lg:inline;
}

/* ---------- Lightbox ---------- */
.vt-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.vt-lightbox.is-open {
	display: flex;
}

.vt-lightbox__backdrop {
	position: absolute;
	inset: 0;
	cursor: pointer;
	@apply backdrop-blur-3xl bg-white/80;
}

.vt-lightbox__inner {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 960px;
}

.vt-lightbox__close {
	position: absolute;
	top: -3.25rem;
	right: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	@apply bg-primary;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: opacity 0.2s ease;
	padding: 0;
	flex-shrink: 0;
}

.vt-lightbox__close:hover {
	opacity: 0.75;
}

.vt-lightbox__close svg {
	width: 1.125rem;
	height: 1.125rem;
}

.vt-lightbox__video {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000000;
	border-radius: 0.75rem;
	overflow: hidden;
}

.vt-lightbox__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}
