/* ==========================================================
   Fahrradshop24 – Servicebereichs-Seiten
   ----------------------------------------------------------
   Gehört zu den drei Vorlagen

     page-templates/faq.php
     page-templates/kontakt.php
     page-templates/ladengeschaeft.php

   und wird ausschließlich auf Seiten mit einer dieser Vorlagen
   geladen (fs24_is_service_page() beim Enqueue in
   inc/service-pages.php).

   TOKENS: Nutzt die Design-Tokens aus frontend.css (:root) – jeweils
   MIT Fallback-Wert, weil frontend.css hier inline/optimiert
   ausgeliefert wird und einzelne Blöcke im Browser fehlen können
   (siehe Kopf von versand-info.css). Aus demselben Grund bringen die
   Seiten ihre Buttons selbst mit, statt sich auf die globalen
   ".btn/.btn-primary" zu verlassen.

   SCOPE: Alles unter ".fs24-svc" gescoped, damit keine bestehende
   Regel getroffen wird. Die Inhaltsbreite kommt aus der global
   genutzten ".container"-Klasse – dieselbe Flucht wie Shop-,
   Kategorie- und Rechtsseiten.

   TEXTBREITE: Wie auf den Rechtsseiten begrenzt eine eigene
   Lesebreite den Fließtext (--fs24-svc-measure). ".container" ist mit
   1540px auf Rasterinhalte ausgelegt; Fließtext wäre darin
   unlesbar breit. Kartenraster und der Hero dürfen die volle
   Containerbreite nutzen und heben die Begrenzung gezielt wieder auf.

   ACCORDION: Die FAQ verwendet dieselben Klassen wie das bereits
   bestehende Accordion der Kategorieseiten (.fs24-faq / __item / __q
   / __a, siehe template-parts/shop-editorial.php). Dessen CSS steht
   in shop.css, die auf einer Seitenvorlage nicht geladen wird – die
   Regeln stehen deshalb hier noch einmal, absichtlich mit denselben
   Werten. Kein zweites Accordion-System, nur dieselbe Optik an einem
   Ort, an dem shop.css nicht hinreicht.
   ========================================================== */

