/* ==========================================================================
   AKUMED — archive-lekarz
   Hero stats row + list header (eyebrow / h2 / "Wyświetlanie N specjalistów").
   Card grid itself uses the shared `.lekarze-grid` from components.css
   (1 col → 2 col @768 → 3 col @920 → 4 col @1200).
   ========================================================================== */

/* ---------- Hero stats (lives inside .hero__card, painted only on /lekarze/
 * but the markup is part of the generic hero.php — if other heroes later add
 * a hero_stats repeater the styling just works) ---------- */
.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl, 32px);
	margin: var(--space-lg, 24px) 0 0;
	padding: 0;
}
.hero__stat {
	margin: 0;
}
.hero__stat-value {
	font-family: var(--font-base);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--color-brand);
	margin: 0;
}
.hero__stat-label {
	margin: 4px 0 0;
	font-size: var(--fs-xs, 13px);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-text-muted, #6b7280);
}

/* ---------- List header (above the grid) ---------- */
.lekarze-archive {
	padding-bottom: 40px;
}
@media (min-width: 768px) {
	.lekarze-archive {
		padding-bottom: 60px;
	}
}
@media (min-width: 1024px) {
	.lekarze-archive {
		padding-bottom: 80px;
	}
}

.lekarze-archive__header {
	margin-bottom: var(--space-xl, 32px);
}
.lekarze-archive__heading {
	font-family: var(--font-base);
	font-size: var(--fs-h2, 32px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	margin: 0 0 8px;
}
.lekarze-archive__count {
	margin: 0;
	color: var(--color-text-muted, #6b7280);
	font-size: 15px;
}
