/* ============================================================
   STATS
   Split out of style.css — see functions.php for the enqueue.
   ============================================================ */

/* ============================================================
   1. STATS
   ============================================================ */

.stats {
	background: var(--chocolate);
	padding: 64px 165px;
}

.stats__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* 36px Figma gap + 16px of inner padding on each neighbour = 68px. */
	gap: 24px 68px;
	max-width: 1110px;
	margin-inline: auto;
}

.stats__item {
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 16px;
}

.stats__num {
	font-family: var(--font-display);
	font-size: 38px;
	line-height: 0.9;
	letter-spacing: -1px;
	font-feature-settings: "dlig" 1;
	text-transform: uppercase;
	color: var(--cream);
	white-space: nowrap;
}

.stats__label {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--cream);
	padding-top: 6px;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.stats {
		padding: 48px 20px;
	}

	.stats__inner {
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
		gap: 24px;
		max-width: none;
		margin-inline: 0;
	}

	.stats__num {
		font-size: 25px;
	}

	.stats__label {
		font-size: 18px;
		padding-top: 4px;
	}
}

