/* meteo365 v4 — Info-Hub & Unterseiten */

.info-shell {
  display: grid;
  /* minmax(0,1fr) ist PFLICHT, nicht Kosmetik: ein Grid-Track kann sich sonst
     nicht unter die Min-Content-Breite seines breitesten Items stauchen. Ein
     einziger breiter Abschnitt (z. B. der METAR-Decoder mit nowrap-Codezeile und
     Tabelle, min-content ~556px) blies damit die GANZE Seite auf und liess sie
     auf Handys seitlich ueberlaufen. Mit minmax(0,…) schrumpft der Track, und die
     inneren Scroll-Container (.ap-ex-tablewrap/.ap-ex-sample) uebernehmen. */
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0 60px;
}

/* Breadcrumb: Weg zurück zur /info/-Übersicht */
.info-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -14px;            /* Grid-Gap etwas kompensieren, näher an den Hero */
  font-size: 13px;
  color: var(--muted);
}
.info-breadcrumb a {
  color: var(--brand-deep);        /* Light: dunkel lesbar */
  font-weight: 600;
  text-decoration: none;
}
html[data-theme="dark"] .info-breadcrumb a { color: var(--brand-cyan); }  /* Blue: Türkis-Funke */
.info-breadcrumb a:hover { text-decoration: none; }
.info-breadcrumb-sep { opacity: .55; }
.info-breadcrumb-current { color: var(--text); }

/* Hero */
.info-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 36px 32px 32px;
  background:
    linear-gradient(135deg, #0a415d 0%, #0e6288 55%, #158dbd 100%),
    radial-gradient(circle at 22% 18%, rgba(244, 169, 50, .30), transparent 55%);
  color: #fff;
  box-shadow: var(--shadow);
}
.info-hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%);
  pointer-events: none;
}
.info-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
}
.info-hero .info-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  margin-bottom: 14px;
}
.info-hero p {
  margin: 14px 0 0;
  max-width: 760px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
}
.info-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.info-pill-primary {
  background: #fff;
  color: var(--brand-deep);
}
.info-pill-primary:hover { transform: translateY(-1px); }
.info-pill-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}
.info-pill-ghost:hover { background: rgba(255, 255, 255, .2); }

/* Section heading */
.info-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 -10px;
}
.info-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-deep);
}
.info-section-head .info-section-sub {
  font-size: 13px;
  color: var(--muted);
}

/* Card grid */
.info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 194, 227, .45);
  box-shadow: 0 14px 32px rgba(7, 37, 53, .14);
}
.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(104, 194, 227, .14), rgba(11, 79, 114, .14));
  color: var(--brand-deep);
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-deep);
}
.info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.info-card-tag {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-cyan);
}

/* Feature block ("Was uns ausmacht") */
.info-features {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 26px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.info-feature h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brand-deep);
}
.info-feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.info-feature-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

/* Data sources strip */
.info-sources {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.info-sources h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand-deep);
}
.info-sources p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.info-source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info-source-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--menu-card-bg, rgba(11, 79, 114, .06));
  border: 1px solid var(--menu-card-border, rgba(11, 79, 114, .12));
  color: var(--brand-deep);
}

/* Article-style sub pages (for /sobre, /modelos, ...) */
.info-article {
  padding: 30px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  line-height: 1.7;
  color: var(--text);
}
.info-article h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-size: 22px;
}
.info-article h3 {
  margin: 20px 0 8px;
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-size: 17px;
}
.info-article p { margin: 0 0 12px; }
.info-article ul { margin: 0 0 14px 20px; padding: 0; }
.info-article li + li { margin-top: 4px; }
.info-article details {
  margin: 14px 0;
  padding: 12px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.info-article details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-deep);
  list-style: none;
}
.info-article details summary::-webkit-details-marker { display: none; }
.info-article details summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  color: var(--brand-cyan);
  transition: transform var(--t) var(--ease);
}
.info-article details[open] summary::before { transform: rotate(90deg); }

/* ---------- Über uns / Story ---------- */

/* Hero-Variante mit Bild rechts */
.info-hero--split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}
.info-hero--split .info-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
}
.info-hero--split .info-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-hero--split .info-hero-media .info-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 16px;
}
@media (max-width: 820px) {
  .info-hero--split { grid-template-columns: 1fr; }
}

/* Bildunterschrift als dezentes Overlay unten */
.info-img-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 9px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
  pointer-events: none;
}

/* Story-Block: Text + Bild im Wechsel */
.info-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-story--reverse { direction: rtl; }
.info-story--reverse > * { direction: ltr; }

