/* ==========================================================================
   anarchismus.at — Komponenten
   ========================================================================== */

/* ----------  Buttons  ---------- */
.btn {
  --bg: var(--ink); --fg: var(--cream); --bd: var(--ink);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; line-height: 1;
  padding: .92em 1.5em; border-radius: var(--radius);
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .ico { transition: transform .2s ease; }
.btn:hover .ico { transform: translateX(3px); }
.btn--red    { --bg: var(--red); --fg: var(--paper); --bd: var(--red); }
.btn--ghost  { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { --bg: transparent; --fg: var(--cream); --bd: rgba(247,241,228,.5); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }
/* Buttons im Fliesstext: .prose a (rot, unterstrichen) darf die Button-Textfarbe nicht ueberschreiben */
.prose a.btn, .prose a.btn:hover, .prose a.btn:focus, .prose a.btn:visited { color: var(--fg); text-decoration: none; }
.prose a.btn--ghost:hover, .prose a.btn--ghost-light:hover { color: var(--cream); }
.btn--lg { font-size: 1.06rem; padding: 1.05em 1.8em; }
.btn--sm { font-size: .86rem; padding: .65em 1.05em; }

.textlink {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 650; color: var(--red);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .3s ease;
}
.textlink:hover { background-size: 100% 2px; }
.textlink .ico { transition: transform .2s ease; }
.textlink:hover .ico { transform: translateX(3px); }

/* ----------  Header / Navigation  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  transition: transform .4s cubic-bezier(.4,0,.2,1), border-color .3s ease, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -12px rgba(26,23,20,.3);
}
/* Beim Runterscrollen ausblenden */
.site-header.is-hidden { transform: translateY(-100%); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.brand .glyph {
  width: 34px; height: 34px; flex: none;
  background: url(../img/brand-rose.png) center / contain no-repeat;
}
.brand .glyph svg { display: none; }
.brand b { font-weight: 600; }
.brand .tld { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  position: relative; padding: .55rem .7rem; border-radius: var(--radius);
  font-weight: 550; font-size: .96rem; color: var(--ink-soft);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(26,23,20,.05); }
.nav-links a.is-active { color: var(--red); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 2px; background: var(--red);
}
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-cta-mobile { display: none; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > button.nav-trigger {
  display: inline-flex; align-items: center; gap: .35em;
  padding: .55rem .7rem; border-radius: var(--radius);
  font-weight: 550; font-size: .96rem; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-item > button.nav-trigger:hover { color: var(--ink); background: rgba(26,23,20,.05); }
.nav-item .chev { transition: transform .2s; }
.nav-item[data-open="true"] .chev { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .5rem; z-index: 110;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item[data-open="true"] .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu a {
  display: block; padding: .6rem .75rem; border-radius: var(--radius);
  font-size: .94rem; color: var(--ink-soft); font-weight: 500;
}
.nav-menu a:hover { background: rgba(192,36,28,.08); color: var(--red); }
.nav-menu a b { display: block; color: var(--ink); font-weight: 600; }
.nav-menu a span { font-size: .82rem; color: var(--ink-faint); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.burger span::before { transform: translateY(-7px); }
.burger span::after { transform: translateY(5px); }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: rotate(45deg); }
body.nav-open .burger span::after { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 1040px) {
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem; gap: .15rem;
    max-height: calc(100dvh - 64px); overflow-y: auto;
    /* calc(-100% - 80px): immer komplett aus dem Bild, egal wie hoch das Menü ist
       (reines -110% ließ bei kurzem Menü unten einen weißen Streifen über dem Header). */
    transform: translateY(calc(-100% - 80px));
    pointer-events: none;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav-links { transform: none; pointer-events: auto; }
  .nav-links { gap: 0; padding-top: .4rem; }
  .nav-links > li:not(:last-child) { border-bottom: 1px solid rgba(20,16,13,.07); }
  .nav-links a, .nav-item > button.nav-trigger { padding: .95rem .25rem; font-size: 1.06rem; width: 100%; justify-content: space-between; }
  .nav-links a.is-active { color: var(--red); }
  .nav-links a.is-active::after { display: none; }
  /* Kampagne-Button als vollbreiter CTA unten im Menü */
  .nav-cta-mobile { display: block; margin-top: 1rem; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; padding: .9rem 1rem; font-size: 1.04rem; }
  /* Button-Schrift erzwingen (.nav-links a + iOS -webkit-text-fill-color heben sonst die weiße Farbe aus) */
  .nav-cta-mobile .btn--red { color: var(--paper) !important; -webkit-text-fill-color: var(--paper); background: var(--red); }
  .nav-cta-mobile .btn--red:hover, .nav-cta-mobile .btn--red:focus, .nav-cta-mobile .btn--red:focus-visible, .nav-cta-mobile .btn--red:active { color: var(--paper) !important; -webkit-text-fill-color: var(--paper); background: var(--red-deep); }
  .nav-item .nav-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 .5rem .5rem;
    display: none;
  }
  .nav-item[data-open="true"] .nav-menu { display: block; }
  .burger { display: inline-flex; }
}

/* ----------  Hero  ---------- */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,16,13,.58) 0%, rgba(20,16,13,.20) 46%, rgba(20,16,13,0) 72%),
    linear-gradient(180deg, rgba(20,16,13,.32) 0%, rgba(20,16,13,.28) 38%, rgba(20,16,13,.82) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-inner h1, .hero-inner .lead, .hero-inner p, .hero-inner .eyebrow { text-shadow: 0 1px 14px rgba(20,16,13,.45); }

/* ----------  Karten  ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card-media { aspect-ratio: 3/2; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { font-size: 1.3rem; }
.card-body p { color: var(--ink-mute); font-size: .98rem; }
.card-body .textlink { margin-top: auto; padding-top: .4rem; }
.card-link { color: inherit; display: flex; flex-direction: column; height: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35em .7em; border-radius: 100px; background: var(--sand); color: var(--ink-soft);
}
.badge--red { background: rgba(192,36,28,.12); color: var(--red-deep); }
.badge--sage { background: rgba(110,124,87,.16); color: var(--sage-deep); }
.badge--terra { background: rgba(194,105,60,.16); color: var(--terra-deep); }
.badge--plum { background: rgba(122,59,90,.14); color: var(--plum); }

/* Feature-Kachel (Prinzipien) */
.feature { display: flex; flex-direction: column; gap: .8rem; padding: 1.7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ico-box {
  width: 52px; height: 52px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
}
.feature .ico-box svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--ink-mute); font-size: .97rem; }
.feature--red .ico-box { background: var(--red); }
.feature--sage .ico-box { background: var(--sage); }
.feature--terra .ico-box { background: var(--terra); }
.feature--ochre .ico-box { background: var(--ochre); color: var(--ink); }
.feature--plum .ico-box { background: var(--plum); }

/* ----------  Statistik / Zähler  ---------- */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.6rem + 3vw, 4.4rem); line-height: 1; color: var(--red); letter-spacing: -.03em; }
.stat .lbl { margin-top: .5rem; font-size: .98rem; color: var(--ink-mute); }
.bg-ink .stat .num { color: var(--ochre); }
.bg-ink .stat .lbl { color: rgba(247,241,228,.7); }

/* ----------  Zitat  ---------- */
.pullquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem); line-height: 1.22; letter-spacing: -.02em;
  text-wrap: balance;
}
.pullquote .qmark { color: var(--red); }
.quote-cite { margin-top: 1.3rem; font-family: var(--font-sans); font-size: .95rem; font-weight: 600; letter-spacing: .03em; color: var(--ink-mute); }
.quote-cite::before { content: "— "; }
.bg-ink .quote-cite { color: rgba(247,241,228,.7); }

