/* ============================================================
   STANDORT-LANDINGPAGES – fahrschule-<ort>.html
   Baut auf den Variablen aus style.css auf.
   ============================================================ */

.container--schmal { max-width: 860px; }

.section-titel {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--dark-mid);
  max-width: 65ch;
  margin-bottom: 2rem;
}

/* Brotkrumen */
.brotkrumen {
  background: var(--light);
  border-bottom: 1px solid var(--light-mid);
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.brotkrumen a { color: var(--dark-mid); }
.brotkrumen a:hover { color: var(--accent-dark); }
.brotkrumen span { color: var(--mid); margin: 0 0.4rem; }
.brotkrumen [aria-current] { color: var(--primary); font-weight: 600; margin: 0; }

/* Adresse / Karte */
.standort-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.standort-nummer {
  font-size: 4rem; font-weight: 900; color: var(--light-mid);
  line-height: 1; margin-bottom: 0.25rem;
}
.standort-name {
  font-size: 2rem; font-weight: 800; color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.badge-hauptstelle, .badge-neu {
  font-size: 0.75rem; color: var(--white);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-weight: 600;
}
.badge-hauptstelle { background: var(--accent); }
.badge-neu         { background: var(--orange); }

.standort-adresse {
  font-style: normal; font-size: 1.1rem; color: var(--dark-mid);
  margin-bottom: 1rem; line-height: 1.6;
}
.standort-kontakt {
  display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem;
}
.standort-kontakt a { color: var(--primary); font-weight: 500; }
.standort-kontakt a:hover { color: var(--accent); }

.standort-zeiten h3 {
  font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem;
}
.zeiten-tabelle { border-collapse: collapse; width: 100%; }
.zeiten-tabelle td { padding: 0.35rem 0; font-size: 0.95rem; }
.zeiten-tabelle td:first-child { color: var(--dark); min-width: 130px; }
.einlass-zeit {
  display: block; font-size: 0.8rem; color: var(--mid); font-weight: 500;
}

.buero-oeffnung-hinweis {
  font-size: 0.88rem; color: var(--accent-dark); font-weight: 600;
  background: #f0fff0; border: 1px solid var(--accent);
  border-radius: var(--radius-md); padding: 0.4rem 0.75rem;
  margin-top: 1.25rem; display: inline-block;
}

.maps-iframe:not([src]) { display: none; }
.maps-iframe {
  width: 100%; height: 380px; border: 0;
  border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-md);
}
.karte-extern-link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.9rem; font-weight: 600; color: var(--accent-dark);
}

/* Fließtext */
.standort-text p {
  font-size: 1.05rem; line-height: 1.75; color: var(--dark-mid);
  max-width: 68ch; margin-bottom: 1.25rem;
}

/* Klassenliste */
.klassen-liste { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.klassen-liste li {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; align-items: baseline;
  background: var(--white); border: 1px solid var(--light-mid);
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
}
.klassen-liste strong { font-weight: 800; color: var(--primary); }
.klassen-liste span   { color: var(--dark-mid); font-size: 0.95rem; }

/* Nachbarstandorte */
.nachbar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.nachbar-karte {
  display: flex; flex-direction: column; gap: 0.3rem;
  background: var(--white); border: 1px solid var(--light-mid);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.nachbar-karte:hover { border-color: var(--accent); transform: translateY(-3px); }
.nachbar-karte__ort {
  font-size: 1.15rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em;
}
.nachbar-karte__adresse { font-size: 0.9rem; color: var(--dark-mid); }
.nachbar-karte__zeit    { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; }

/* Abschluss */
.standort-cta .btn { margin-right: 0.5rem; margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .standort-layout { grid-template-columns: 1fr; gap: 2rem; }
  .maps-iframe { height: 280px; }
  .klassen-liste li { grid-template-columns: 4.5rem 1fr; gap: 0.75rem; }
}