.info-story h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
}
html[data-theme="dark"] .info-story h2 { color: #a1daee; }  /* Lagune 200 im Blue-Modus */

/* Überschriften im Blue-Modus: Lagune 200 (#a1daee) statt dunklem --brand-deep,
   damit sie auf dem tiefen Grund lesbar sind. Light-Modus bleibt dunkel (unberührt). */
html[data-theme="dark"] .info-section-head h2,
html[data-theme="dark"] .info-value h3,
html[data-theme="dark"] .info-team-card h3 { color: #a1daee; }
/* Behörden-Titel bewusst im Türkis-Funke */
html[data-theme="dark"] .info-authorities-head h2 { color: var(--brand-cyan); }

/* /info/-Hub: Karten-, Feature- und Quellen-Elemente im Blue-Modus lesbar */
html[data-theme="dark"] .info-card h3,
html[data-theme="dark"] .info-feature h3,
html[data-theme="dark"] .info-sources h2 { color: #a1daee; }              /* Lagune 200 */
html[data-theme="dark"] .info-card-icon { color: var(--accent); }          /* Orange-Glyph */
html[data-theme="dark"] .info-source-chip { color: var(--text); }          /* helle Chip-Schrift */

/* Artikel-Unterseiten (Impressum, Datenschutz, Modelle-Texte …) im Blue-Modus */
html[data-theme="dark"] .info-article h2,
html[data-theme="dark"] .info-article h3 { color: #a1daee; }               /* Lagune 200 */
html[data-theme="dark"] .info-article details summary { color: var(--text); }
.info-story h2 .info-story-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  font-weight: 700;
  margin-bottom: 6px;
}
.info-story p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--text);
  font-size: 15px;
}
.info-story p:last-child { margin-bottom: 0; }

.info-story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(11, 79, 114, .08), rgba(104, 194, 227, .08));
  border: 1px dashed rgba(11, 79, 114, .25);
}
.info-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 18px;
  opacity: .55;
}
.info-img-placeholder svg { width: 36px; height: 36px; opacity: .7; }

@media (max-width: 820px) {
  .info-story { grid-template-columns: 1fr; padding: 22px; }
  .info-story--reverse { direction: ltr; }
}

/* Team-Cards (Maren + Thomas) */
.info-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.info-team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-team-portrait {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 79, 114, .14), rgba(104, 194, 227, .14));
  border: 1px dashed rgba(11, 79, 114, .25);
  position: relative;
}
.info-team-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.info-team-portrait .info-img-placeholder {
  font-size: 10px; padding: 8px;
}
.info-team-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand-deep);
}
.info-team-role {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 8px;
}
.info-team-bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.info-team-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  margin-top: 12px;
  border-radius: 50%;
  background: rgba(24, 119, 242, .12);
  border: 1px solid rgba(24, 119, 242, .28);
  color: #1877f2;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.info-team-social:hover {
  background: rgba(24, 119, 242, .2);
  transform: translateY(-1px);
}
.info-team-social svg { width: 18px; height: 18px; }
@media (max-width: 480px) {
  .info-team-card { grid-template-columns: 1fr; text-align: center; }
  .info-team-portrait { margin: 0 auto; }
}

/* Bilder-Strip "Hinter den Kulissen" */
.info-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
/* Behörden-/Testimonial-Panel */
.info-authorities {
  padding: 30px clamp(18px, 4vw, 44px) 34px;
  border-radius: 20px;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(104, 194, 227, .14), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.info-authorities-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.info-authorities-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.info-authorities-head h2 { margin: 0 0 8px; }
.info-authorities-sub {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.info-authorities-lead {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.info-authorities .info-gallery { margin-top: 24px; }

.info-quote {
  position: relative;
  margin: 26px auto 0;
  max-width: 800px;
  padding: 6px 16px 0;
  text-align: center;
}
.info-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px; line-height: .6;
  color: var(--accent);
  opacity: .55;
  margin-bottom: 4px;
}
.info-quote blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}
.info-quote figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}
.info-quote figcaption strong { color: var(--accent); font-style: normal; }
.info-gallery--duo {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .info-gallery--duo { grid-template-columns: 1fr; }
}
.info-gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 79, 114, .08), rgba(104, 194, 227, .08));
  border: 1px dashed rgba(11, 79, 114, .25);
  box-shadow: var(--shadow-soft);
}
.info-gallery-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.info-gallery-tile .info-gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 12px;
  font-size: 12px; color: #fff;
  background: linear-gradient(transparent, rgba(8, 52, 77, .72));
}

