/**
 * hero.php — the sub-page hero pattern (eyebrow, H1, sub-line) used by
 * About, Contact, and both practice templates. Home's hero is bespoke
 * and styled separately in assets/css/pages/ (Phase 4) — see
 * docs/ARCHITECTURE.md §5.
 *
 * Ported from the identical `.page-hero` rules on every sub-page.
 */

.page-hero {
	max-width: var(--width-chrome);
	margin: 0 auto;
	padding: 28px 28px 0;
}

.page-hero .eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: 14px;
}

.page-hero h1 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
}

.page-hero .sub {
	margin-top: 16px;
	font-size: 15.5px;
	color: var(--ink-soft);
	line-height: 1.7;
	max-width: 66ch;
}
