.vo-home-hero,
.vo-home-hero * {
	box-sizing: border-box;
}

.vo-home-hero {
	position: relative;
	display: grid;
	align-items: center;
	overflow: hidden;
	width: calc(100% - clamp(24px, 5vw, 80px));
	max-width: 1600px;
	min-height: clamp(500px, 51vw, 700px);
	margin: clamp(24px, 4vw, 56px) auto clamp(76px, 9vw, 132px);
	border: 1px solid #dce7e0;
	border-radius: 12px 12px 56px 12px;
	background: #f7faf8;
	color: #174530;
	text-decoration: none;
	box-shadow: 0 28px 70px rgba(23, 69, 48, .14);
	isolation: isolate;
}

.vo-home-hero:hover,
.vo-home-hero:focus,
.vo-home-hero:visited {
	color: #174530;
	text-decoration: none;
}

.vo-home-hero:focus-visible {
	outline: 5px solid rgba(47, 117, 72, .28);
	outline-offset: 5px;
}

.vo-home-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	display: block;
}

.vo-home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 30%, rgba(255,255,255,.55) 48%, rgba(255,255,255,0) 67%);
	pointer-events: none;
}

.vo-home-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.vo-home-hero:hover .vo-home-hero__media img {
	transform: scale(1.018);
}

.vo-home-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(48%, 690px);
	padding: clamp(44px, 7vw, 105px);
}

.vo-home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 22px;
	padding: 7px 14px;
	border: 1px solid rgba(47, 117, 72, .22);
	border-radius: 999px;
	background: rgba(232, 241, 235, .9);
	font: 800 13px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: #2f7548;
}

.vo-home-hero__title {
	display: block;
	margin: 0;
	font: 850 clamp(52px, 6.6vw, 92px)/.88 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	letter-spacing: -.065em;
	color: #174530;
}

.vo-home-hero__lead {
	display: block;
	max-width: 570px;
	margin-top: 28px;
	font: 500 clamp(18px, 1.4vw, 22px)/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #405e50;
}

.vo-home-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 58px;
	margin-top: 34px;
	padding: 15px 22px;
	border-radius: 12px;
	background: #2f7548;
	font: 800 16px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #fff;
	box-shadow: 0 12px 28px rgba(31, 90, 60, .22);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.vo-home-hero__cta svg {
	width: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .2s ease;
}

.vo-home-hero:hover .vo-home-hero__cta {
	background: #174530;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(31, 90, 60, .28);
}

.vo-home-hero:hover .vo-home-hero__cta svg {
	transform: translateX(4px);
}

@media (max-width: 900px) {
	.vo-home-hero {
		display: flex;
		flex-direction: column;
		min-height: 0;
		border-radius: 10px 10px 38px 10px;
	}

	.vo-home-hero__media {
		position: relative;
		z-index: 0;
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.vo-home-hero__media::after {
		display: none;
	}

	.vo-home-hero__media img {
		object-position: 70% center;
	}

	.vo-home-hero__content {
		position: relative;
		z-index: 1;
		width: 100%;
		padding: 34px clamp(22px, 6vw, 48px) 42px;
		background: #fff;
	}

	.vo-home-hero__title br {
		display: none;
	}

	.vo-home-hero__title {
		font-size: clamp(42px, 10vw, 68px);
		line-height: .95;
	}

	.vo-home-hero__lead {
		max-width: 680px;
	}
}

@media (max-width: 560px) {
	.vo-home-hero {
		width: calc(100% - 20px);
		margin-top: 14px;
		margin-bottom: 72px;
		border-radius: 8px 8px 30px 8px;
	}

	.vo-home-hero__media {
		aspect-ratio: 4 / 3;
	}

	.vo-home-hero__media img {
		object-position: right center;
	}

	.vo-home-hero__eyebrow {
		margin-bottom: 18px;
		font-size: 11px;
		letter-spacing: .08em;
	}

	.vo-home-hero__title {
		font-size: clamp(40px, 13vw, 58px);
	}

	.vo-home-hero__lead {
		margin-top: 20px;
		font-size: 17px;
		line-height: 1.55;
	}

	.vo-home-hero__cta {
		width: 100%;
		margin-top: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vo-home-hero__media img,
	.vo-home-hero__cta,
	.vo-home-hero__cta svg {
		transition: none;
	}
}