blockquote.bq {
  border-left: 4px solid var(--red); padding: .3rem 0 .3rem 1.5rem; margin: 2rem 0;
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--ink-soft);
}

/* ----------  Akkordeon (Mythen / FAQ)  ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); color: var(--ink);
}
.acc-head:hover { color: var(--red); }
.acc-head .myth { display: block; font-family: var(--font-sans); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .35rem; }
.acc-icon { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; position: relative; transition: background .25s, border-color .25s; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .3s, background .25s; }
.acc-icon::before { width: 14px; height: 2px; }
.acc-icon::after { width: 2px; height: 14px; }
.acc-item[aria-expanded="true"] .acc-icon { background: var(--red); border-color: var(--red); }
.acc-item[aria-expanded="true"] .acc-icon::before,
.acc-item[aria-expanded="true"] .acc-icon::after { background: var(--paper); }
.acc-item[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1); }
.acc-item[aria-expanded="true"] .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-panel-inner .body { padding: 0 0 1.6rem; max-width: 70ch; color: var(--ink-mute); }
.acc-panel-inner .body > * + * { margin-top: 1em; }

/* ----------  Timeline (CSS-Basis, JS erweitert)  ---------- */
.timeline { position: relative; }
.timeline-track { position: relative; padding-left: 2.2rem; }
.timeline-track::before { content: ""; position: absolute; left: 9px; top: .5rem; bottom: .5rem; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 2.6rem; }
.tl-item::before { content: ""; position: absolute; left: -2.2rem; top: .35rem; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); border: 3px solid var(--red); transform: translateX(0); z-index: 1; }
.tl-item .yr { font-family: var(--font-display); font-weight: 600; color: var(--red); font-size: 1.15rem; }
.tl-item h3 { margin-top: .15rem; }
.tl-item p { color: var(--ink-mute); margin-top: .4rem; max-width: 60ch; }

