/* landing.css — Ergaenzungen zur gemeinsamen styles.css.
   Zwei Aufgaben:
   1. Das Angebotsformular in die Designsprache holen (Markup-Vertrag ist
      /scripts/offer-form.js, deshalb .form-field statt .field)
   2. Desktop / Tablet / Smartphone sauber durchdeklinieren
   ------------------------------------------------------------------ */

/* ── Schrumpfsperren loesen ──────────────────────────────────────────
   Grid- und Flex-Kinder haben min-width:auto und werden dadurch so breit
   wie ihr Inhalt — die Funktionen-Rail (2734 px) sprengte damit bis
   hinunter zum Smartphone die Seite. */
.inteq,
.inteq-grid,
.feat-pin-sticky > *,
.feat-rail-wrap { min-width: 0; }
.feat-rail-wrap { width: 100%; }

/* Die gestrichelten Verbindungslinien zwischen den Wegmarken werden von
   landing.js ein- und ausgeblendet — der Export hatte dafuer keinen Uebergang. */
#klassenfahrt line[data-stamp] { transition: opacity .35s ease; }

/* ── „In 3 Schritten": die drei Telefonbildschirme ───────────────────
   Die drei Screens liegen übereinander auf einer Bühne und werden
   übergeblendet. Ohne JS ist der dritte per class="aktiv" sichtbar —
   es bleibt also nie ein leeres Telefon stehen. */
.hiw-buehne {
  position: relative;
  flex: 1;
  min-height: 0;
}
.hiw-buehne > [data-hiw-screen] {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  /* visibility erst nach der Blende umschalten, sonst verschwindet der
     ausgehende Screen sofort statt auszublenden */
  transition: opacity .45s ease, visibility 0s linear .45s;
}
.hiw-buehne > [data-hiw-screen].aktiv {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .hiw-buehne > [data-hiw-screen] { transition: none; }
}

/* „Wie's geht" brach in der Nav-Pille auf zwei Zeilen um. */
.nav a.nav-link { white-space: nowrap; }

/* Folgefehler davon, gemeldet am 2026-09-03: „Schullizenz anfordern" ragte
   21 px rechts aus der Pille heraus.
   Ursache ist nicht der Knopf, sondern die Positionierung. `.nav` ist
   `position: fixed` mit `left: 50%`; damit steht der Breitenberechnung nur die
   **halbe** Fensterbreite zur Verfuegung (700 px bei 1400 px Fenster). Der
   Inhalt braucht mit den nowrap-Links 828 px. Die Pille wurde deshalb auf
   798 px gestaucht — und der Inhalt lief hinten heraus.
   Loesung: ueber `left/right: 0` das ganze Fenster als Rechenraum geben,
   Breite nach Inhalt, Zentrierung ueber `margin: auto`.
   Ausdruecklich erst ab 901 px, damit die mobile Regel weiter unten
   (`left: 10px; right: 10px`) unberuehrt bleibt — sie setzt keine Breite und
   wuerde von `width: max-content` sonst auf Inhaltsbreite zusammenfallen. */
@media (min-width: 901px) {
  .nav {
    left: 0;
    right: 0;
    transform: none;
    width: max-content;
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }
}

/* Folge davon: die Links wurden breiter, die Nav-Pille enger — und der Titel
   („SchulMessenger") wurde als Flex-Kind zusammengedrückt, bis sein Text über
   die Trennlinie hinausragte. Nicht schrumpfen lassen. Die 22 px rechts sind
   so gewählt, dass links und rechts der Linie gleich viel Luft steht
   (rechts: 8 px Nav-Abstand + 14 px Polsterung des ersten Links). */
.nav-logo {
  flex-shrink: 0;
  padding-right: 22px;
  margin-right: 0;
}

/* Gleich hohe Kacheln: Der Design-Export legt um jede Karte einen
   .reveal-Wrapper. Der Wrapper ist das Grid-Kind und wird gestreckt, die Karte
   darin nicht — deshalb standen die Kacheln unterschiedlich hoch nebeneinander. */
