/* EHNES Zahlen – Counter-Kacheln + Bild. CI: Roboto, Blau, eckig. */
.zc {
	--zc-accent: #0B55A0;
	--zc-ink: #1C2530;
	--zc-muted: #5B6770;
	--zc-line: #E5E9ED;
	font-family: "Roboto", system-ui, sans-serif;
	width: 100%;
	box-sizing: border-box;
}
.zc *, .zc *::before, .zc *::after { box-sizing: border-box; }

.zc__grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
.zc--has-media .zc__grid { grid-template-columns: 1.1fr 1fr; }

.zc__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.zc__tile {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
	text-align: center; background: #fff; border: 1px solid var(--zc-line); border-radius: 0;
	padding: 32px 20px; min-height: 150px;
}
.zc__num { font-size: clamp(2.1rem, 1.5rem + 2vw, 2.9rem); font-weight: 700; line-height: 1; color: var(--zc-accent); }
.zc__label { font-size: 15px; font-weight: 500; color: var(--zc-muted); }

.zc__media { overflow: hidden; }
.zc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 880px) {
	.zc--has-media .zc__grid { grid-template-columns: 1fr; }
	.zc__media { min-height: 220px; }
}
