.hero {
	position: relative;
	display: flex;
	align-items: center;
	isolation: isolate;
	min-height: calc(100dvh - var(--site-header-height, var(--header-desktop-height)));
	padding: clamp(5rem, 6vw, 7rem) 0;
	overflow: hidden;
}

.hero--has-media {
	color: var(--color-on-dark);
	--section-title-color: var(--color-on-dark);
	--section-text-color: var(--color-on-dark);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__image {
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg);
	background-image: var(--hero-bg-set, var(--hero-bg));
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero__video-wrap {
	position: absolute;
	inset: 0;
}

.hero__video,
.hero__youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.hero__youtube {
	width: 177.78vh;
	height: 100vh;
	min-width: 100%;
	min-height: 56.25vw;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(39, 49, 53, 0.48);
}

.hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero__inner {
	max-width: 52rem;
}

.hero--align-left .hero__inner {
	margin-right: auto;
	text-align: left;
}

.hero--align-center .hero__inner {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.hero--align-right .hero__inner {
	margin-left: auto;
	text-align: right;
}

.hero__pre-title {
	margin: 0 0 0.85rem;
	color: inherit;
	font-family: var(--font-family-title);
	font-size: 0.8rem;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hero__title {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	line-height: 1.15;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.hero--align-left .hero__actions {
	justify-content: flex-start;
}

.hero--align-center .hero__actions {
	justify-content: center;
}

.hero--align-right .hero__actions {
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.hero {
		min-height: calc(100dvh - var(--site-header-height, var(--header-desktop-height)));
		padding: 3rem 0;
	}

	.hero__inner {
		max-width: none;
	}

	.hero--align-right .hero__inner {
		text-align: left;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero__pre-title {
		text-align: center;
	}

	.hero--mobile-bg-left .hero__image {
		background-position: left center;
	}

	.hero--mobile-bg-center .hero__image {
		background-position: center center;
	}

	.hero--mobile-bg-right .hero__image {
		background-position: right center;
	}

	.hero--mobile-bg-left .hero__video {
		object-position: left center;
	}

	.hero--mobile-bg-center .hero__video {
		object-position: center center;
	}

	.hero--mobile-bg-right .hero__video {
		object-position: right center;
	}

	.hero--mobile-bg-left .hero__youtube {
		left: 0;
		transform: translate(0, -50%);
	}

	.hero--mobile-bg-center .hero__youtube {
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.hero--mobile-bg-right .hero__youtube {
		left: 100%;
		transform: translate(-100%, -50%);
	}

	.hero__title {
		text-align: center;
	}
}
