/*
Theme Name: regenwald.info 2026 – Stockwerke
Theme URI: https://www.regenwald.info/
Author: Triplemind / Mathias Ziegler
Description: Visuelles Regenwald-Kompendium. Design „Stockwerke" – der Regenwald im Querschnitt (Überstand → Kronendach → Unterwuchs → Waldboden) als Leitmotiv und Navigation. Mobil-first, eigene Inline-SVG-Grafiken, GEO-Doc-Struktur.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: regenwald-info-2026
*/

/* ============================================================
   regenwald.info — „Stockwerke"
   Geschichtete, immersive Welt: der Regenwald im Querschnitt.
   Inhalt ist in <div class="rw"> gewrappt (header.php/footer.php).
   ============================================================ */

.rw *, .rw *::before, .rw *::after { box-sizing: border-box; }

.rw {
  /* Stockwerk-Palette: oben hell -> unten dunkel */
  --sky:    #bfe3ff;   /* Himmel / Überstand */
  --canopy: #2e7d4f;   /* Kronendach */
  --under:  #1c3b2a;   /* Unterwuchs */
  --floor:  #12241a;   /* Waldboden */
  --amber:  #f2a900;   /* Akzent */
  --amber-d:#c98600;

  /* heller Erd-/Waldboden-Bereich für die Inhalte */
  --earth:  #e8e0cf;
  --earth-2:#ded4bd;
  --paper:  #fbf8f0;
  --ink:    #14251b;
  --muted:  #5b6b57;
  --line:   #d6ccb4;
  --cream:  #f2f6ec;   /* helle Schrift auf dunklen Bändern */

  --rail: 2.75rem;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cond: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", "Liberation Sans Narrow", var(--sans);

  font-family: var(--sans);
  color: var(--ink);
  background: var(--earth);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.62;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

.rw img, .rw svg { max-width: 100%; }

/* ---- Basistypografie ---- */
.rw h1, .rw h2, .rw h3 { margin: 0; text-wrap: balance; line-height: 1.08; }
.rw p { margin: 0; }
.rw ul { margin: 0; padding: 0; list-style: none; }
.rw a { color: inherit; }

.rw .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Fokus ---- */
.rw a:focus-visible,
.rw button:focus-visible,
.rw input:focus-visible,
.rw label:focus-visible,
.rw .nav-toggle:focus-visible + .nav-btn {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Stockwerk-Label-Font: fett, kondensiert, gesperrt, versal */
.rw .cond {
  font-family: var(--cond);
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

/* ---- Skip-Link ---- */
.rw .skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--amber); color: var(--floor); font-weight: 700;
  padding: 10px 16px; border-radius: 8px; text-decoration: none;
  transition: top .18s ease;
}
.rw .skip:focus { top: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.rw .site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--floor);
  color: var(--cream);
  border-bottom: 1px solid rgba(242,169,0,.28);
}
.rw .head-bar {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 10px clamp(14px, 4vw, 28px);
}
.rw .brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--cream);
  margin-right: auto; min-height: 44px;
}
.rw .brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: 0 0 34px;
  color: var(--amber);
}
.rw .brand-name {
  font-family: var(--cond); font-stretch: condensed;
  text-transform: uppercase; letter-spacing: .10em;
  font-weight: 800; font-size: 1.24rem; line-height: 1;
}
.rw .brand-name .dot { color: var(--amber); }

/* Nav */
.rw .primary-nav ul {
  display: flex; flex-wrap: wrap; gap: 2px;
}
.rw .primary-nav a {
  display: flex; align-items: center; min-height: 44px;
  padding: 6px 12px; text-decoration: none; color: var(--cream);
  font-weight: 600; font-size: .95rem; border-radius: 8px;
  position: relative;
}
.rw .primary-nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 7px;
  height: 2px; background: var(--amber); transform: scaleX(0);
  transform-origin: left; transition: transform .2s ease;
}
.rw .primary-nav a:hover::after,
.rw .primary-nav a:focus-visible::after,
.rw .primary-nav .current-menu-item > a::after { transform: scaleX(1); }

