/*
 * Komponente: Section-Head (.section-head) – Eyebrow + Überschrift, siehe
 * CLAUDE.md Abschnitt 11.4. Standard-Variante linksbündig, .center-Variante
 * für mittig ausgerichtete Section-Intros.
 */
.eyebrow {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--waldgruen);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.eyebrow::before {
	content: "";
	width: 18px;
	height: 2px;
	background: var(--herzenswald-gruen);
	display: inline-block;
}

.section-head {
	max-width: 640px;
	margin-bottom: 44px;
}

.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-head.center .eyebrow {
	justify-content: center;
}

.section-head.center .eyebrow::before {
	display: none;
}