.why-grid > .reveal,
.sec-grid > .reveal,
.tile-row > .reveal { display: flex; }
.why-grid > .reveal > *,
.sec-grid > .reveal > *,
.tile-row > .reveal > * { flex: 1; }

/* Sprungziele: die Nav schwebt fest ueber der Seite. Ohne diesen Abstand
   verschwindet die Ueberschrift des angesprungenen Abschnitts darunter. */
section[id] { scroll-margin-top: 88px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 76px; } }

/* Wisch-Hinweis der Funktionen-Rail: nur auf Touch-Breiten (siehe unten) */
.hint-wisch { display: none; }

/* ── Integrations-Diagramm ───────────────────────────────────────────
   Die Verbindungslinien waren in --primary-200 bei 1,5 px kaum zu sehen.
   Jetzt kräftiger — und die Striche wandern, sodass sichtbar wird, wohin
   die Daten laufen: von IServ in den Messenger, von dort auf die Geräte. */
.inteq-svg path {
  stroke: var(--primary);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 3 12;
  opacity: .6;
  /* sonst verzerrt preserveAspectRatio="none" auch die Strichstärke */
  vector-effect: non-scaling-stroke;
  animation: inteq-fluss 1.6s linear infinite;
}
/* leicht versetzt, damit die Bahnen nicht im Gleichschritt laufen */
.inteq-svg path:nth-of-type(2) { animation-delay: -.5s; }
.inteq-svg path:nth-of-type(3) { animation-delay: -.9s; }
.inteq-svg path:nth-of-type(4) { animation-delay: -.3s; }
.inteq-svg path:nth-of-type(5) { animation-delay: -1.2s; }

@keyframes inteq-fluss {
  to { stroke-dashoffset: -15; }
}

/* Die Ringe um den Hub waren mit 1 px genauso blass wie die Linien */
.inteq-hub .core::before,
.inteq-hub .core::after {
  border-width: 2px;
}
.inteq-hub .core::before { opacity: .75; }

/* Der äußere Ring atmet ruhig mit */
.inteq-hub .core::after {
  animation: inteq-ring 3.4s ease-out infinite;
}
@keyframes inteq-ring {
  0%   { transform: scale(.9);  opacity: .55; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .inteq-svg path,
  .inteq-hub .core::after { animation: none; }
}

/* ── Integrations-Kachel "Ohne IServ" ────────────────────────────── */
.inteq-tile.server .logo {
  background: var(--lavender-200);
  color: var(--lav-ink);
}

/* ── Formular ────────────────────────────────────────────────────── */
.contact-form .form-intro {
  font-size: 14.5px;
  margin-bottom: 22px;
  color: var(--ink-mute);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field-wide { grid-column: 1 / -1; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  font: inherit;
  /* nie unter 16px: iOS zoomt sonst beim Fokus in das Feld hinein */
  font-size: 16px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--primary-50);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 88px; }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-100);
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select,
.form-field.has-error .radio-group,
.form-field.has-error .input-with-prefix {
  border-color: oklch(58% 0.17 25);
  background: oklch(97% 0.02 25);
}

/* Grund unter dem Feld, nicht nur eine rote Umrandung. Ergaenzt 2026-09-03,
   weil „Bitte das markierte Feld ausfuellen" auch bei einem ausgefuellten Feld
   mit falschem Format erschien. */
.form-field .field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: oklch(48% 0.17 25);
}

.form-section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  color: var(--ink);
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Checkbox- und Radio-Zeilen: grosszuegige Klickflaeche */
.checkbox-label,
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: pointer;
  padding: 9px 0;
  min-height: 44px;
}
/* Safari lässt nach einem Mausklick den Fokusring auf Häkchen und Auswahl
   stehen, bis man woanders hinklickt. Für die Maus weg — für die Tastatur
   bleibt er, sonst weiß niemand mehr, wo er beim Tabben ist. */
.checkbox-label input:focus:not(:focus-visible),
.radio-label input:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.checkbox-label input:focus-visible,
.radio-label input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.checkbox-label input,
.radio-label input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  accent-color: var(--primary);
  padding: 0;
}

