.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px;
	text-align: center;
	border-radius: var(--radius-sm);
	background-color: var(--white-a15);
}

.stat-value {
	font-weight: 500;
	font-size: 90px;
	line-height: 1;
	color: var(--white);
}

.stat-label {
	font-size: 24px;
	line-height: 1;
	color: var(--text-muted);
}