.hero-section {
	position: relative;
	display: grid;
	min-height: clamp(32rem, 51vw, 42rem);
	overflow: hidden;
	isolation: isolate;
	background: #214d79;
	color: #fff;
}

.hero-section__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-section__image {
	z-index: -3;
	object-fit: cover;
	object-position: center;
}

.hero-section__inner {
	display: flex;
	align-items: center;
	width: 100%;
	padding-block: clamp(5rem, 10vw, 8rem);
}

.hero-section__content {
	width: min(100%, 31rem);
	margin-left: clamp(0rem, 7vw, 7rem);
}

.hero-section__eyebrow {
	margin: 0 0 0.35rem;
	color: #F08B1E;
	font-family: var(--research-font-aleo);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.25;
	text-transform: uppercase;
}

.hero-section__title {
	margin: 0;
	color: inherit;
	font-family: var(--research-font-aleo);
	font-size: 55px;
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.hero-section__body {
	max-width: 400px;
	margin-top: 1rem;
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
}

.hero-section__body > :first-child {
	margin-top: 0;
}

.hero-section__body > :last-child {
	margin-bottom: 0;
}

.hero-section__body a {
	color: inherit;
}

@media (prefers-reduced-motion: reduce) {
	.hero-section,
	.hero-section * {
		scroll-behavior: auto;
	}
}
