/* template-parts/section/about_hero.php */
/* ----------------------------------------------------------
   ABOUT HERO  (white bg | h 836px | px 148px | py 80px)
   Large interior image centered in white frame
---------------------------------------------------------- */
.about-hero {
	background-color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--section-py) var(--section-px);
}

.about-hero__video-wrap {
	width: 100%;
	max-width: var(--container-max);
	aspect-ratio: 1140 / 676;
	overflow: hidden;
}

.about-hero__img,
.about-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

@media (max-width: 767.9px) {
	.about-hero {
		padding: var(--section-py) var(--section-px) 0;
	}
	.about-hero__video-wrap {
		max-width: none;
		aspect-ratio: unset;
		height: 217px;
	}
}
