/* ==========================================================================
   Standorte (Satellitenseiten) für den Immobilien-Ankauf
   Übersicht mit Karte (/standorte/) und Detailseiten (/standorte/<ort>/)

   Nutzt die globalen Design-Tokens aus assets/global-design.css.
   Vorgaben: Buttons eckig, goldene Buttons mit Navy-Text, Fließtext ab 18px,
   keine dekorativen Striche vor Labels.
   ========================================================================== */

.ds-st {
    --st-max:      1240px;
    --st-gap:      clamp(1.5rem, 3vw, 2.75rem);
    --st-pad-y:    clamp(3rem, 6vw, 5.5rem);
    --st-radius:   14px;
    --st-header-h: 73px;   /* Höhe des fixierten Theme-Headers, siehe Umbrüche unten */
    --st-navy:     var(--ds-navy, #2B435D);
    --st-navy-800: var(--ds-navy-800, #1A2C40);
    --st-navy-900: var(--ds-navy-900, #13212F);
    --st-gold:     var(--ds-gold, #B69256);
    --st-gold-soft: var(--ds-gold-soft, #CDAE78);
    --st-text:     var(--ds-text, #25303B);
    --st-body:     var(--ds-text-body, #4A5560);
    --st-muted:    var(--ds-text-muted, #5B636D);
    --st-soft:     var(--ds-bg-soft, #F0F2F5);
    --st-line:     rgba(43, 67, 93, .14);

    color: var(--st-body);
    font-size: 1.125rem;
    line-height: 1.62;
}

.ds-st * { box-sizing: border-box; }

.ds-st-container {
    width: 100%;
    max-width: var(--st-max);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.ds-st-narrow { max-width: 900px; }

.ds-st :is(h1, h2, h3) {
    font-family: var(--ds-serif, "Playfair Display", Georgia, serif);
    font-weight: 400;
    color: var(--st-text);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .6em;
}
.ds-st h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
.ds-st h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.ds-st p  { margin: 0 0 1.1em; }
.ds-st p:last-child { margin-bottom: 0; }

.ds-st-eyebrow {
    font-family: var(--ds-sans, system-ui, sans-serif);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    /* Eyebrows stehen auf dunklen Flächen: helles Gold für 4,5:1 gegen Navy */
    color: var(--st-gold-soft);
    margin: 0 0 .9rem;
}
/* Falls ein Eyebrow einmal auf heller Fläche steht: dunkleres Gold */
.ds-st-section:not(.ds-st-section--dark) > .ds-st-container .ds-st-eyebrow { color: #7d5f2a; }

.ds-st-section { padding-block: var(--st-pad-y); }
.ds-st-section--soft { background: var(--st-soft); }
.ds-st-section--karte { padding-top: clamp(2.5rem, 5vw, 4rem); }

.ds-st-head { max-width: 760px; margin-bottom: clamp(1.8rem, 3.5vw, 3rem); }
.ds-st-head__lede { font-size: 1.15rem; color: var(--st-muted); margin: 0; }
.ds-st-h3 { margin-top: 2.2rem; }

.ds-st-prose > :first-child { margin-top: 0; }
.ds-st-prose--light, .ds-st-prose--light p { color: rgba(255, 255, 255, .88); }

/* ---------- Brotkrumen ---------- */
.ds-st-crumb {
    font-size: .95rem;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .68);
    margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.ds-st-crumb a { color: rgba(255, 255, 255, .78); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.ds-st-crumb a:hover { color: #fff; border-bottom-color: var(--st-gold-soft); }
.ds-st-crumb span[aria-hidden] { margin-inline: .5rem; opacity: .6; }
.ds-st-crumb [aria-current] { color: #fff; }

/* ---------- Hero ---------- */
.ds-st-hero {
    position: relative;
    background: linear-gradient(160deg, var(--st-navy) 0%, var(--st-navy-800) 52%, var(--st-navy-900) 100%);
    color: #fff;
    padding-block: calc(var(--st-header-h) + clamp(1.6rem, 3vw, 2.6rem)) clamp(3rem, 6vw, 5rem);
}
.ds-st-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
.ds-st-hero__grid--hub { grid-template-columns: minmax(0, 1fr); max-width: 940px; }
.ds-st .ds-st-hero__title,
.ds-st-hero .ds-st-hero__title {
    color: #fff;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    margin-bottom: .5em;
}
.ds-st-lead, .ds-st-lead p {
    font-size: clamp(1.15rem, 1.6vw, 1.3rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .9);
}
.ds-st-lead { margin-bottom: 1.8rem; }

.ds-st-usps { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .6rem; }
.ds-st-usps li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: 1.125rem; color: rgba(255, 255, 255, .9);
}
.ds-st-usps svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: .22em; color: var(--st-gold-soft); stroke-width: 2.4; }
.ds-st li::before, .ds-st li::marker { content: none; }

.ds-st-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.4rem 2rem;
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}
.ds-st-trust strong {
    display: block;
    font-family: var(--ds-serif, Georgia, serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--st-gold-soft);
    line-height: 1.1;
}
.ds-st-trust span { display: block; font-size: .98rem; color: rgba(255, 255, 255, .72); margin-top: .3rem; }

/* ---------- Buttons ---------- */
.ds-st-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.ds-st-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .95rem 1.6rem;
    font-family: var(--ds-sans, system-ui, sans-serif);
    font-size: 1.125rem; font-weight: 600; line-height: 1.2;
    text-decoration: none;
    border: 1.5px solid transparent;
    border-radius: 0;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.ds-st-btn svg { width: 19px; height: 19px; flex: 0 0 19px; }
.ds-st-btn--gold { background: var(--st-gold); color: var(--st-navy-900); }
.ds-st-btn--gold:hover, .ds-st-btn--gold:focus-visible { background: var(--st-gold-soft); color: var(--st-navy-900); transform: translateY(-2px); }
.ds-st-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.ds-st-btn--ghost:hover, .ds-st-btn--ghost:focus-visible { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff; }
.ds-st-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.ds-st-btn--ghost-light:hover, .ds-st-btn--ghost-light:focus-visible { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

/* ---------- Karte ---------- */
.ds-st-map { margin: 0; }
.ds-st-map__svg { display: block; width: 100%; height: auto; }
.ds-st-map__nachbar { fill: rgba(43, 67, 93, .04); stroke: rgba(43, 67, 93, .22); stroke-width: 1.1; }
.ds-st-map__haupt   { fill: rgba(43, 67, 93, .10); stroke: rgba(43, 67, 93, .44); stroke-width: 1.6; stroke-linejoin: round; }

.ds-st-map--hub { position: relative; background: #fff; border: 1px solid var(--st-line); padding: clamp(.8rem, 2vw, 1.4rem); }
.ds-st-map--hub .ds-st-map__svg { max-height: min(74vh, 720px); }

.ds-st-map__pin { cursor: pointer; }
.ds-st-map__halo { fill: transparent; }
.ds-st-map__dot {
    fill: var(--st-navy);
    stroke: #fff;
    stroke-width: 1.6;
    transition: fill .2s ease, r .2s ease;
}
.ds-st-map__dot.is-gross { fill: var(--st-gold); stroke-width: 2; }
.ds-st-map__pin:hover .ds-st-map__dot,
.ds-st-map__pin:focus-visible .ds-st-map__dot { fill: var(--st-gold); r: 8; }
.ds-st-map__pin:focus-visible { outline: none; }
.ds-st-map__pin:focus-visible .ds-st-map__halo { fill: rgba(182, 146, 86, .28); }
.ds-st-map__pin.is-dim { opacity: .18; }
.ds-st-map__pin.is-treffer .ds-st-map__dot { fill: var(--st-gold); }

/* Mini-Karte in der Kopfzeile der Detailseite */
.ds-st-map--mini {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 1rem 1rem .4rem;
}
.ds-st-map--mini .ds-st-map__nachbar { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .18); }
.ds-st-map--mini .ds-st-map__haupt { fill: rgba(255, 255, 255, .12); stroke: rgba(255, 255, 255, .42); }
.ds-st-map--mini .ds-st-map__dot--klein { fill: rgba(255, 255, 255, .5); stroke: none; }
.ds-st-map--mini .ds-st-map__aktiv { fill: var(--st-gold); stroke: #fff; stroke-width: 2; }
.ds-st-map--mini .ds-st-map__aktiv-halo { fill: rgba(182, 146, 86, .3); }
.ds-st-map--mini figcaption {
    font-size: .95rem;
    color: rgba(255, 255, 255, .72);
    text-align: center;
    padding: .5rem 0 .6rem;
}

/* Filter, Suche, Liste */
.ds-st-karte__filter { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.ds-st-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .6rem 1.05rem;
    font-family: var(--ds-sans, system-ui, sans-serif);
    font-size: 1.0625rem; font-weight: 600;
    color: var(--st-navy);
    background: #fff;
    border: 1.5px solid var(--st-line);
    border-radius: 0;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.ds-st-chip:hover { border-color: var(--st-navy); }
.ds-st-chip.is-active { background: var(--st-navy); border-color: var(--st-navy); color: #fff; }
.ds-st-chip__n { font-size: .95rem; font-weight: 600; color: var(--st-muted); }
.ds-st-chip.is-active .ds-st-chip__n { color: rgba(255, 255, 255, .82); }

.ds-st-karte__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}
.ds-st-karte__liste { background: #fff; border: 1px solid var(--st-line); padding: clamp(1.1rem, 2.4vw, 1.6rem); }
.ds-st-suche { display: block; margin-bottom: .9rem; }
.ds-st-suche span {
    display: block; font-size: .95rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--st-muted); margin-bottom: .5rem;
}
.ds-st-suche input {
    width: 100%;
    padding: .8rem 1rem;
    font-size: 1.125rem;
    color: var(--st-text);
    background: #fff;
    border: 1.5px solid var(--st-line);
    border-radius: 0;
}
.ds-st-suche input:focus-visible { outline: 2px solid var(--st-gold); outline-offset: 1px; border-color: var(--st-navy); }
.ds-st-karte__count { font-size: .98rem; color: var(--st-muted); margin: 0 0 .6rem; }
.ds-st-karte__ul {
    list-style: none; margin: 0; padding: 0;
    max-height: 520px; overflow-y: auto;
    border-top: 1px solid var(--st-line);
}
.ds-st-karte__ul li { border-bottom: 1px solid var(--st-line); }
.ds-st-karte__ul a {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    padding: .72rem .3rem;
    text-decoration: none; color: var(--st-text);
}
.ds-st-karte__ul a:hover, .ds-st-karte__ul a:focus-visible { color: var(--st-navy); background: var(--st-soft); }
.ds-st-karte__ort { font-weight: 600; font-size: 1.125rem; }
.ds-st-karte__kreis { font-size: .95rem; color: var(--st-muted); text-align: right; }
.ds-st-karte__ul li.is-hidden { display: none; }
.ds-st-karte__leer { margin-top: 1rem; color: var(--st-muted); font-size: 1.125rem; }

/* ---------- Regionen und Ortslisten ---------- */
.ds-st-region + .ds-st-region { margin-top: clamp(2rem, 4vw, 3rem); }
.ds-st-region__title {
    display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--st-line);
    margin-bottom: 1.2rem;
}
.ds-st-region__n {
    font-family: var(--ds-sans, system-ui, sans-serif);
    font-size: .95rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--st-muted);
}
.ds-st-orte, .ds-st-nachbarn {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .5rem;
}
.ds-st-orte a, .ds-st-nachbarn a {
    display: flex; align-items: center; gap: .55rem;
    padding: .7rem .85rem;
    background: #fff;
    border: 1px solid var(--st-line);
    color: var(--st-text);
    text-decoration: none;
    font-size: 1.125rem;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.ds-st-orte a:hover, .ds-st-nachbarn a:hover,
.ds-st-orte a:focus-visible, .ds-st-nachbarn a:focus-visible {
    border-color: var(--st-navy); color: var(--st-navy); transform: translateY(-1px);
}
.ds-st-orte svg, .ds-st-nachbarn svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--st-gold); }
.ds-st-mehr { margin-top: 1.4rem; }
.ds-st-mehr a { display: inline-flex; align-items: center; gap: .5rem; color: var(--st-navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--st-line); }
.ds-st-mehr a:hover { color: var(--st-gold); }
.ds-st-mehr svg { width: 18px; height: 18px; }

/* ---------- Zwei Spalten mit Datenkarte ---------- */
.ds-st-split {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr);
    gap: clamp(1.8rem, 4vw, 3.2rem);
    align-items: start;
}
.ds-st-split--wide { grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); }

.ds-st-datacard { background: #fff; border: 1px solid var(--st-line); padding: clamp(1.2rem, 2.5vw, 1.7rem); }
.ds-st-datacard h3 { font-size: 1.2rem; margin-bottom: .9rem; }
.ds-st-datacard dl { margin: 0; }
.ds-st-datacard dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--st-line); }
.ds-st-datacard dl > div:last-child { border-bottom: 0; }
.ds-st-datacard dt { font-size: 1.125rem; color: var(--st-muted); }
.ds-st-datacard dd { margin: 0; font-size: 1.125rem; font-weight: 600; color: var(--st-text); text-align: right; }
.ds-st-datacard dd small { display: block; font-size: .95rem; font-weight: 400; color: var(--st-muted); }
.ds-st-quelle { margin-top: 1rem; font-size: .95rem; color: var(--st-muted); }
.ds-st-quelle a { color: var(--st-muted); }

/* Fakten im Hero */
.ds-st-facts { margin: 1.2rem 0 0; display: grid; gap: 0; }
.ds-st-facts > div {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.ds-st-facts > div:last-child { border-bottom: 0; }
.ds-st-facts dt { font-size: 1.125rem; color: rgba(255, 255, 255, .74); }
.ds-st-facts dd { margin: 0; font-size: 1.125rem; font-weight: 600; color: #fff; text-align: right; }

/* ---------- Dunkler Ankaufs-Abschnitt ---------- */
.ds-st-section--dark {
    background: linear-gradient(150deg, var(--st-navy-800) 0%, var(--st-navy-900) 100%);
    color: rgba(255, 255, 255, .88);
}
.ds-st .ds-st-section--dark h2, .ds-st .ds-st-section--dark h3 { color: #fff; }
.ds-st-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.ds-st-checklist li {
    display: flex; align-items: flex-start; gap: .7rem;
    font-size: 1.125rem; color: rgba(255, 255, 255, .9);
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ds-st-checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.ds-st-checklist svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: .2em; color: var(--st-gold-soft); stroke-width: 2.4; }

/* ---------- Ortsteile ---------- */
.ds-st-tags { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.ds-st-tags li {
    padding: .45rem .95rem;
    background: #fff;
    border: 1px solid var(--st-line);
    font-size: 1.125rem;
    color: var(--st-text);
}

/* ---------- Leistungs-Kacheln ---------- */
.ds-st-cards {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem);
}
.ds-st-card__link {
    display: flex; flex-direction: column; height: 100%;
    padding: clamp(1.4rem, 2.6vw, 1.9rem);
    background: #fff;
    border: 1px solid var(--st-line);
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.ds-st-card__link:hover, .ds-st-card__link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(43, 67, 93, .3);
    box-shadow: 0 18px 44px -28px rgba(19, 33, 47, .55);
}
.ds-st-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-bottom: 1rem;
    background: var(--st-soft); color: var(--st-navy);
}
.ds-st-card__icon svg { width: 24px; height: 24px; }
.ds-st-card__title {
    font-family: var(--ds-serif, Georgia, serif);
    font-size: 1.3rem; font-weight: 400; color: var(--st-text);
    margin-bottom: .5rem;
}
.ds-st-card__text { font-size: 1.125rem; color: var(--st-muted); line-height: 1.55; }
.ds-st-card__more {
    display: inline-flex; align-items: center; gap: .45rem;
    margin-top: auto; padding-top: 1.1rem;
    font-size: 1.125rem; font-weight: 600; color: var(--st-navy);
}
.ds-st-card__more svg { width: 18px; height: 18px; transition: transform .25s ease; }
.ds-st-card__link:hover .ds-st-card__more svg { transform: translateX(4px); }
.ds-st-card--cta .ds-st-card__link { background: var(--st-navy); border-color: var(--st-navy); color: #fff; }
.ds-st .ds-st-card--cta .ds-st-card__title { color: #fff; }
.ds-st-card--cta .ds-st-card__text { color: rgba(255, 255, 255, .82); }
.ds-st-card--cta .ds-st-card__more { color: var(--st-gold-soft); }
.ds-st-card--cta .ds-st-card__icon { background: rgba(255, 255, 255, .12); color: var(--st-gold-soft); }

/* ---------- Ablauf ---------- */
.ds-st-steps {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem);
    counter-reset: step;
}
.ds-st-steps li {
    display: flex; flex-direction: column; gap: .45rem;
    padding: clamp(1.2rem, 2.4vw, 1.6rem);
    background: #fff;
    border: 1px solid var(--st-line);
    font-size: 1.125rem; color: var(--st-muted); line-height: 1.55;
}
.ds-st-steps__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; margin-bottom: .5rem;
    background: var(--st-navy); color: #fff;
    font-family: var(--ds-serif, Georgia, serif); font-size: 1.2rem;
}
.ds-st-steps strong { font-size: 1.1rem; color: var(--st-text); font-weight: 600; }

/* ---------- FAQ ---------- */
.ds-st-faq { border-top: 1px solid var(--st-line); }
.ds-st-faq__item { border-bottom: 1px solid var(--st-line); background: transparent; }
.ds-st-faq__item summary {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.15rem 0;
    font-family: var(--ds-serif, Georgia, serif);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    color: var(--st-text);
    cursor: pointer;
    list-style: none;
}
.ds-st-faq__item summary::-webkit-details-marker { display: none; }
.ds-st-faq__item summary::after {
    content: "";
    flex: 0 0 14px; width: 14px; height: 14px; margin-left: auto; margin-top: .4em;
    border-right: 2px solid var(--st-gold); border-bottom: 2px solid var(--st-gold);
    transform: rotate(45deg);
    transition: transform .25s ease;
}
.ds-st-faq__item[open] summary::after { transform: rotate(-135deg); }
.ds-st-faq__item summary:focus-visible { outline: 2px solid var(--st-gold); outline-offset: 3px; }
.ds-st-faq__a { padding: 0 0 1.3rem; max-width: 74ch; }
.ds-st-faq__a p { font-size: 1.125rem; color: var(--st-body); margin: 0; }

/* ---------- Abschluss-CTA ---------- */
.ds-st-cta {
    background: linear-gradient(140deg, var(--st-navy) 0%, var(--st-navy-900) 100%);
    color: #fff;
    padding-block: clamp(2.6rem, 5vw, 4rem);
}
.ds-st-cta__inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: clamp(1.4rem, 3vw, 2.6rem);
}
.ds-st .ds-st-cta h2 { color: #fff; margin-bottom: .4em; }
.ds-st-cta p { color: rgba(255, 255, 255, .84); max-width: 56ch; margin: 0; }

.ds-st-stand {
    max-width: var(--st-max);
    margin: 0 auto;
    padding: 1.6rem clamp(1.1rem, 4vw, 2.25rem) 2.4rem;
    font-size: .95rem;
    color: var(--st-muted);
}

/* ---------- Umbrüche ---------- */
@media (max-width: 1279px) {
    .ds-st { --st-header-h: 73px; }
}
@media (max-width: 767px) {
    .ds-st { --st-header-h: 65px; }
}
@media (min-width: 1280px) {
    .ds-st { --st-header-h: 85px; }
}

@media (max-width: 1080px) {
    .ds-st-karte__grid { grid-template-columns: minmax(0, 1fr); }
    .ds-st-karte__ul { max-height: 380px; }
}
@media (max-width: 900px) {
    .ds-st-hero__grid, .ds-st-split, .ds-st-split--wide { grid-template-columns: minmax(0, 1fr); }
    .ds-st-hero__side { order: 2; }
    .ds-st-map--mini .ds-st-map__svg { max-height: 300px; }
}
@media (max-width: 600px) {
    /* Fließtext bleibt bei 18px (Vorgabe), nur Abstände werden enger */
    .ds-st { --st-gap: 1.2rem; }
    .ds-st-actions .ds-st-btn { width: 100%; justify-content: center; }
    .ds-st-orte, .ds-st-nachbarn { grid-template-columns: minmax(0, 1fr); }
    .ds-st-karte__ul a { flex-direction: column; gap: .15rem; }
    .ds-st-karte__kreis { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    .ds-st *, .ds-st *::before, .ds-st *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
