/* ---------------------------------------------------------------------------
 * Blok: Statistieken. Rij van vier grote paarse getallen met korte tekst
 * eronder, gecentreerd op de lichte achtergrond. Maten uit het ontwerp
 * (casepagina's, 1920): items 332px breed met 24px tussenruimte, getal
 * 70px vet paars, tekst 16/26 met 24px afstand tot het getal.
 * ------------------------------------------------------------------------- */

.blok-statistieken {
	padding-block: 60px;
}

.blok-statistieken__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.blok-statistieken__item {
	text-align: center;
}

.blok-statistieken__getal {
	margin: 0;
	font-size: 70px;
	line-height: normal;
	font-weight: 700;
	color: var(--c-paars);
}

/* Tekstbreedte binnen het item zoals in het ontwerp (332 - 2x15). */
.blok-statistieken__tekst {
	max-width: 302px;
	margin: 24px auto 0;
}

.blok-statistieken__tekst p {
	margin: 0 0 26px;
}

.blok-statistieken__tekst p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
 * Tablet: twee naast elkaar, iets meer lucht tussen de rijen.
 * ------------------------------------------------------------------------ */

@media (max-width: 1023px) {
	.blok-statistieken__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 24px;
	}
}

/* --------------------------------------------------------------------------
 * Mobiel (geen ontwerp beschikbaar): 2x2 raster in de schaal van de
 * andere blokken, getal kleiner maar nog steeds nadrukkelijk.
 * ------------------------------------------------------------------------ */

@media (max-width: 767px) {
	.blok-statistieken {
		padding-block: 40px;
	}

	.blok-statistieken__items {
		gap: 30px 16px;
	}

	.blok-statistieken__getal {
		font-size: 44px;
	}

	.blok-statistieken__tekst {
		margin-top: 12px;
		font-size: var(--fs-s);
		line-height: 24px;
	}
}