/* Mobiler Menü-Toggle (CSS-only Checkbox) */
.rw .nav-toggle {
  position: absolute; opacity: 0; width: 1px; height: 1px;
  margin: 0; overflow: hidden;
}
.rw .nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; min-width: 44px; padding: 8px 12px;
  color: var(--cream); background: rgba(255,255,255,.06);
  border: 1px solid rgba(242,169,0,.4); border-radius: 10px;
  font-weight: 700; cursor: pointer; user-select: none;
}
.rw .nav-btn .ic-close { display: none; }
.rw .nav-toggle:checked ~ .nav-btn .ic-open { display: none; }
.rw .nav-toggle:checked ~ .nav-btn .ic-close { display: inline; }

@media (max-width: 819px) {
  .rw .primary-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--floor);
    border-bottom: 3px solid var(--amber);
    box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  }
  .rw .nav-toggle:checked ~ .primary-nav { display: block; }
  .rw .primary-nav ul { flex-direction: column; padding: 8px clamp(14px,4vw,28px) 16px; gap: 0; }
  .rw .primary-nav li { border-top: 1px solid rgba(255,255,255,.08); }
  .rw .primary-nav a { min-height: 52px; font-size: 1.02rem; }
  .rw .primary-nav a::after { display: none; }
}
@media (min-width: 820px) {
  .rw .nav-btn { display: none; }
  .rw .nav-toggle { display: none; }
  .rw .site-head { position: sticky; }
}

/* ============================================================
   HERO — vertikaler Querschnitt des Regenwaldes
   ============================================================ */
