/* ══════════════════════════════════════════════════════════════════════════
   PN-FEED — Seitenlayout der Startseite (Intro, Werkzeuge, Raster, Knoepfe).
   Karten, Aktionen, Formularelemente und Farbwerte: pn-ui.css.
   ──────────────────────────────────────────────────────────────────────────
   Geladen NACH theme.v2.css (index_new.html → head_extra). Alles hier ist
   auf body.pn-feed begrenzt; Header, Logo, Termine und alle anderen Seiten
   bleiben unberuehrt.

   Grundsaetze (Feedback Daniel):
   · Spielkarten-Anmutung aus dem Entwurf (Georgia-Titel, eingerueckte
     Fotos, ruhige Kopfzeile) — aber in den LIVE-Farben (--bsn, --accent,
     --border, --muted, --bg, --card) statt Creme/Salbei.
   · Genau EIN Rahmen pro Karte. Kein innerer Rahmen um Inhalt oder Foto.
   · Keine festen Hoehen, keine Kuerzung von Spieltiteln.
   · Touch-Ziele >= 44px, Metadaten >= 12px, kein horizontaler Ueberlauf
     ab 320px, sanfte Bewegung nur mit echtem Zeigegeraet.
   · Kein !important — die Spezifitaet von body.pn-feed genuegt.
   ══════════════════════════════════════════════════════════════════════════ */

body.pn-feed {
  --pn-feed-max: var(--pn-max);
  /* Platz fuer die schwebenden Knoepfe unten, damit sie nie die letzte
     Zeile oder die Seitennavigation verdecken. */
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}


/* ── Gemeinsame Breite: Intro, Werkzeuge, Reiter, Chips, Raster ─────────── */
body.pn-feed .feed-intro,
body.pn-feed .feed-tools,
body.pn-feed .feed-tabs,
body.pn-feed .filter-chips,
body.pn-feed .frontend-filter {
  max-width: var(--pn-feed-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pn-gutter);
  padding-right: var(--pn-gutter);
  box-sizing: border-box;
}

/* ══ Intro ═══════════════════════════════════════════════════════════════ */
body.pn-feed .feed-intro {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  padding-right: calc(var(--pn-gutter) + 3rem); /* Platz fuer den Schliessen-Knopf */
}
body.pn-feed .feed-intro[hidden] { display: none; }

body.pn-feed .feed-intro__eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem; font-weight: 700; line-height: 1.3;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bsn);
}
/* Orange bleibt Signalfarbe als feine Linie — als Textfarbe waere es bei
   12px nicht kontrastreich genug. */
body.pn-feed .feed-intro__eyebrow::before {
  content: ""; flex: 0 0 auto; width: 1.75rem; height: 2px;
  background: var(--accent); border-radius: 2px;
}

body.pn-feed .feed-intro__title {
  margin: 0 0 0.9rem;
  max-width: 22ch;
  font-family: var(--pn-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bsn);
  overflow-wrap: break-word;
  hyphens: auto;
}

body.pn-feed .feed-intro__text {
  margin: 0;
  max-width: 38rem;
  font-size: 1rem; line-height: 1.6;
  color: var(--pn-text);
}
/* Gaeste duerfen ohne Konto teilen – das stand bisher nirgends am Einstieg */
body.pn-feed .feed-intro__guest { font-weight: 600; color: var(--bsn); }

body.pn-feed .feed-intro__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.4rem;
}


body.pn-feed .feed-intro__guide {
  display: inline-flex; align-items: center;
  min-height: 44px;
  color: var(--bsn); font-size: 0.95rem; font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(42, 51, 63, 0.35);
  text-underline-offset: 3px;
}
body.pn-feed .feed-intro__guide:hover { text-decoration-color: var(--accent); }

body.pn-feed .feed-intro__credit {
  margin: 1rem 0 0;
  font-size: 0.8125rem; line-height: 1.5;
  color: var(--muted);
}
body.pn-feed .feed-intro__credit a { color: var(--bsn); font-weight: 600; }

