/* ABOUTME: Styles for the statistics highlight cards section. */
/* ABOUTME: Flex grid layout for number/label cards with responsive sizing. */
.statistics_grid {
	display: flex;
	gap: 1vw;
	flex-wrap: wrap;
	justify-content: stretch;
	margin: 0 auto;
}
.statistics_card {
	background: var(--color-regular-turquoise);
	padding: 1rem;
	border-radius: var(--rbr);
	text-align: center;
	flex: 2 2 10%;
	display: flex;
	flex-direction: column;
}
.statistics_big_text {
	font-family: "Inter Youth";
	font-size: var(--step-5);
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	margin-inline: 3rem;
}
.statistics_small_text {
	margin-inline: 1.5rem;
}
@media screen and (max-width: 600px) {
	.statistics_card {
		flex-direction: row;
		justify-content: space-between;
	}
	.statistics_small_text,
	.statistics_big_text {
		margin-inline: 0.5rem;
	}
	.statistics_small_text {
		text-align: right;
	}
}