.rw .hero {
  position: relative;
  min-height: 620px;
  min-height: 88svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.1rem, 4vw, 2.4rem);
  padding-right: calc(clamp(1.1rem, 4vw, 2.4rem) + var(--rail));
  overflow: hidden;
  isolation: isolate;
}
.rw .strata {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column;
}
.rw .band { position: relative; flex: 1; overflow: hidden; }
.rw .band--emergent { background: linear-gradient(180deg, #d3ecff 0%, var(--sky) 62%, #a9d6c6 100%); }
.rw .band--canopy   { background: linear-gradient(180deg, #3a9a63 0%, var(--canopy) 55%, #276b43 100%); }
.rw .band--under    { background: linear-gradient(180deg, #234c37 0%, var(--under) 60%, #173124 100%); }
.rw .band--floor    { background: linear-gradient(180deg, #163024 0%, var(--floor) 55%, #0c1a12 100%); }

.rw .sil {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: auto; max-height: 100%; display: block;
}
.rw .sil--emergent { color: #204536; }
.rw .sil--canopy   { color: #16482e; }
.rw .sil--under    { color: #0f2418; }
.rw .sil--floor    { color: #081711; }
.rw .sun { position: absolute; top: 10%; right: 14%; width: 74px; height: 74px; color: #ffe39a; opacity: .9; }

.rw .strata-rail {
  position: absolute; top: 0; right: 0; bottom: 0; width: var(--rail);
  z-index: 4; display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.14);
}
.rw .strata-rail a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: .5em; text-decoration: none;
  writing-mode: vertical-rl; text-orientation: mixed;
  color: var(--cream);
  background: rgba(9,20,14,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--cond); font-stretch: condensed;
  text-transform: uppercase; letter-spacing: .16em; font-weight: 800;
  font-size: .82rem;
  transition: background .18s ease, color .18s ease;
}
.rw .strata-rail a:first-child { border-top: 0; }
.rw .strata-rail a::before {
  content: ""; width: 3px; border-radius: 3px; height: 26px;
  background: var(--amber); flex: 0 0 auto;
}
.rw .strata-rail a:hover,
.rw .strata-rail a:focus-visible { background: rgba(242,169,0,.9); color: var(--floor); }

.rw .hero-panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px;
  background: rgba(11,24,17,.56);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  padding: clamp(1.15rem, 4.4vw, 2rem);
  color: var(--cream);
  box-shadow: 0 26px 60px -26px rgba(0,0,0,.72);
}
.rw .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-stretch: condensed;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 800;
  font-size: .78rem; color: var(--amber); margin-bottom: .7rem;
}
.rw .hero-eyebrow svg { width: 16px; height: 16px; }
.rw .hero h1 {
  font-size: clamp(1.95rem, 7.4vw, 3.15rem);
  font-weight: 800; letter-spacing: -.01em;
  margin-bottom: .55rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.rw .hero-lead {
  font-size: clamp(1rem, 3.5vw, 1.16rem);
  color: #e5ecdf; max-width: 46ch; margin-bottom: 1.15rem;
}

.rw .hero-search { display: flex; gap: 8px; margin-bottom: .9rem; }
.rw .hero-search input {
  flex: 1 1 auto; min-width: 0; min-height: 48px;
  padding: 10px 14px; font-size: 1rem; color: var(--ink);
  background: #fbfaf5; border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
}
.rw .hero-search input::placeholder { color: #7c7a6f; }
.rw .hero-search button {
  flex: 0 0 auto; display: inline-grid; place-items: center;
  min-width: 48px; min-height: 48px; padding: 0 14px;
  background: var(--amber); color: var(--floor);
  border: 0; border-radius: 12px; cursor: pointer;
}
.rw .hero-search button svg { width: 22px; height: 22px; }

.rw .hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.rw .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 10px 20px; border-radius: 12px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, background .18s ease;
}
.rw .btn svg { width: 19px; height: 19px; }
.rw .btn-primary { background: var(--amber); color: var(--floor); }
.rw .btn-primary:hover { background: #ffbe1f; }
.rw .btn-ghost {
  background: rgba(255,255,255,.08); color: var(--cream);
  border-color: rgba(255,255,255,.4);
}
.rw .btn-ghost:hover { background: rgba(255,255,255,.16); }
.rw .btn:hover { transform: translateY(-1px); }

/* ============================================================
   SOIL — heller Inhaltsbereich (Erd-/Waldboden)
   ============================================================ */
.rw .soil { position: relative; background: var(--earth); }
.rw .soil::before {
  content: ""; display: block; height: 14px;
  background:
    linear-gradient(180deg, #0c1a12 0 3px, transparent 3px),
    repeating-linear-gradient(180deg, #cdbf9d 0 3px, #d9cdad 3px 6px, #c4b58d 6px 9px);
}
.rw .wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(14px, 4vw, 28px); }
.rw section { scroll-margin-top: 76px; }

.rw .sec-head { margin: clamp(2.2rem, 7vw, 3.4rem) 0 1.25rem; }
.rw .kicker {
  font-family: var(--cond); font-stretch: condensed;
  text-transform: uppercase; letter-spacing: .16em; font-weight: 800;
  font-size: .8rem; color: var(--amber-d); display: block; margin-bottom: .35rem;
}
.rw .sec-head h2 { font-size: clamp(1.55rem, 5.4vw, 2.15rem); font-weight: 800; }
.rw .sec-head p { color: var(--muted); max-width: 62ch; margin-top: .5rem; }

/* ---- Fakten-Leiste ---- */
.rw .facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: -6px;
}
.rw .stat {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 4px solid var(--amber); border-radius: 14px;
  padding: 16px 14px;
}
.rw .stat .num {
  font-family: var(--cond); font-stretch: condensed; font-weight: 800;
  font-size: clamp(1.7rem, 8vw, 2.5rem); line-height: 1; color: var(--floor);
  letter-spacing: .01em; display: block;
}
.rw .stat .lbl { display: block; margin-top: .4rem; font-size: .92rem; color: var(--muted); }

/* ---- Themen-Hubs / Karten-Raster (auch für Archive) ---- */
.rw .hubs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.rw .hub {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px; text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .18s ease, border-color .18s ease;
}
.rw .hub::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--canopy);
}
.rw .hub:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(20,37,27,.55); border-color: var(--canopy); }
.rw .hub-ic {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: #eef4ea; color: var(--canopy);
}
.rw .hub-ic svg { width: 26px; height: 26px; }
.rw .hub h3 {
  font-family: var(--cond); font-stretch: condensed; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.16rem; color: var(--floor); margin-bottom: .25rem;
}
.rw .hub p { color: var(--muted); font-size: .95rem; }
.rw .hub .more {
  display: inline-flex; align-items: center; gap: 5px; margin-top: .55rem;
  color: var(--amber-d); font-weight: 700; font-size: .9rem;
}
.rw .hub .more svg { width: 16px; height: 16px; }

/* ---- Karten mit Foto (Media-Karte) ---- */
.rw .hub--media { flex-direction: column; gap: 0; padding: 0; align-items: stretch; }
.rw .hub--media::before { display: none; }
.rw .hub-img { display: block; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: #eef4ea; }
.rw .hub-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.rw .hub--media:hover .hub-img img { transform: scale(1.045); }
.rw .hub--media .hub-ic {
  position: absolute; top: 12px; left: 12px; width: 38px; height: 38px; flex: none;
  background: rgba(255,255,255,.92); box-shadow: 0 4px 12px -4px rgba(20,37,27,.5); z-index: 2;
}
.rw .hub--media .hub-ic svg { width: 21px; height: 21px; }
.rw .hub--media > div { padding: 14px 16px 16px; }

/* ---- Steckbrief-/Seiten-Hero-Bild ---- */
.rw .entry figure img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 14px 30px -18px rgba(20,37,27,.5); }
.rw .entry figure figcaption { margin-top: .5rem; font-size: .85rem; color: var(--muted); text-align: center; }
/* In-Content-Bild (Flora/Fauna) */
.rw .entry .rw-figure { margin: 1.4rem 0; }
.rw .entry .rw-figure img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 14px 30px -18px rgba(20,37,27,.5); }
.rw .entry .rw-figure figcaption { margin-top: .5rem; font-size: .85rem; color: var(--muted); }

/* ---- Art-Steckbrief ---- */
.rw .profile {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
}
.rw .profile-head {
  background: linear-gradient(160deg, var(--under), var(--floor));
  color: var(--cream); padding: clamp(18px, 5vw, 26px);
  position: relative;
}
.rw .profile-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-stretch: condensed; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem;
  color: var(--amber); margin-bottom: .7rem;
}
.rw .profile-badge svg { width: 18px; height: 18px; }
.rw .profile-head h3 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); font-weight: 800; }
.rw .profile-head .lat { font-style: italic; color: #cfe0d3; font-weight: 400; }
.rw .profile-head .merk { margin-top: .7rem; color: #e4ecdf; max-width: 52ch; }
.rw .profile-jaguar { position: absolute; right: 14px; bottom: 8px; width: 108px; height: 74px; color: rgba(242,169,0,.22); }

.rw .profile-body { padding: clamp(14px, 4vw, 22px); }
.rw table.facts-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.rw table.facts-table th,
.rw table.facts-table td { text-align: left; padding: 12px 6px; vertical-align: top; border-bottom: 1px solid var(--line); }
.rw table.facts-table tr:last-child th,
.rw table.facts-table tr:last-child td { border-bottom: 0; }
.rw table.facts-table th {
  width: 44%; color: var(--floor); font-weight: 700;
  font-family: var(--cond); font-stretch: condensed;
  text-transform: uppercase; letter-spacing: .05em; font-size: .9rem;
}
.rw table.facts-table td { color: #3a473a; }

/* IUCN-Badge */
.rw .iucn { display:inline-block; padding:2px 10px; border-radius:999px; font-size:.82rem; font-weight:700; }
.rw .iucn--lc { background:#dff0dc; color:#1f6b34; }
.rw .iucn--nt { background:#fbf0cf; color:#8a6d12; }
.rw .iucn--vu { background:#fde8cf; color:#a5601a; }
.rw .iucn--en { background:#f9dccf; color:#9c3a1c; }
.rw .iucn--cr { background:#f6cfcf; color:#8f1f1f; }

/* ---- Antwortkapsel (GEO-Doc BLUF) ---- */
.rw .answer-capsule {
  background: #eef4ea; border-left: 4px solid var(--canopy);
  border-radius: 0 12px 12px 0; padding: 14px 16px; margin: 0 0 1.2rem;
  font-size: 1.05rem;
}
.rw .answer-capsule strong { color: var(--floor); }

/* ---- Fließtext-Content (Seiten/Steckbriefe) ---- */
.rw .entry { max-width: 74ch; }
.rw .entry h2 {
  font-size: clamp(1.35rem, 4.6vw, 1.7rem); font-weight: 800; color: var(--floor);
  margin: 2rem 0 .6rem;
}
.rw .entry h3 { font-size: 1.2rem; font-weight: 800; color: var(--floor); margin: 1.5rem 0 .5rem; }
.rw .entry p { margin: 0 0 1rem; }
.rw .entry ul, .rw .entry ol { margin: 0 0 1rem 1.2rem; padding: 0; list-style: revert; }
.rw .entry li { margin: .3rem 0; }
.rw .entry a { color: var(--amber-d); text-underline-offset: 2px; }
.rw .entry a:hover { color: var(--canopy); }
.rw .entry table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; }
.rw .entry th, .rw .entry td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.rw .entry figure { margin: 1.2rem 0; }
.rw .entry figcaption { font-size: .88rem; color: var(--muted); margin-top: .4rem; }

/* ---- FAQ / Fragenbox ---- */
.rw .faq { margin: 1.6rem 0; }
.rw .faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 16px; margin-bottom: 10px;
}
.rw .faq summary {
  cursor: pointer; padding: 14px 0; font-weight: 700; color: var(--floor);
  list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.rw .faq summary::-webkit-details-marker { display: none; }
.rw .faq summary::after { content: "+"; font-size: 1.4rem; color: var(--amber-d); flex: 0 0 auto; }
.rw .faq details[open] summary::after { content: "\2212"; }
.rw .faq details > p { padding: 0 0 14px; margin: 0; color: #3a473a; }

/* ---- Breadcrumb ---- */
.rw .breadcrumb { font-size: .86rem; color: var(--muted); margin: 1rem 0 .2rem; }
.rw .breadcrumb a { color: var(--amber-d); text-decoration: none; }
.rw .breadcrumb a:hover { text-decoration: underline; }

/* ---- Schutz-CTA (dunkles Band) ---- */
.rw .protect {
  margin-top: clamp(2.4rem, 7vw, 3.6rem);
  background: linear-gradient(160deg, var(--canopy) 0%, var(--under) 78%);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.rw .protect .wrap { padding-top: clamp(2.2rem, 7vw, 3.4rem); padding-bottom: clamp(2.2rem, 7vw, 3.4rem); position: relative; z-index: 1; }
.rw .protect-leaves { position: absolute; right: -20px; bottom: -20px; width: 220px; height: 220px; color: rgba(255,255,255,.06); z-index: 0; }
.rw .protect h2 { font-size: clamp(1.5rem, 6vw, 2.3rem); font-weight: 800; max-width: 20ch; }
.rw .protect p { margin-top: .7rem; color: #e7efe1; max-width: 52ch; }
.rw .protect .btn-primary { margin-top: 1.3rem; }

/* ============================================================
   FOOTER (Waldboden)
   ============================================================ */
.rw .site-foot { background: var(--floor); color: #cbd8cd; }
.rw .site-foot .wrap { padding-top: clamp(2rem, 6vw, 2.8rem); padding-bottom: 2rem; }
.rw .foot-top { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.rw .foot-brand .brand-name { color: var(--cream); font-size: 1.35rem; }
.rw .foot-brand p { margin-top: .6rem; color: #a9bcac; max-width: 34ch; }
.rw .foot-nav h4,
.rw .foot-legal h4 {
  font-family: var(--cond); font-stretch: condensed; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  color: var(--amber); margin: 0 0 .7rem;
}
.rw .foot-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.rw .foot-nav a, .rw .foot-legal a {
  display: inline-flex; align-items: center; min-height: 40px;
  color: #cbd8cd; text-decoration: none; font-size: .96rem;
}
.rw .foot-nav a:hover, .rw .foot-legal a:hover { color: var(--amber); }
.rw .foot-note {
  margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; color: #93a696; display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; align-items: baseline;
}
.rw .foot-note .src { color: #b7c8ba; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .rw .facts { grid-template-columns: repeat(4, 1fr); }
  .rw .foot-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 720px) {
  .rw .hubs { grid-template-columns: 1fr 1fr; }
  .rw .profile { grid-template-columns: 1fr 1fr; }
  .rw .profile-head { border-right: 1px solid rgba(255,255,255,.08); }
}
@media (min-width: 1024px) {
  .rw .hubs { grid-template-columns: repeat(3, 1fr); }
  .rw .hero h1 { max-width: 14ch; }
}

@media (prefers-reduced-motion: reduce) {
  .rw * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
