.gv-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.gv-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--gv-hero-overlay, rgba(255, 255, 255, 0.6));
    height: 100vh;
    display: flex;
}

.gv-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: var(--gv-space-3);
	padding-top: var(--gv-space-4);
	padding-bottom: var(--gv-space-4);
}

.gv-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gv-color-accent);
	margin-bottom: var(--gv-space-1);
}

.gv-hero__subtitle {
	max-width: 100%;
	font-family: var(--gv-font-body);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.6;
	color: var(--gv-color-text-muted);
	margin: 0 0 var(--gv-space-2);
}

.gv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gv-space-1);
	margin-bottom: var(--gv-space-2);
}

.gv-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gv-space-1);
}

.gv-hero__visual {
	display: none;
}

@media (min-width: 900px) {
	.gv-hero__inner {
		grid-template-columns: 70% 30%;
		align-items: center;
	}

	.gv-hero__visual {
		display: block;
		min-height: 320px;
	}
}
