/**
 * Home stats band styles — Figma node 2617:2460.
 */

.gh-stats {
	/* Full-bleed out of the .site-content (max 1120px) wrapper. */
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--gh-green-dark);
	display: flex;
	justify-content: center;
	padding: 80px 160px;
}

.gh-stats__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 80px;
	text-align: center;
}

.gh-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.gh-stats__value {
	margin: 0;
	font-family: 'schibsted_grotesk_medium', Arial, sans-serif;
	font-weight: normal;
	font-size: 40px;
	line-height: 48px;
	color: var(--gh-white);
}

.gh-stats__plus {
	color: #b646ee;
}

.gh-stats__label {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: var(--gh-white);
}

/* Laptop / small desktop (1024–1439px): tighter 80px sides + reduced vertical. */
@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-stats {
		padding: 64px 40px;
	}
}

@media (max-width: 1023px) {
	.gh-stats {
		padding: 56px 24px;
	}

	.gh-stats__row {
		gap: 40px 56px;
	}
}

@media (max-width: 768px) {
	/* Figma mobile node 3173:13068: stats stack into a single centered column
	   with 48px vertical rhythm; value drops to 28px/36px, label keeps 14px/24px;
	   80px top/bottom padding (py-80). */
	.gh-stats {
		padding: 80px 0px;
	}
	.gh-stats__value {
		font-size: 28px;
		line-height: 36px;
	}
}
@media (max-width: 600px) {
	.gh-stats__row {
		flex-direction: column;
		gap: 48px;
	}
}