/* Values / Mission Liste */
.info-values {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.info-value {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-value-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(104, 194, 227, .16), rgba(244, 169, 50, .18));
  color: var(--brand-deep);
  margin-bottom: 10px;
}
html[data-theme="dark"] .info-value-icon { color: var(--accent); }  /* Orange-Glyph, gut sichtbar auf dunkler Karte */
.info-value-icon svg { width: 20px; height: 20px; }
.info-value h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brand-deep);
}
.info-value p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* Kontakt-CTA */
.info-cta {
  padding: 26px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #083145 0%, #0a415d 50%, #0e6288 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}
.info-cta h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 22px;
}
.info-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
}

/* ---------- Credo / Leuchtturm-Block ---------- */

.info-credo {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  padding: 40px 44px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 30%, rgba(244, 169, 50, .20), transparent 55%),
    linear-gradient(135deg, #083145 0%, #0a415d 55%, #0e6288 100%);
  box-shadow: var(--shadow);
}

.info-credo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 14% 22%, rgba(255,255,255,.45) 50%, transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 18%, rgba(255,255,255,.35) 50%, transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 64%, rgba(255,255,255,.3) 50%, transparent 60%),
    radial-gradient(1.5px 1.5px at 32% 78%, rgba(255,255,255,.3) 50%, transparent 60%);
  pointer-events: none;
}

.info-credo-mark {
  position: relative;
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Halo entfernt: kein Glow-Ring, kein Border, kein Lichtkegel */
}
.info-credo-mark::after {
  content: "\00AE";                 /* Trademark ® oben links am Logo */
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, .85);
  z-index: 3;
  pointer-events: none;
}
.info-credo-mark svg {
  width: 78%;
  height: 78%;
  position: relative;
  z-index: 2;
}
.info-credo-mark img {
  width: 78%;
  height: auto;
  position: relative;
  z-index: 2;
}

.info-credo-text {
  position: relative;
  z-index: 2;
}
.info-credo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-sun);
  margin-bottom: 14px;
}
.info-credo-text p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  max-width: 720px;
}
.info-credo-punch {
  margin: 18px 0 0 !important;
  font-family: var(--font-display);
  font-size: 22px !important;
  line-height: 1.35 !important;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: -.01em;
}
.info-credo-punch span {
  display: block;
  color: var(--brand-sun);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 820px) {
  .info-credo {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 26px;
    text-align: center;
  }
  .info-credo-mark { width: 150px; margin: 0 auto; }
  .info-credo-text p { margin-left: auto; margin-right: auto; }
}

/* ---------- Schema / Pipeline-Visualisierung ---------- */

.info-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  counter-reset: step;
}
.info-pipeline-step {
  position: relative;
  padding: 14px 18px 14px 14px;
  counter-increment: step;
}
.info-pipeline-step + .info-pipeline-step::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%;
  width: 16px; height: 2px;
  background: var(--brand-cyan);
  transform: translateY(-50%);
}
.info-pipeline-step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand-cyan);
  opacity: .7;
}
.info-pipeline-step h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--brand-deep);
}
.info-pipeline-step p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 720px) {
  .info-pipeline-step + .info-pipeline-step::before {
    left: 50%; top: -8px;
    width: 2px; height: 16px;
    transform: translateX(-50%);
  }
}

/* Kennzahlen-Strip */
.info-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.info-stat {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.info-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

@media (max-width: 720px) {
  .info-hero { padding: 26px 22px 24px; }
  .info-article { padding: 22px 20px; }
  .info-story { padding: 22px 20px; }
}

/* ===== Länderliste „Letzte Daten je Land" (/info/radar-nowcast/) =====
   Wie in der Kartenlegende: Ampel über den von 129 gemeldeten Zustand.
   Farben aus den Tokens, damit hell/dunkel automatisch mitgehen. */
.radar-src-head h3 { margin: 0 0 2px; font-size: 1.15rem; }
.radar-src {
  display: grid; gap: 8px; margin-top: 14px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.radar-src-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 10px; font-size: .93rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
}
.radar-src-land { font-weight: 600; }
.radar-src-time { font-variant-numeric: tabular-nums; white-space: nowrap; }
.radar-src-time em { font-style: normal; opacity: .6; font-size: .85em; margin-left: 4px; }
.radar-src-item.is-ok    .radar-src-time { color: var(--brand-cyan); }
.radar-src-item.is-stale .radar-src-time { color: var(--brand-sun); }
.radar-src-item.is-down  { opacity: .55; }
.radar-src-load { opacity: .7; font-size: .93rem; }
.radar-src-note { margin-top: 10px; font-size: .85rem; opacity: .7; }

/* Heller Grund: die weissen Schleier verschwinden dort, Markenblau uebernimmt. */
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .radar-src-item {
    background: rgba(14,98,136,.06); border-color: rgba(14,98,136,.18);
  }
  html:not([data-theme="dark"]) .radar-src-item.is-ok .radar-src-time { color: var(--brand-deep); }
}
