/* =========================================================
   City landing pages (/standorte/<slug>.html) — components
   not used on the main site. Loaded in addition to style.css.
   Generated pages: scripts/build-cities.py. DSGVO: no externals.
   ========================================================= */

/* Intro prose block */
.prose {
  max-width: 72ch;
  margin-inline: auto;
}
.prose p {
  margin: 0 0 1em;
  color: var(--c-ink-soft);
}
.prose p:last-child { margin-bottom: 0; }

/* Einzugsgebiet chips (.chip-list) live in style.css — shared with index.html */

/* "Sortiment auf der Startseite" note below the product grid */
.products-more {
  margin-top: var(--gap);
  text-align: center;
}

/* Hub (/standorte/) — clickable city cards */
.city-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.city-card h3 { margin-top: 0; }
.city-card p { color: var(--c-ink-soft); flex: 1; }
.city-card .contact-link {
  margin-top: 12px;
  color: var(--c-accent-ink);
  font-weight: 600;
}
.city-card:hover,
.city-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* FAQ — native disclosure, no JS */
.faq {
  max-width: 72ch;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-bg-alt);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-accent);
  transition: transform var(--t-fast);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: -2px;
}
.faq .faq-answer {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--c-ink-soft);
}
