/* Lazy Block: stats. Vars from base style.css. */

.sg-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin: 28px 0;
}

.sg-stat {
	border: 1px solid var(--hair);
	border-radius: 12px;
	padding: 18px;
	background: #fff;
}

.sg-stat__value {
	display: block;
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 800;
	line-height: 1.1;
	color: var(--ink-900);
}

.sg-stat__value.is-orange {
	color: var(--accent-bright);
}

.sg-stat__label {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: var(--body);
	line-height: 1.4;
}