/* <legend> sitzt von Haus aus AUF der Rahmenlinie und ist eingerückt — damit
   stand „Server-Infrastruktur" schief zu allen anderen Feldbeschriftungen.
   Deshalb trägt das Fieldset keinen Rahmen mehr; Kasten und Hintergrund sitzen
   auf der Gruppe darunter, die Beschriftung steht wie überall bündig darüber. */
.radio-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.radio-fieldset legend {
  display: block;
  float: left;          /* nimmt der legend ihre Sonderrolle im Rahmen */
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0;
  margin-bottom: 6px;
}
.radio-group {
  clear: both;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--primary-50);
  padding: 4px 16px 8px;
  transition: border-color .2s, background .2s;
}

.input-with-prefix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--primary-50);
  overflow: hidden;
}
.input-with-prefix:focus-within {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-100);
}
.input-with-prefix .input-prefix {
  display: flex;
  align-items: center;
  padding: 0 4px 0 14px;
  font-size: 15px;
  color: var(--ink-mute);
  white-space: nowrap;
}
.input-with-prefix input {
  border: none;
  background: transparent;
  border-radius: 0;
  padding-left: 2px;
}
.input-with-prefix input:focus { box-shadow: none; background: transparent; }

.field-hint {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0;
}

.form-optional-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
}

.form-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-actions .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0;
}
.form-note a { color: var(--primary); }

.form-status,
.form-status-top {
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  padding: 0;
}
.form-status:empty,
.form-status-top:empty { display: none; }
.form-status.success,
.form-status-top.success {
  padding: 12px 14px;
  background: var(--mint-50);
  border: 1px solid var(--mint-200);
  color: var(--mint-ink);
}
.form-status.error,
.form-status-top.error {
  padding: 12px 14px;
  background: oklch(96% 0.03 25);
  border: 1px solid oklch(85% 0.08 25);
  color: oklch(45% 0.15 25);
}
.form-status-top { margin-bottom: 20px; }

button[data-offer-submit][disabled] { opacity: .6; cursor: progress; }

/* ── Tablet ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-form { padding: 36px; }
  .contact-side { padding: 36px; }
}

/* ── Schmal: Formular einspaltig ─────────────────────────────────── */
@media (max-width: 720px) {
  .form-grid,
  .form-optional-block { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px 30px; }
  .contact-side { padding: 30px 20px; }
}

/* Auf breiten Schirmen laeuft das Formular lang; die blaue Spalte
   scrollt mit, statt als leere Flaeche danebenzustehen. */
@media (min-width: 821px) {
  .contact-side { align-items: start; }
  .contact-side > div:nth-child(3) {
    position: sticky !important;
    top: 96px;
  }
}

/* ══ Nav ══════════════════════════════════════════════════════════
   Die Pill braucht rund 790 px. styles.css schaltet erst bei 720 px
   auf Burger — dazwischen klebt sie an beiden Raendern. Deshalb hier
   derselbe Zustand schon ab 900 px. */
@media (max-width: 900px) {
  .nav {
    left: 10px;
    right: 10px;
    transform: none;
    padding: 6px 8px 6px 14px;
    justify-content: space-between;
  }
  .nav-logo { border-right: none; margin-right: 0; padding-right: 0; }
  .nav-logo .logo-img { width: 26px; height: 26px; }
  .nav-logo b { font-size: 15px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 16px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  /* 44 px Mindesthoehe: mit dem Daumen treffbar */
  .nav-menu .nav-link,
  .nav-menu .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    text-align: center;
  }
  .nav-menu .btn { margin-top: 6px; }
}

/* ══ Funktionen-Rail ══════════════════════════════════════════════
   Der gepinnte Horizontal-Scroll ist eine Desktop-Geste. Auf Tablet
   und Smartphone wird daraus eine normale Wischleiste. */
