/* Viconic Testimonials — shared video lightbox */

#vh-video-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000; /* above Avada header/menus */
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	padding: 24px;
}

#vh-video-overlay[hidden] {
	display: none;
}

body.vh-video-open {
	overflow: hidden;
}

.vh-video-dialog {
	position: relative;
	width: min(92vw, 960px);
}

.vh-video-frame {
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.vh-video-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.vh-video-close {
	position: absolute;
	top: -44px;
	right: -8px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 32px;
	line-height: 40px;
	cursor: pointer;
}

.vh-video-close:hover,
.vh-video-close:focus {
	color: #ccc;
	outline: none;
}

@media (max-width: 640px) {
	#vh-video-overlay {
		padding: 12px;
	}

	.vh-video-close {
		top: -46px;
		right: 0;
	}
}
