/* ============================================================
   Optivro ISPU — Stat Cards grid (`.tk-stats` / `.tk-stat`)
   Grid of white cards; each = navy top bar + big serif number + label.
   Scoped under `.oiw-statcards`. Grid 4→2→1 verbatim (900 / 560).
   ============================================================ */
.oiw-statcards {
	padding: 76px 40px;
}
.oiw-statcards .oiw-inner {
	max-width: 820px;
	margin: 0 auto;
	width: 100%;
}
.oiw-statcards .oiw-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.oiw-statcards .oiw-stat {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.oiw-statcards .oiw-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--navy);
}
.oiw-statcards .oiw-stat-num {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-size: 40px;
	line-height: 1;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
	letter-spacing: -1px;
}
.oiw-statcards .oiw-stat-lbl {
	font-size: 13px;
	line-height: 19px;
	color: #001d3a;
	opacity: 0.6;
}
@media (max-width: 900px) {
	.oiw-statcards {
		padding: 52px 24px;
	}
	.oiw-statcards .oiw-stats {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.oiw-statcards .oiw-stats {
		grid-template-columns: 1fr;
	}
}