@media (max-width: 900px) {
  .feat-pin-section { height: auto !important; padding: clamp(72px, 10vw, 120px) 0; }
  .feat-pin-sticky { position: static; height: auto; overflow: visible; }
  .feat-rail-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .feat-rail { transform: none !important; padding: 8px 20px 20px; }
  .feat-card { scroll-snap-align: center; }
  /* Der Fortschrittsbalken gehoert zum gepinnten Scroll; auf Touch steht
     stattdessen der Wisch-Hinweis da. */
  .feat-controls .pgs { display: none; }
  .feat-controls { justify-content: center; }
  .hint-maus { display: none; }
  .hint-wisch {
    display: inline;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
}

/* Die gepinnte Funktionen-Sektion fuellt den Viewport ab Oberkante —
   ohne diesen Freiraum legt sich die schwebende Nav auf die Ueberschrift. */
@media (min-width: 901px) {
  .feat-pin-sticky {
    padding-top: 84px;
    /* Der Inhalt ist hoeher als der gepinnte Viewport; zentriert wuerde er
       oben unter der Nav herausragen. Von oben aufbauen und den unteren
       Rand knapp halten. */
    justify-content: flex-start;
    gap: 24px;
  }
  .feat-pin-sticky .section-head { margin-bottom: 0; }
}

/* ══ "In 3 Schritten im Lehrerzimmer" ═════════════════════════════
   Am Rechner klebt das Telefon neben den Schritten und tauscht dabei den
   Bildschirm. styles.css loest das Kleben unter 920 px auf — dann scrollt
   das Telefon aber weg, bevor Schritt 2 und 3 kommen, und vom Wechsel
   sieht man nichts. Also klebt es dort ebenfalls, nur kleiner. */
@media (max-width: 920px) {
  .hiw-sticky {
    position: sticky;
    top: 72px;
    height: auto;
    padding-bottom: 18px;
    z-index: 2;
    /* Deckt den durchscrollenden Text ab. Deckend statt Verlauf: der Abschnitt
       hat dieselbe Farbe, es entsteht also keine sichtbare Kante — mit Verlauf
       blitzten die Schritt-Überschriften unter dem Telefonrand durch. */
    background: var(--primary-50);
  }
  /* Das Telefon als Ganzes verkleinern statt schmaler machen: die drei
     Bildschirme sind fuer 320x660 gebaut, bei schmalerem Geraet wuerde
     ihr Inhalt unten abgeschnitten. zoom statt transform, weil es den
     Platzbedarf mitverkleinert — sonst ragt das Telefon in die Schritte. */
  .hiw-sticky > div { zoom: .68; }
  .hiw-steps { gap: 56px; padding: 10px 0 0; }
}

/* ══ Hero ═════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 104px; padding-bottom: 56px; }
  .hero-left { min-height: 0; gap: 22px; }
  .hero-right { height: auto; }
  /* Der Export positioniert das Phone absolut in einer 640-px-Spalte.
     Auf schmalen Schirmen wird daraus normaler Fluss. */
  .hero-right > div[style] {
    position: static !important;
    transform: none !important;
    height: auto !important;
    width: auto !important;
  }
  .hero-right .phone { margin-right: 0 !important; transform: none !important; }
}

@media (max-width: 900px) {
  /* Maus-Scroll-Hinweis: auf Touch ueberfluessig, ueberlagert dort das Phone */
  .hero-scrollhint { display: none !important; }
}

/* Die Szenen-Overlays (Standort-Karte, Push-Karten, Umfrage-Kachel) haengen
   im Entwurf absichtlich ueber den Bildrand hinaus. Auf dem Handy fehlt dafuer
   der Platz — dort nach innen holen. Die Selektoren greifen auf die
   Inline-Styles des Exports zu; die stehen so im gebauten index.html. */
@media (max-width: 600px) {
  [style*="position: absolute"][style*="left: -"],
  [style*="position: absolute"][style*="right: -"] {
    max-width: calc(100% - 12px) !important;
  }
  [style*="position: absolute"][style*="left: -"] { left: 6px !important; }
  [style*="position: absolute"][style*="right: -"] { right: 6px !important; }
  /* Diese Karte laege sonst unter der Standort-Kachel und waere halb
     abgeschnitten — ihre Aussage steht in der Kachel daneben. */
  #klassenfahrt [style*="left: -22px"] { display: none !important; }
}