body.pn-feed .feed-intro__dismiss {
  position: absolute; top: -0.35rem; right: var(--pn-gutter);
  display: grid; place-items: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; color: var(--muted);
  border: 0; border-radius: 999px;
  font: inherit; font-size: 1.25rem; line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
body.pn-feed .feed-intro__dismiss[hidden] { display: none; }
body.pn-feed .feed-intro__dismiss:hover { background: rgba(42, 51, 63, 0.07); color: var(--bsn); }
body.pn-feed .feed-intro__dismiss svg { width: 18px; height: 18px; }

/* ══ Werkzeuge: Suche, Sortierung, Filter, Folgen ═══════════════════════ */
body.pn-feed .feed-tools {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Formular enthaelt Suchfeld, Sortierung und Suchen-Knopf nebeneinander */
body.pn-feed .feed-search {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem;
  flex: 1 1 32rem; min-width: 0;
  margin: 0;
}
body.pn-feed .feed-search input[type="search"] {
  flex: 1 1 14rem; min-width: 0; width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  background: var(--card); color: var(--pn-ink);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem; /* 16px: verhindert iOS-Zoom beim Fokus */
  line-height: 1.3;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.15s ease;
}
body.pn-feed .feed-search input[type="search"]::placeholder { color: #9CA3AF; }
body.pn-feed .feed-search input[type="search"]:focus { border-color: var(--bsn); }
body.pn-feed .feed-search input[type="search"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-radius: 10px; }

body.pn-feed .feed-search__submit {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  min-width: 44px; min-height: 44px;
  padding: 0 0.95rem;
  background: var(--bsn); color: #fff;
  border: 0; border-radius: 10px;
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
body.pn-feed .feed-search__submit:hover { background: #1F2937; }
body.pn-feed .feed-search__submit svg { width: 18px; height: 18px; }

body.pn-feed .feed-sort {
  display: inline-flex; align-items: center; gap: 0.5rem;
  flex: 0 1 auto; min-width: 0;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--muted);
}
body.pn-feed .feed-sort select {
  min-width: 0; max-width: 100%;
  min-height: 44px;
  padding: 0.5rem 2.1rem 0.5rem 0.8rem;
  background-color: var(--card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  color: var(--pn-ink);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 500;
  -webkit-appearance: none; appearance: none;
  cursor: pointer;
}
body.pn-feed .feed-sort select:focus { border-color: var(--bsn); }

body.pn-feed .feed-filters {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  flex: 0 0 auto;
  min-height: 44px; margin: 0;
  padding: 0 1rem;
  background: var(--card); color: var(--bsn);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.9rem; font-weight: 600; line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
body.pn-feed .feed-filters:hover { border-color: var(--bsn); }
body.pn-feed .feed-filters.active,
body.pn-feed .feed-filters[aria-expanded="true"] { border-color: var(--bsn); background: var(--bg); }
body.pn-feed .feed-filters:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
body.pn-feed .feed-filters svg { width: 18px; height: 18px; }

/* Folgen-Umschalter: eigene Zeile unter der Suche; Gaeste-Hinweis darunter */
body.pn-feed .feed-follow {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem 0.75rem;
  flex: 1 1 100%; min-width: 0;
}
body.pn-feed .feed-follow__link {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 1rem;
  background: var(--card); color: var(--pn-text);
  border: 1.5px solid var(--border); border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
body.pn-feed .feed-follow__link:hover { border-color: var(--bsn); color: var(--bsn); }
body.pn-feed .feed-follow__link[aria-current="page"] {
  background: var(--bsn); border-color: var(--bsn); color: #fff;
}
body.pn-feed .feed-follow__hint {
  flex: 1 1 100%; min-width: 0;
  margin: -0.25rem 0 0;
  font-size: 0.8125rem; line-height: 1.45;
  color: var(--muted);
}
body.pn-feed .feed-follow__hint a { color: var(--bsn); font-weight: 600; }

@media (max-width: 560px) {
  /* Kompakter Einstieg: erste Karte naeher an den ersten Bildschirm
     (Audit 25.09.2026: Karte begann bei 740 px, Bildschirm 664 px). */
  body.pn-feed .feed-intro { margin-top: 1rem; margin-bottom: 0.9rem; }
  body.pn-feed .feed-intro__eyebrow { display: none; }
  body.pn-feed .feed-intro__title { margin-bottom: 0.6rem; }
  body.pn-feed .feed-intro__text { font-size: 0.95rem; line-height: 1.5; }
  /* Unten ist rechts kein Schliessen-Knopf mehr im Weg: volle Breite */
  body.pn-feed .feed-intro__actions {
    gap: 0.25rem 0.9rem;
    margin-top: 0.9rem;
    margin-right: -3rem;
  }
  body.pn-feed .feed-intro__actions .feed-share { padding-right: 1rem; }
  body.pn-feed .feed-intro__guide { font-size: 0.875rem; white-space: nowrap; }
  /* Folgen-Hinweis fuer Gaeste: am Handy nur fuer Screenreader (bleibt
     aria-describedby des Folge-ich-Links); der Link fuehrt ohnehin zum Login. */
  body.pn-feed .feed-follow__hint {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%);
    white-space: nowrap; border: 0;
  }
  body.pn-feed .feed-search { flex: 1 1 100%; }
  body.pn-feed .feed-search input[type="search"] { flex-basis: 100%; }
  body.pn-feed .feed-sort { flex: 1 1 8rem; }
  body.pn-feed .feed-search__submit { flex: 0 0 auto; }
  body.pn-feed .feed-filters { flex: 1 1 auto; }
  body.pn-feed .feed-sort select { flex: 1 1 auto; }
  body.pn-feed .feed-follow__link { flex: 1 1 auto; justify-content: center; }
}

/* Reiter bleiben wie sie sind — nur buendig zum Raster */
body.pn-feed .feed-tabs { margin-top: 1rem; }
/* Am Handy: EINE Zeile Chips statt 2er-Raster (09/2026, ersetzt die
   UI-Regel vom 10.08.2026). Das Raster brauchte bei fuenf Reitern drei
   Zeilen (~132px) und schob den Inhalt weit nach unten; die Chip-Zeile
   braucht ~40px.
   Damit trotzdem sichtbar bleibt, was noch drinsteckt:
   - der letzte sichtbare Chip wird angeschnitten (Luft rechts, kein
     Scrollbalken), die Kante blendet weich aus;
   - solange rechts/links noch Reiter liegen, zeigt ein Pfeil-Knopf das an
     und blaettert per Tipp weiter (static/js/pn-tabs.js setzt
     .has-more-start/.has-more-end);
   - der aktive Reiter wird beim Laden in den sichtbaren Bereich geholt.
   Aktiver Reiter = gefuellter Chip (Helligkeit + Form, nicht nur Farbton;
   WCAG 1.4.1) plus aria-current="page".
   Ohne JavaScript bleibt die Zeile normal wischbar. */
@media (max-width: 679px) {
  body.pn-feed .feed-tabs {
    position: relative;
    margin-top: 0.5rem;
    /* Die Zeile laeuft bis an den Bildschirmrand, damit der angeschnittene
       Chip als "da geht es weiter" lesbar ist; der Einzug sitzt in der Liste. */
    padding-left: 0; padding-right: 0;
  }
  body.pn-feed .feed-tabs__list {
    display: flex; gap: 0.5rem;
    overflow-x: auto; overscroll-behavior-x: contain;
    border-bottom: 0;
    padding: 0.125rem var(--pn-gutter);
    scroll-padding-inline: var(--pn-gutter);
    scroll-snap-type: x proximity;
    --pn-fade-start: 0px; --pn-fade-end: 0px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--pn-fade-start), #000 calc(100% - var(--pn-fade-end)), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 var(--pn-fade-start), #000 calc(100% - var(--pn-fade-end)), transparent 100%);
  }
  body.pn-feed .feed-tabs.has-more-start .feed-tabs__list { --pn-fade-start: 2.75rem; }
  body.pn-feed .feed-tabs.has-more-end .feed-tabs__list { --pn-fade-end: 2.75rem; }
  body.pn-feed .feed-tabs__item { scroll-snap-align: start; }
  body.pn-feed .feed-tabs__link {
    display: inline-flex; align-items: center;
    min-height: 40px; padding: 0 0.95rem; margin-bottom: 0;
    background: var(--card, #fff); color: var(--pn-text, #4B5563);
    border: 1.5px solid var(--border, #E5E7EB); border-radius: 999px;
    font-size: 0.875rem; line-height: 1.2;
  }
  body.pn-feed .feed-tabs__link:hover { color: var(--bsn, #20228a); border-color: var(--bsn, #20228a); }
  body.pn-feed .feed-tabs__link.is-active {
    background: var(--bsn, #20228a); border-color: var(--bsn, #20228a); color: #fff;
  }

  /* Pfeil-Knoepfe: nur sichtbar, solange in die Richtung noch Reiter
     liegen. Fuer Vorlesesoftware ueberfluessig (alle Links sind in der
     Liste erreichbar) -> aria-hidden + tabindex=-1 im Markup. */
  body.pn-feed .feed-tabs__more {
    position: absolute; top: 50%; transform: translateY(-50%);
    display: none; align-items: center; justify-content: center;
    width: 32px; height: 32px; padding: 0;
    border: 0; border-radius: 999px;
    background: var(--card, #fff); color: var(--bsn, #20228a);
    box-shadow: 0 1px 4px rgba(17, 24, 39, 0.18);
    cursor: pointer;
  }
  body.pn-feed .feed-tabs__more svg { width: 18px; height: 18px; }
  body.pn-feed .feed-tabs__more--start { left: 0.25rem; }
  body.pn-feed .feed-tabs__more--end { right: 0.25rem; }
  body.pn-feed .feed-tabs.has-more-start .feed-tabs__more--start,
  body.pn-feed .feed-tabs.has-more-end .feed-tabs__more--end { display: inline-flex; }
}
/* Pfeil-Knoepfe gibt es nur am Handy. */
@media (min-width: 680px) {
  body.pn-feed .feed-tabs__more { display: none; }
}

/* ══ Raster (nur Beitragsraster, NICHT Termine) ══════════════════════════ */
body.pn-feed main.main-grid:not(.main-grid--events) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  /* Karten einer Reihe gleich hoch; die Meta-Zeile sitzt unten (siehe
     .card-meta margin-top:auto) — wirkt wie ein ausgelegtes Kartenblatt. */
  align-items: stretch;
  max-width: var(--pn-feed-max);
  margin: 1.5rem auto 2rem;
  padding: 0 var(--pn-gutter);
  box-sizing: border-box;
}
@media (max-width: 1099px) {
  body.pn-feed main.main-grid:not(.main-grid--events) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (max-width: 679px) {
  body.pn-feed main.main-grid:not(.main-grid--events) {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
}
body.pn-feed main.main-grid:not(.main-grid--events) > .empty-state { grid-column: 1 / -1; }

/* Diskutierte Termine im Community-Reiter: nur Breite und Kante an das
   Raster angleichen. Die Terminkarten selbst behalten ihr eigenes Design;
   der Termine-Reiter (#eventsCalendar) bleibt ganz unberuehrt. */
body.pn-feed .events:not(#eventsCalendar),
body.pn-feed .events:not(#eventsCalendar) + .main-grid--events {
  max-width: var(--pn-feed-max);
  padding-left: var(--pn-gutter);
  padding-right: var(--pn-gutter);
  box-sizing: border-box;
}

/* Bildunterschrift unter dem Raster */
body.pn-feed .feed-caption {
  max-width: var(--pn-feed-max);
  margin: 0 auto 1.5rem;
  padding: 0 var(--pn-gutter);
  box-sizing: border-box;
  font-size: 0.8125rem; line-height: 1.5;
  color: var(--muted);
  text-align: center;
}


/* ══ Schwebende Knoepfe ══════════════════════════════════════════════════ */

/* Einreichen: beschriftete Pille unten LINKS (Chat-Wuerfel sitzt rechts).
   Live-Orange mit weisser Schrift; Plus als weisser Kreis mit BSN-Kreuz
   (Wunsch Daniel 24.09.2026). */
body.pn-feed .submit-bubble {
  left: calc(1.5rem + env(safe-area-inset-left, 0px));
  right: auto;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  width: auto; height: auto;
  min-height: 52px;
  /* Rand links + Chat-Wuerfel (64px) + Rand rechts + 12px Luft. */
  max-width: calc(100% - 3rem - 64px - 12px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  padding: 0.4rem 1.2rem 0.4rem 0.45rem;
  text-align: left;
  gap: 0.6rem;
  background: var(--accent-strong, #C24E00); color: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem; font-weight: 700; line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px rgba(42, 51, 63, 0.28);
  transform: none;
  animation: none;
  transition: box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
body.pn-feed .submit-bubble:hover { background: var(--accent-strong-hover, #A94300); box-shadow: 0 10px 28px rgba(42, 51, 63, 0.36); }
body.pn-feed .submit-bubble:active { transform: scale(0.97); }
body.pn-feed .submit-bubble.hidden { opacity: 0; pointer-events: none; }
body.pn-feed .submit-bubble:focus-visible { outline: 2px solid var(--bsn); outline-offset: 3px; border-radius: 999px; }

/* Plus-Symbol: Span im Knopf, der NICHT das Label ist */
body.pn-feed .submit-bubble > span:not(.submit-bubble__label) {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: #fff; color: var(--bsn);
  border-radius: 50%;
  font-size: 1.45rem; font-weight: 400; line-height: 1;
}
body.pn-feed .submit-bubble > span:not(.submit-bubble__label) svg { width: 18px; height: 18px; }
/* Lange Uebersetzungen (fr/pt/it/pl) brechen auf zwei Zeilen um, statt
   abgeschnitten zu werden; kurze bleiben einzeilig. */
body.pn-feed .submit-bubble__label {
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.15;
}

/* Chat-Wuerfel: Bild bleibt, Dauer-Schweben entfaellt, Safe-Area beachten */
body.pn-feed .chat-bubble {
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  animation: none;
  transform: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.pn-feed .chat-bubble:hover { transform: scale(1.08); }
}
body.pn-feed .chat-bubble:active { transform: scale(0.94); }

@media (max-width: 500px) {
  body.pn-feed .submit-bubble {
    left: calc(1rem + env(safe-area-inset-left, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    max-width: calc(100% - 2rem - 64px - 12px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    transform: none;
    animation: none;
  }
  body.pn-feed .submit-bubble:active { transform: scale(0.97); }
  body.pn-feed .chat-bubble {
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 360px) {
  body.pn-feed .submit-bubble {
    padding-right: 0.95rem;
    font-size: 0.875rem;
  }
  body.pn-feed .submit-bubble > span:not(.submit-bubble__label) { width: 32px; height: 32px; }
}

/* ══ Filter-Fenster ══════════════════════════════════════════════════════
   theme.v2.css begrenzt die Hoehe nur bis 400px Breite (Vollbild). Darueber
   — Handy quer, kleine Tablets — ragte der Dialog unten aus dem Bildschirm
   und war wegen der Scroll-Sperre nicht erreichbar. */
body.pn-feed .filter-backdrop.open {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
body.pn-feed .filter-overlay {
  max-height: calc(100vh - 5rem);
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-height: 520px) {
  body.pn-feed .filter-backdrop.open { padding-top: 0.75rem; }
  body.pn-feed .filter-overlay {
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
  }
}
@media (max-width: 400px) {
  body.pn-feed .filter-overlay {
    max-height: none;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Toast nicht unter die Pille legen */
body.pn-feed .pn-toast { bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px)); }

/* ══ Reduzierte Bewegung ═════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  body.pn-feed .submit-bubble,
  body.pn-feed .chat-bubble { transition: none; }
  body.pn-feed .chat-bubble:hover,
  body.pn-feed .chat-bubble:active,
  body.pn-feed .submit-bubble:active { transform: none; }
}
