/*
 * Ergänzungen für die Landingpages (Flughafentransfer, Detailseiten,
 * Uber-Alternative, Fahrtservice; live seit 24.09.2026).
 * Baut ausschließlich auf seo.css auf: dieselben Farben, Schriften und Abstände.
 * Nur Bausteine, die es auf /regensburg nicht gibt: Brotkrumen, Faktenbox,
 * Ablauf-Liste, Zielliste, weiterführende Links und FAQ-Antworten ohne Microdata.
 */

/* Lange Wörter wie „Flughafentransfer“ dürfen am Desktop nicht aus der Spalte laufen. */
.landing .hero-title { max-width: 20ch; font-size: clamp(2.1rem, 7vw, 3.2rem); hyphens: auto; overflow-wrap: break-word; }
.landing .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.landing .hero-actions .text-button { margin-top: 10px; }
.landing .hero-actions .text-button .icon { width: 18px; height: 18px; flex-basis: 18px; }

.breadcrumbs { padding: 16px 28px 0; font-size: .75rem; color: var(--cp-text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px 8px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--cp-border); }
.breadcrumbs a { display: inline-flex; align-items: center; min-height: 32px; color: var(--cp-text-muted); }
.breadcrumbs [aria-current="page"] { display: inline-flex; align-items: center; min-height: 32px; color: var(--cp-text); font-weight: 650; }

.facts { padding-block: 36px; border-top: 1px solid var(--cp-border); background: var(--cp-surface-soft); }
.fact-list { display: grid; margin: 0; border-top: 1px solid var(--cp-border); }
.fact-list > div { display: grid; grid-template-columns: minmax(110px, .6fr) minmax(0, 1.4fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--cp-border); }
.fact-list dt { font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; color: var(--cp-text-muted); padding-top: 2px; }
.fact-list dd { margin: 0; font-size: .9375rem; }
.fact-note { margin-top: 16px; font-size: .75rem; color: var(--cp-text-muted); }

.steps { padding-block: 36px; border-top: 1px solid var(--cp-border); }
.step-list { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step-list li { position: relative; padding: 18px 0 18px 42px; border-top: 1px solid var(--cp-border); font-size: .9375rem; color: var(--cp-text-muted); counter-increment: step; }
.step-list li:first-child { border-top: 0; padding-top: 0; }
.step-list li::before { content: "0" counter(step); position: absolute; left: 0; top: 20px; font-size: .75rem; font-weight: 750; color: var(--cp-text-muted); }
.step-list li:first-child::before { top: 2px; }
.step-list strong { display: block; margin-bottom: 4px; }

.destination-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--cp-border); }
.destination-list li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 16px; padding: 14px 0; border-bottom: 1px solid var(--cp-border); font-size: .9375rem; }
.destination-list .destination-meta { font-size: .8125rem; color: var(--cp-text-muted); }
.destination-list a { font-weight: 650; }

/* Preistabelle auf der Übersichtsseite: Ziel links, Festpreis rechtsbündig. */
.price-table-wrap { max-width: 720px; }
.price-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--cp-border); font-size: .9375rem; }
.price-table caption { caption-side: top; padding-bottom: 12px; text-align: left; font-size: .8125rem; color: var(--cp-text-muted); }
.price-table thead th { padding: 10px 0; border-bottom: 1px solid var(--cp-border); font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; color: var(--cp-text-muted); text-align: left; }
.price-table thead th:last-child, .price-table td { text-align: right; }
.price-table tbody th, .price-table td { padding: 14px 0; border-bottom: 1px solid var(--cp-border); vertical-align: top; }
.price-table tbody th { font-weight: 400; text-align: left; padding-right: 16px; }
.price-table tbody th a { font-weight: 650; }
.price-table .destination-meta { display: block; margin-top: 2px; font-size: .8125rem; color: var(--cp-text-muted); }
.price-table td { font-weight: 750; white-space: nowrap; font-variant-numeric: tabular-nums; }

.related { padding-block: 36px; border-top: 1px solid var(--cp-border); }
.related-links { display: grid; gap: 4px; list-style: none; margin: 0; padding: 0; }
.related-links a { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-size: .875rem; font-weight: 650; }

.faq-answer { padding: 0 16px 20px; font-size: .875rem; color: var(--cp-text-muted); }

@media (min-width: 700px) {
  .breadcrumbs { padding-inline: 48px; }
  .facts, .steps, .related { padding-block: 44px; }
}
@media (min-width: 960px) {
  .breadcrumbs { padding: 20px 64px 0; }
  .landing .hero-title { font-size: clamp(2.8rem, 4vw, 3.6rem); max-width: 14ch; }
  .landing .hero-actions { grid-column: 2; grid-row: 3; }
  .facts, .steps, .related { padding-block: 64px; }
  .facts .container, .steps .container { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: 12px 64px; align-items: start; }
  .facts h2, .steps h2 { grid-row: 1 / span 3; }
  .fact-list, .step-list { max-width: 720px; }
}
@media (max-width: 360px) {
  .breadcrumbs { padding-inline: 20px; }
  .fact-list > div { grid-template-columns: 1fr; gap: 4px; }
}
