/* ── leistungen.css — 6 vollflächig verlinkte Zeilen statt Karten ────────── */

.leistungen {
	background: var(--c-surface);
}

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

.leistungen__list {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
	border-top: 0.0625rem solid var(--c-divider);
}

.leistung-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 0.5rem;
	border-bottom: 0.0625rem solid var(--c-divider);
	text-decoration: none;
	color: var(--c-text);
	transition: background 0.15s;
}

.leistung-row:hover {
	background: var(--c-bg);
	color: var(--c-text);
}

.leistung-row h3 {
	flex: 0 0 19rem;
	min-width: 0;
	font-size: var(--fs-h3);
	margin: 0;
	overflow-wrap: break-word;
}

.leistung-row p {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	color: var(--c-text-muted);
}

.leistung-row__arrow {
	flex-shrink: 0;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--c-accent-dark);
	transition: transform 0.15s;
}

.leistung-row:hover .leistung-row__arrow {
	transform: translateX(0.25rem);
}

@media (max-width: 40rem) {
	.leistung-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: 1.25rem 0.5rem;
	}

	.leistung-row h3 {
		flex-basis: auto;
	}

	.leistung-row__arrow {
		align-self: flex-end;
	}
}