@media (max-width: 600px) {
  .phone { --w: min(320px, 84vw); }
  /* Die schwebenden Bubbles ueberlappen auf kleinen Schirmen das Phone */
  .float-bubble { display: none; }
  .hero .container { padding-inline: 20px; }
}

/* ══ Typografie und Abstaende auf kleinen Schirmen ════════════════ */
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }

  /* Kein hyphens:auto — Chrome trennt ohne deutsches Woerterbuch falsch
     ("Schu-lkommunikation"). Die Ueberschriften bringen ihre eigenen
     weichen Trennstellen mit; break-word ist nur die Reissleine. */
  h1, h2, h3 { overflow-wrap: break-word; }

  h1 { font-size: clamp(30px, 8.4vw, 44px); }
  .hero-left h1 { font-size: clamp(30px, 8.2vw, 44px); }
  h2 { font-size: clamp(27px, 7.4vw, 40px); }
  h3 { font-size: clamp(19px, 5vw, 24px); }

  .lede { font-size: 16.5px; line-height: 1.55; }

  .section-pad { padding: clamp(64px, 14vw, 110px) 0; }
  .section-pad-sm { padding: clamp(52px, 11vw, 84px) 0; }
  .section-head { margin-bottom: 34px; gap: 14px; }

  .btn { padding: 13px 20px; }
  .hero-left .ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* Dekor-Elemente (gedrehte Kacheln, Blobs) haengen bewusst ueber den Rand
   hinaus. Auf schmalen Schirmen wird daraus ein Ueberlauf — hier abschneiden.
   clip statt hidden, damit position:sticky weiter funktioniert. */
@media (max-width: 900px) {
  section { overflow-x: clip; }
}

/* Die vier Datenschutz-Kacheln stehen bei 375 px in zwei Spalten von rund
   130 px — da bricht jedes zweite Wort um. Untereinander liest sich das. */
@media (max-width: 560px) {
  .sec-grid { grid-template-columns: 1fr; gap: 12px; }
  .sec-tile { padding: 18px 20px; }
  .sec-tile .ic { margin-bottom: 10px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stat-row { gap: 22px; }
}

/* ══ KI-Kennzeichnung der beiden Szenenfotos ══════════════════════
   Art. 50 KI-VO verlangt seit dem 02.08.2026 eine erkennbare
   Kennzeichnung KI-erzeugter Inhalte. Das Zeichen ist das offizielle
   Symbol der EU-Kommission; Form und Masse der Pille sind von der
   Nachbar-Pille „Zugestellt · 487 Empfaenger" uebernommen, damit die
   Kennzeichnung nicht wie ein Fremdkoerper im Bild sitzt.
   `.ki-traeger` ist der Bildcontainer — beim Klassenfahrt-Bild fehlt
   ihm der Bezugspunkt, deshalb steht er hier und nicht nur inline. */
.ki-traeger { position: relative; }

.ki-label {
  position: absolute;
  z-index: 2;                 /* der Schneefall liegt im Markup darueber */
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink);
}

.ki-label img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* Die freie Ecke ist je Bild eine andere. Klassenfahrt: oben links.
   Schneebild: oben rechts — links sitzt die Zustell-Pille, unten links die
   Antwortkarten, unten rechts die Zustellzeit-Kachel, und die dunkle
   Push-Karte beginnt erst bei 18 % der Hoehe. */
.ki-label--ol { left: 14px; top: 14px; }
.ki-label--or { right: 14px; top: 14px; }

@media (max-width: 600px) {
  .ki-label { padding: 4px 9px 4px 5px; font-size: 10px; gap: 5px; }
  .ki-label img { width: 17px; height: 17px; }
  .ki-label--ol { left: 10px; top: 10px; }
  /* Schmal wird es oben rechts eng neben der Zustell-Pille — dort rutscht
     das Zeichen unter sie in die zweite Reihe. */
  .ki-label--or { right: auto; left: 10px; top: 46px; }
}