/* ----------  Galerie-Mosaik  ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; grid-auto-flow: dense; }
.mosaic figure { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic .wide { grid-column: span 2; }
.mosaic .tall { grid-row: span 2; }
.mosaic figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .8rem; font-size: .85rem; color: var(--paper); background: linear-gradient(transparent, rgba(20,16,13,.8)); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.mosaic figure:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 760px) { .mosaic { grid-template-columns: repeat(2, 1fr); } .mosaic .wide { grid-column: span 2; } }

/* ----------  Person-Karte  ---------- */
.person { text-align: left; }
.person-portrait { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); border: 1px solid var(--line); }
.person-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); transition: transform .5s; }
.person:hover .person-portrait img { transform: scale(1.04); }
.person h3 { font-size: 1.25rem; margin-top: .9rem; }
.person .role { font-size: .85rem; color: var(--red); font-weight: 650; letter-spacing: .02em; }
.person .years { font-size: .82rem; color: var(--ink-faint); }
.person p { color: var(--ink-mute); font-size: .94rem; margin-top: .5rem; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--ink); color: rgba(247,241,228,.72); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer h4 { color: var(--paper); font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: rgba(247,241,228,.72); transition: color .2s; }
.site-footer a:hover { color: var(--ochre); }
.footer-links li { margin-bottom: .6rem; font-size: .95rem; }
.footer-brand .brand { color: var(--paper); margin-bottom: 1rem; }
.footer-brand .brand .glyph { background: url(../img/rose-light.png) center / contain no-repeat; }
.footer-brand p { max-width: 38ch; font-size: .95rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(247,241,228,.14); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem; color: rgba(247,241,228,.5); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(247,241,228,.2); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--paper); }
.footer-social svg { width: 18px; height: 18px; }

/* ----------  To-Top  ---------- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s, background .2s;
}
.to-top.is-vis { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--red); }
.to-top svg { width: 20px; height: 20px; }

/* ----------  Page-Hero (Unterseiten)  ---------- */
.page-hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; color: var(--ink-faint); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .5; }

/* ----------  Tag-Pills / Filter  ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .5em 1em; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: .9rem; font-weight: 600; color: var(--ink-soft);
  transition: all .2s ease; background: var(--paper);
}
.pill:hover { border-color: var(--ink); }
.pill.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ----------  Artikel-Prosa  ---------- */
.prose { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.72; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.1rem); margin-top: 2.4em; }
.prose h3 { font-family: var(--font-display); font-size: 1.45rem; margin-top: 1.8em; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul li { list-style: disc; margin-top: .5em; }
.prose ol li { list-style: decimal; margin-top: .5em; }
.prose img { border-radius: var(--radius-lg); margin: 2em 0; }
.prose .figcap { font-family: var(--font-sans); font-size: .85rem; color: var(--ink-faint); text-align: center; margin-top: -1em; }

/* Toast / Hinweis */
.note-bar { background: var(--sand); border: 1px dashed var(--terra); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .92rem; color: var(--ink-soft); }

/* ==========================================================================
   Mobile-Feinschliff — global, überschreibt notfalls Inline-Styles
   ========================================================================== */

/* Kein horizontales Verrutschen beim Scrollen: clip nur auf <body>.
   NICHT auf <html> – ein overflow auf der Wurzel unterbindet die Weitergabe
   der <body>-Hintergrundfarbe an den Browser-Canvas, dann blitzt beim mobilen
   Überscrollen (Adressleiste ein/aus) oben ein weißer Streifen durch.
   Zusätzlich html eine eigene Cremefarbe geben – doppelt abgesichert. */
html { background: var(--cream); }
body { overflow-x: clip; max-width: 100%; }

/* Aufgeräumter mobiler Header: nur Marke + Burger, kein gequetschter CTA */
@media (max-width: 1040px) {
  .nav { height: 64px; }
  .nav-actions .btn--red { display: none; }
  .brand { font-size: 1.15rem; }
}

/* Zweispaltige .split-Layouts mit Inline-Spalten brechen auf Mobil korrekt um.
   (Inline-Styles schlagen Media-Queries – darum hier !important.) */
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr !important; gap: clamp(2rem, 6vw, 3rem) !important; }
  .split > * { min-width: 0; }
  /* Zweispaltige Kontakt-/Erreichbar-Listen ebenfalls einreihig */
  .reach-list { grid-template-columns: 1fr !important; }
}

/* Akkordeon: Kopfzeile darf schrumpfen & umbrechen, statt zu überlaufen */
.acc-head > span:first-child { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 560px) {
  .acc-head { gap: .9rem; }
  .acc-head .myth { margin-right: .45rem; }
}

/* Große Statistik-Zahlen (z. B. „1 500 000“) passen in schmale Spalten.
   minmax(0,1fr) lässt die Grid-Spur unter die Wortbreite schrumpfen. */
@media (max-width: 560px) {
  .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .stat .num { font-size: clamp(1.7rem, 9vw, 2.5rem); }
}
/* Ganz schmal: Zahlen einspaltig & voll – kein 7px-Überlauf mehr */
@media (max-width: 460px) {
  .stat-band { grid-template-columns: 1fr !important; gap: 2rem 1rem !important; }
  .stat .num { font-size: clamp(2.2rem, 12vw, 3rem); }
}

/* Lange Wörter/URLs in Fließtext nie über den Rand schieben */
@media (max-width: 560px) {
  .prose, .acc-panel-inner .body, .card-body p { overflow-wrap: break-word; }
}
