/* ── prozess.css — 3 Phasen, kompakte Nummern-Kreise ─────────────────────── */

.prozess h2 {
	font-size: var(--fs-h2-fluid);
	max-width: 30rem;
}

.prozess__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.prozess__phase {
	min-width: 0;
	border-top: 0.1875rem solid var(--c-accent);
	padding-top: 1.25rem;
}

.prozess__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--c-primary);
	color: var(--c-white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: var(--fs-sm);
	margin-bottom: 1rem;
}

.prozess__phase h3 {
	font-size: var(--fs-h3);
}

.prozess__phase p {
	color: var(--c-text-muted);
}

@media (max-width: 48rem) {
	.prozess__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
