.hero-video-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	min-height: 800px;
	overflow: hidden;
	background-color: #000;
}

/* Video layer */
.hero-video-banner__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-video-banner__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video-banner__video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: calc(100vw / (16 / 9));
	min-height: 100%;
	min-width: calc(100vh * (16 / 9));
	transform: translate(-50%, -50%);
	border: 0;
}

/* Overlay — L-to-R transparent to semi-transparent white */
.hero-video-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:  rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

/* Content layer */
.hero-video-banner__content {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
	text-align: center;
}

.hero-video-banner__content .alignfull {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Mobile — stacked layout */
@media (max-width: 768px) {
	.hero-video-banner {
		flex-direction: column;
		width: calc(100% + 2rem);
		margin-left: -1rem;
		margin-right: -1rem;
		min-height: auto;
	}

	.hero-video-banner__video {
		position: relative;
		inset: auto;
		aspect-ratio: 16 / 9;
		width: 100%;
	}

	.hero-video-banner__video iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		min-width: 0;
		min-height: 0;
		transform: none;
	}

	.hero-video-banner__overlay {
		display: none;
	}

	.hero-video-banner__content {
		padding: 2rem 1rem;
		background: white;
	}

	.wp-block-columns {
		gap: 0;
	}
}
 