.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 780px;
	overflow: hidden;
	isolation: isolate;
}

.hero--height-small {
	min-height: 340px;
}

.hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__background picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__background-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: transparent linear-gradient(251deg, #00000000 0%, #00000026 39%, #1a3b6b 100%) 0 0 no-repeat padding-box;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero__content {
	max-width: 640px;
}

.hero__title {
	margin: 0 0 1.25rem;
	color: var(--color-white);
	font-size: clamp(2.25rem, 4.2vw, 3.75rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hero__text {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(1rem, 1.35vw, 1.25rem);
	font-weight: 400;
	line-height: 1.5;
	max-width: 34rem;
}

.hero__actions {
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.hero--align-left .hero__container {
	display: flex;
	justify-content: flex-start;
}

.hero--align-center .hero__container {
	display: flex;
	justify-content: center;
}

.hero--align-center .hero__content {
	text-align: center;
}

.hero--align-center .hero__text {
	margin-inline: auto;
}

.hero--align-center .hero__actions {
	display: flex;
	justify-content: center;
}

.hero--align-right .hero__container {
	display: flex;
	justify-content: flex-end;
}

.hero--align-right .hero__content {
	text-align: right;
}

.hero--align-right .hero__text {
	margin-left: auto;
}

.hero--align-right .hero__actions {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.hero {
		min-height: 480px;
	}

	.hero--height-small {
		min-height: 280px;
	}

	.hero--align-center .hero__content,
	.hero--align-right .hero__content {
		text-align: left;
	}

	.hero--align-center .hero__text,
	.hero--align-right .hero__text {
		margin-inline: 0;
	}

	.hero--align-center .hero__actions,
	.hero--align-right .hero__actions {
		justify-content: flex-start;
	}

	.hero--align-center .hero__container,
	.hero--align-right .hero__container {
		justify-content: flex-start;
	}
	.hero__overlay {
		background: #0000006e linear-gradient(251deg, #00000000 0%, #00000026 39%, #1a3b6b 100%) 0 0 no-repeat padding-box;
	}
}
