/**
 * Pricing hero section — Figma node 2330:719 / 2330:721.
 * Full-bleed dark-green band with centered white text.
 */

.gh-pricing-hero {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--gh-green-dark);
}

.gh-pricing-hero__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 144px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	text-align: center;
}

.gh-pricing-hero__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gh-pricing-hero__title {
	margin: 0;
	max-width: 1120px;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 40px;
	line-height: 48px;
	color: var(--gh-white);
}

.gh-pricing-hero__subtitle {
	margin: 0;
	max-width: 928px;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-white);
}

.gh-pricing-hero__tagline {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
	line-height: 24px;
	color: #e6e6e6;
}
@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-pricing-hero__inner{
		padding: 120px 40px;
	}
}
@media (max-width: 1023px) {
	.gh-pricing-hero__inner {
		padding: 96px 24px;
	}

	.gh-pricing-hero__title {
		font-size: 32px;
		line-height: 40px;
	}
}

/* Mobile — Figma node 3247:13186: left-aligned, 16px gutters, 80px top/bottom. */
@media (max-width: 767px) {
	.gh-pricing-hero__inner {
		padding: 80px 16px;
		align-items: flex-start;
		text-align: left;
	}
}