.fs24-svc {
  --fs24-svc-measure: 900px;

  padding: 30px 0 92px;
  background: #fff;
  color: var(--ink, #111315);
}

.fs24-svc *,
.fs24-svc *::before,
.fs24-svc *::after {
  box-sizing: border-box;
}

/* Der Lesebereich teilt sich eine Spalte – Breadcrumb, Kopf und Text
   beginnen an derselben Kante. Raster und Hero heben das unten
   gezielt wieder auf. */
.fs24-svc__inner > * {
  max-width: var(--fs24-svc-measure);
}

/* ==========================================================
   Breadcrumb – gleiche Klassen und Optik wie auf Produkt-,
   Kategorie- und Rechtsseiten (.fs24-breadcrumb in product.css /
   shop.css / legal.css), damit der Seitenkontext überall gleich
   aussieht.
   ========================================================== */

.fs24-svc .fs24-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 26px;
  font-size: .82rem;
  color: var(--muted, #656b70);
}

.fs24-svc .fs24-breadcrumb a {
  color: var(--muted, #656b70);
  text-decoration: none;
}

.fs24-svc .fs24-breadcrumb a:hover {
  color: var(--ink, #111315);
  text-decoration: underline;
}

.fs24-svc .fs24-breadcrumb__sep {
  color: var(--soft-2, #dfe2e4);
}

.fs24-svc .fs24-breadcrumb__current {
  color: var(--ink, #111315);
}

/* ==========================================================
   Kopfbereich
   ========================================================== */

.fs24-svc__head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line, rgba(17, 19, 21, .12));
}

.fs24-svc__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 999px;
  background: var(--metal-0, #f7f7f6);
  color: var(--ink, #111315);
  font-size: .82rem;
  font-weight: 640;
  letter-spacing: .01em;
}

/* Das Symbol trägt den orangen Akzent, der Text bleibt ruhig –
   dieselbe Aufteilung wie im Kicker der Versandseite. */
.fs24-svc__kicker .fs24-svc__icon {
  width: 19px;
  height: 19px;
  stroke: var(--accent, #d24614);
}

/* Farbe ausdrücklich setzen: Blocksy färbt h1–h6 global über eine
   eigene Regel ein (dunkles Marineblau), die die Vererbung vom
   Container schlägt. Dieselbe Notwendigkeit wie in shop.css,
   versand-info.css und legal.css. */
.fs24-svc__title {
  margin: 0 0 14px;
  color: var(--ink, #111315);
  font-size: clamp(1.9rem, 1.25rem + 2vw, 2.75rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.fs24-svc__lead {
  max-width: 74ch;
  margin: 0;
  color: #3d4348;
  font-size: 1rem;
  line-height: 1.62;
}

/* Hero des Ladengeschäfts: Text links, Bild rechts – aber nur, wenn
   ein Bild vorhanden ist. Ohne Bild bleibt es beim normalen flachen
   Kopfbereich, ohne leere Spalte. */
.fs24-svc__head--hero.has-image {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
}

.fs24-svc__head--hero .fs24-svc__head-body > * {
  max-width: var(--fs24-svc-measure);
}

.fs24-svc__hero-media {
  border-radius: var(--radius, 24px);
  overflow: hidden;
  background: var(--metal-1, #f1f2f2);
}

.fs24-svc__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .fs24-svc__head--hero.has-image {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}

/* ==========================================================
   Abschnitte
   ========================================================== */

.fs24-svc__section {
  margin-top: clamp(36px, 3.6vw, 54px);
  scroll-margin-top: 110px;   /* Sprungmarken unter dem Sticky-Header */
}

.fs24-svc__heading {
  margin: 0 0 14px;
  color: var(--ink, #111315);
  font-size: clamp(1.2rem, 1.05rem + .5vw, 1.5rem);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.fs24-svc__section-lead {
  max-width: 74ch;
  margin: 0 0 20px;
  color: var(--muted, #656b70);
  font-size: .94rem;
  line-height: 1.62;
}

/* Fließtext – gleicher Rhythmus wie die Kategorie- und Markentexte
   (.fs24-ed__text in shop.css: .93rem bei 1.62). */
.fs24-svc__prose {
  max-width: 74ch;
  color: #3d4348;
  font-size: .95rem;
  line-height: 1.65;
}

.fs24-svc__prose p {
  margin: 0 0 .85em;
}

.fs24-svc__prose p:last-child {
  margin-bottom: 0;
}

.fs24-svc a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-color: var(--soft-2, #dfe2e4);
  transition: text-decoration-color .16s ease, color .16s ease;
}

.fs24-svc a:hover {
  color: var(--accent-dark, #b93800);
  text-decoration-color: currentColor;
}

/* ==========================================================
   Sprungmarken der FAQ
   ========================================================== */

.fs24-svc__jump {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.fs24-svc__jump-link {
  padding: 8px 15px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: var(--fs24-btn-radius, 10px);
  background: #fff;
  color: var(--ink, #111315);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease;
}

.fs24-svc__jump-link:hover {
  background: var(--metal-1, #f1f2f2);
  border-color: var(--soft-2, #dfe2e4);
  color: var(--ink, #111315);
}

/* ==========================================================
   FAQ-Accordion
   ----------------------------------------------------------
   Werte bewusst identisch zu ".fs24-faq" in shop.css – siehe
   Dateikopf. Natives <details>/<summary>, kein JavaScript.
   ========================================================== */

.fs24-svc .fs24-faq {
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* Volle Breite des Lesebereichs: Die Trennlinien der Fragen fluchten
     dadurch mit den Abschnittsüberschriften darüber. Die Antworten
     bleiben darin auf Lesebreite begrenzt (siehe .fs24-faq__a). */
  max-width: none;
  border-top: 1px solid var(--line, rgba(17, 19, 21, .12));
}

.fs24-svc .fs24-faq__item {
  border-bottom: 1px solid var(--line, rgba(17, 19, 21, .12));
}

.fs24-svc .fs24-faq__q {
  position: relative;
  padding: 14px 34px 14px 0;
  cursor: pointer;
  list-style: none;
}

.fs24-svc .fs24-faq__q::-webkit-details-marker {
  display: none;
}

/* Die Frage ist eine echte Überschrift (H3) – sie trägt die
   Gliederung der Seite. Damit sie im <summary> nicht als eigener
   Block umbricht, wird sie hier auf die Textmaße des bisherigen
   Accordions zurückgeführt. */
.fs24-svc .fs24-faq__q-text {
  display: inline;
  margin: 0;
  color: var(--ink, #111315);
  font-size: .95rem;
  font-weight: 620;
  line-height: 1.45;
  letter-spacing: 0;
}

.fs24-svc .fs24-faq__q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--muted, #656b70);
  border-bottom: 2px solid var(--muted, #656b70);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.fs24-svc .fs24-faq__item[open] .fs24-faq__q::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.fs24-svc .fs24-faq__q:hover .fs24-faq__q-text {
  color: var(--accent-dark, #b93800);
}

/* Sichtbarer Fokus für Tastaturbedienung – <summary> bekommt sonst
   je nach Browser gar keinen. */
.fs24-svc .fs24-faq__q:focus-visible {
  outline: 2px solid var(--accent, #d24614);
  outline-offset: 3px;
  border-radius: 4px;
}

.fs24-svc .fs24-faq__a {
  padding: 0 0 16px;
  max-width: 70ch;
  color: #3d4348;
  font-size: .92rem;
  line-height: 1.65;
}

.fs24-svc .fs24-faq__a p {
  margin: 0 0 .7em;
}

.fs24-svc .fs24-faq__a p:last-child {
  margin-bottom: 0;
}

/* ==========================================================
   Kontaktwege (Kontaktseite)
   ========================================================== */

.fs24-svc__channels {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.fs24-svc__channel {
  display: flex;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 16px;
  background: var(--metal-0, #f7f7f6);
}

.fs24-svc__channel .fs24-svc__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  stroke: var(--accent, #d24614);
}

.fs24-svc__channel-title {
  margin: 0 0 6px;
  color: var(--muted, #656b70);
  font-size: .78rem;
  font-weight: 660;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fs24-svc__channel-main {
  margin: 0 0 6px;
  color: var(--ink, #111315);
  font-size: 1.05rem;
  font-weight: 680;
  line-height: 1.3;
}

.fs24-svc__channel-main--address {
  font-size: .95rem;
  font-weight: 560;
  line-height: 1.5;
}

.fs24-svc__channel-main a {
  text-decoration: none;
}

.fs24-svc__channel-main a:hover {
  text-decoration: underline;
}

.fs24-svc__channel-note {
  margin: 0;
  color: var(--muted, #656b70);
  font-size: .85rem;
  line-height: 1.5;
}

/* ==========================================================
   Hinweiszeilen
   ========================================================== */

.fs24-svc__note {
  margin: 18px 0 0;
  color: var(--muted, #656b70);
  font-size: .88rem;
  line-height: 1.6;
}

.fs24-svc__note--boxed {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 18px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 14px;
  background: #fff;
}

.fs24-svc__note--boxed .fs24-svc__icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  stroke: var(--accent, #d24614);
}

/* ==========================================================
   Öffnungszeiten
   ========================================================== */

.fs24-svc__hours {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 14px;
}

.fs24-svc__hours-title,
.fs24-svc__visit-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--muted, #656b70);
  font-size: .78rem;
  font-weight: 660;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fs24-svc__hours-title .fs24-svc__icon,
.fs24-svc__visit-title .fs24-svc__icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent, #d24614);
}

.fs24-svc__hours-list {
  margin: 0;
}

.fs24-svc__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line, rgba(17, 19, 21, .12));
  font-size: .92rem;
}

.fs24-svc__hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fs24-svc__hours-row dt {
  color: #3d4348;
}

.fs24-svc__hours-row dd {
  margin: 0;
  color: var(--ink, #111315);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================
   Kartenraster (Anliegen, Leistungen)
   ========================================================== */

.fs24-svc__grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 14px;
}

.fs24-svc__card {
  display: flex;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 16px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.fs24-svc__card:hover {
  border-color: var(--soft-2, #dfe2e4);
  box-shadow: var(--shadow-soft, 0 14px 40px rgba(10, 12, 13, .10));
}

.fs24-svc__card .fs24-svc__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 13px;
  stroke: var(--accent, #d24614);
}

.fs24-svc__card-title {
  margin: 0 0 7px;
  color: var(--ink, #111315);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.3;
}

.fs24-svc__card-text {
  margin: 0;
  color: #3d4348;
  font-size: .9rem;
  line-height: 1.6;
}

.fs24-svc__card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--accent-dark, #b93800);
  font-size: .88rem;
  font-weight: 640;
  text-decoration: none;
}

.fs24-svc__card-link:hover {
  color: var(--accent-dark, #b93800);
  text-decoration: underline;
}

.fs24-svc__arrow {
  transition: transform .16s ease;
}

.fs24-svc__card-link:hover .fs24-svc__arrow {
  transform: translateX(3px);
}

/* ==========================================================
   Anfahrtsbox (Ladengeschäft)
   ========================================================== */

.fs24-svc__visit {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 0;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 18px;
  overflow: hidden;
  background: var(--metal-0, #f7f7f6);
}

.fs24-svc__visit-block {
  padding: 22px;
  border-bottom: 1px solid var(--line, rgba(17, 19, 21, .12));
}

.fs24-svc__visit-block:last-child {
  border-bottom: 0;
}

/* Unterhalb von 760px steht jeder Block für sich, untereinander.
   Adresse, Telefonnummer und Öffnungszeiten nebeneinander zu quetschen
   bringt auf einem Telefon nichts – die Zeilen brächen ohnehin um. Die
   Spaltenteilung greift deshalb erst ab 760px; auto-fit allein reicht
   dafür nicht, weil das Raster sonst je nach Schriftgröße doch noch
   zwei sehr schmale Spalten bildet. */
@media (max-width: 759px) {
  .fs24-svc__visit {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 760px) {
  .fs24-svc__visit-block {
    border-bottom: 0;
    border-right: 1px solid var(--line, rgba(17, 19, 21, .12));
  }

  .fs24-svc__visit-block:last-child {
    border-right: 0;
  }
}

.fs24-svc__address {
  margin: 0 0 10px;
  color: var(--ink, #111315);
  font-size: .95rem;
  font-style: normal;
  line-height: 1.55;
}

.fs24-svc__address a {
  text-decoration: none;
  font-weight: 620;
}

.fs24-svc__address a:hover {
  text-decoration: underline;
}

.fs24-svc__visit-note {
  margin: 0;
  color: var(--muted, #656b70);
  font-size: .86rem;
  line-height: 1.55;
}

.fs24-svc__visit-link {
  margin: 0;
  font-size: .88rem;
  font-weight: 640;
}

.fs24-svc__visit-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark, #b93800);
  text-decoration: none;
}

.fs24-svc__visit-link a:hover {
  text-decoration: underline;
}

/* ==========================================================
   Abschluss und Buttons
   ----------------------------------------------------------
   Buttons bringt die Seite selbst mit, statt sich auf die globalen
   ".btn"-Klassen zu verlassen – Begründung siehe Dateikopf. Optik
   und Maße folgen den Buttons der Versand- und Produktseiten.
   ========================================================== */

.fs24-svc__closing {
  margin-top: clamp(40px, 4vw, 60px);
  padding: 26px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 18px;
  background: var(--metal-0, #f7f7f6);
}

.fs24-svc__closing .fs24-svc__heading {
  margin-bottom: 8px;
}

.fs24-svc__closing-text {
  margin: 0 0 18px;
  color: #3d4348;
  font-size: .95rem;
  line-height: 1.6;
}

.fs24-svc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.fs24-svc__head .fs24-svc__actions {
  margin-top: 22px;
}

.fs24-svc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: var(--fs24-btn-radius, 10px);
  background: #fff;
  color: var(--ink, #111315);
  font-size: .92rem;
  font-weight: 640;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.fs24-svc__btn:hover {
  background: var(--metal-1, #f1f2f2);
  border-color: var(--soft-2, #dfe2e4);
  color: var(--ink, #111315);
}

.fs24-svc__btn--primary {
  background: var(--accent, #d24614);
  border-color: var(--accent, #d24614);
  color: #fff;
}

.fs24-svc__btn--primary:hover {
  background: var(--accent-dark, #b93800);
  border-color: var(--accent-dark, #b93800);
}

/* Schriftfarbe des orangen Knopfes – mit Elementauswahl, sonst
   wirkungslos.

   Dieselbe Spezifitätsfalle wie auf der Leasing-Seite: ".fs24-svc a"
   (0,1,1) und ".fs24-svc a:hover" (0,2,1) weiter oben in dieser Datei
   schlagen ".fs24-svc__btn--primary" (0,1,0) bzw. dessen Hover
   (0,2,0). Gemessen stand deshalb auf FAQ, Kontakt und Ladengeschäft
   dunkles #111315 auf Orange, im Hover rgb(217,71,0) auf rgb(217,71,0)
   – also gar nichts Lesbares.

   Zielzustand (Auftrag 2026-09-02): in JEDEM Zustand weiße Schrift,
   nur der Hintergrund wird beim Hover dunkler (--accent-dark). Kein
   Wechsel zu Blau – das bleibt den Text- und Pfeillinks vorbehalten,
   deren Regeln oben unverändert sind.

   REIHENFOLGE BEACHTEN: Die Hover-Variante hat dieselbe Spezifität wie
   ".fs24-svc a:hover" und gewinnt nur durch ihre spätere Position.

   ":focus-visible" statt ":focus", damit ein Fingertipp keinen
   dauerhaften Zustand hinterlässt. */
.fs24-svc a.fs24-svc__btn--primary,
.fs24-svc a.fs24-svc__btn--primary:hover,
.fs24-svc a.fs24-svc__btn--primary:focus-visible {
  color: #fff;
}

.fs24-svc__btn:focus-visible,
.fs24-svc__jump-link:focus-visible,
.fs24-svc__card-link:focus-visible {
  outline: 2px solid var(--accent, #d24614);
  outline-offset: 3px;
}

/* ==========================================================
   Kontaktformular
   ----------------------------------------------------------
   Das Markup stammt unverändert aus Snippet #136; sein eigener
   <style>-Block (Verläufe, #ff6600, große Schatten) wird beim
   Einsetzen entfernt – siehe fs24_service_contact_form_html().
   Die Klassen des Snippets werden hier neu und ausschließlich
   innerhalb von ".fs24-svc__form-wrap" gestaltet, damit sie
   nirgends sonst im Shop wirken.
   ========================================================== */

.fs24-svc__form-wrap {
  max-width: 760px;
}

.fs24-svc__form-wrap .fs24-wrapper {
  max-width: none;
  margin: 0;
  font-family: inherit;
}

/* Kategorie-Tabs des Snippets: dieselbe Pillenform wie die
   Sprungmarken der FAQ, damit die Seite eine Sprache spricht. */
.fs24-svc__form-wrap .fs24-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.fs24-svc__form-wrap .fs24-tab {
  flex: 0 1 auto;
  padding: 9px 16px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: var(--fs24-btn-radius, 10px);
  background: #fff;
  color: var(--ink, #111315);
  font-size: .87rem;
  font-weight: 620;
  text-align: center;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.fs24-svc__form-wrap .fs24-tab:hover {
  background: var(--metal-1, #f1f2f2);
}

.fs24-svc__form-wrap .fs24-tab.active {
  background: var(--ink, #111315);
  border-color: var(--ink, #111315);
  color: #fff;
}

.fs24-svc__form-wrap .fs24-form {
  padding: 24px;
  border: 1px solid var(--line, rgba(17, 19, 21, .12));
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.fs24-svc__form-wrap .fs24-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink, #111315);
  font-size: .87rem;
  font-weight: 640;
}

.fs24-svc__form-wrap .fs24-form input,
.fs24-svc__form-wrap .fs24-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--soft-2, #dfe2e4);
  border-radius: 12px;
  background: #fff;
  color: var(--ink, #111315);
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.5;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.fs24-svc__form-wrap .fs24-form input:focus,
.fs24-svc__form-wrap .fs24-form textarea:focus {
  outline: none;
  border-color: var(--accent, #d24614);
  box-shadow: 0 0 0 3px rgba(210, 70, 20, .16);
}

.fs24-svc__form-wrap .fs24-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Der Datenschutzhinweis wird vor dem Absendebutton eingefügt. */
.fs24-svc__form-privacy {
  margin: 0 0 16px;
  color: var(--muted, #656b70);
  font-size: .83rem;
  line-height: 1.55;
}

.fs24-svc__form-wrap .fs24-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--accent, #d24614);
  border-radius: var(--fs24-btn-radius, 10px);
  background: var(--accent, #d24614);
  color: #fff;
  font-family: inherit;
  font-size: .93rem;
  font-weight: 660;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease;
}

.fs24-svc__form-wrap .fs24-submit:hover {
  background: var(--accent-dark, #b93800);
  border-color: var(--accent-dark, #b93800);
}

.fs24-svc__form-wrap .fs24-submit:focus-visible {
  outline: 2px solid var(--ink, #111315);
  outline-offset: 3px;
}

/* Das reCAPTCHA-Widget hat eine feste Breite von 304px und würde auf
   sehr schmalen Geräten sonst aus der Karte herauslaufen. */
.fs24-svc__form-wrap .g-recaptcha {
  margin-bottom: 6px;
  max-width: 100%;
  overflow-x: auto;
}

/* ==========================================================
   Mobil
   ----------------------------------------------------------
   Die Raster stellen sich über auto-fit von selbst um; hier bleiben
   nur die Abstände und die Größen, die sonst zu wuchtig wirken.
   ========================================================== */

@media (max-width: 767px) {
  .fs24-svc {
    padding-bottom: 64px;
  }

  .fs24-svc__closing,
  .fs24-svc__form-wrap .fs24-form {
    padding: 20px;
  }

  .fs24-svc__visit-block,
  .fs24-svc__channel,
  .fs24-svc__card {
    padding: 18px;
  }

  /* Auf schmalen Geräten sollen die Schaltflächen die volle Breite
     nutzen, statt in einer Zeile zu zerbröseln. */
  .fs24-svc__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fs24-svc__hero-img {
    max-height: 240px;
  }
}

/* Reduzierte Bewegung respektieren. */
@media (prefers-reduced-motion: reduce) {
  .fs24-svc *,
  .fs24-svc *::before,
  .fs24-svc *::after {
    transition-duration: .01ms !important;
  }
}
