
  :root {
    --bg: #ffffff;
    --bg-alt: #f2f2f2;
    --ink: #0a0a0a;
    --ink-2: #3d3d3d;
    --ink-3: #6a6a6a;
    --ink-4: #9a9a9a;
    --rule: #d8d8d8;
    --rule-soft: #eaeaea;
    --primary: #004b87;
    --primary-dark: #00355e;
    --accent: #c8952d;
    --neg: #9b1c1c;
    --flag-black: #000000;
    --flag-red: #dd0000;
    --flag-gold: #c8952d;
    --hero-gold: #e2be6b;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--primary); }
  a:hover { color: var(--primary-dark); }

  .utility-bar {
    background: var(--ink);
    color: #e8e8e8;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }
  .utility-bar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 1.5rem; }
  .utility-bar a { color: #e8e8e8; text-decoration: none; margin-left: 1.2rem; }
  .utility-bar a:hover { text-decoration: underline; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

  .masthead { background: var(--bg); border-bottom: 1px solid var(--rule); }
  .masthead-inner { padding: 1.25rem 0 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .masthead-inner .wordmark-block { min-width: 0; flex: 1 1 240px; }
  .masthead-inner .live-band {
    flex: 0 1 auto;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 0;
    display: flex;
    gap: 0;
    margin: 0;
    align-items: stretch;
  }
  .masthead-inner .live-band .live-item {
    padding: 0.55rem 0.95rem;
    border-right: 1px solid var(--rule);
    min-width: 120px;
  }
  .masthead-inner .live-band .live-item:last-child { border-right: none; }
  .masthead-inner .live-band .live-item .lbl {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
    color: var(--ink-3);
  }
  .masthead-inner .live-band .live-item strong {
    font-size: 1.05rem;
    margin-top: 0.05rem;
    line-height: 1.1;
    color: var(--ink);
  }
  .masthead-inner .live-band .live-item strong.neg { color: var(--neg); }
  .masthead-inner .live-band .live-item .sub {
    font-size: 0.65rem;
    color: var(--ink-3);
  }
  .masthead-inner .live-band .live-pill {
    font-size: 0.52rem;
    padding: 0.08rem 0.35rem;
    margin-left: 0.35rem;
  }
  .masthead-inner .live-band .live-item .sub .delta { font-size: 0.8rem; margin-left: 0.4rem; }
  @media (max-width: 960px) {
    .masthead-inner { gap: 0.85rem 1rem; padding: 1rem 0 0; align-items: flex-start; }
    .masthead-logo { margin-top: 0.2rem; }
    .masthead-inner .live-band {
      flex: 1 1 100%;
      background: var(--bg-alt);
      border-radius: 0;
      border-left: none;
      border-right: none;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      padding: 0;
      margin-left: calc(-1.5rem);
      margin-right: calc(-1.5rem);
      width: calc(100% + 3rem);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .masthead-inner .live-band .live-item {
      padding: 0.85rem 1rem;
      min-width: 0;
      border-right: 1px solid var(--rule);
    }
    .masthead-inner .live-band .live-item:last-child { border-right: none; }
    .masthead-inner .live-band .live-item .lbl {
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .masthead-inner .live-band .live-item strong { font-size: 1.2rem; margin-top: 0.2rem; }
    .masthead-inner .live-band .live-item .sub {
      font-size: 0.7rem;
      color: var(--ink-3);
      margin-top: 0.15rem;
    }
    .masthead-inner .live-band .live-item .sub .delta {
      display: block;
      margin-left: 0;
      margin-top: 0.15rem;
      font-size: 0.88rem;
    }
  }
  @media (max-width: 540px) {
    .masthead-inner .live-band {
      grid-template-columns: 1fr;
    }
    .masthead-inner .live-band .live-item {
      border-right: none;
      border-bottom: 1px solid var(--rule);
      padding: 0.75rem 1rem;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      gap: 0.1rem 0.75rem;
      align-items: baseline;
    }
    .masthead-inner .live-band .live-item:last-child { border-bottom: none; }
    .masthead-inner .live-band .live-item .lbl {
      grid-column: 1; grid-row: 1;
      font-size: 0.66rem;
    }
    .masthead-inner .live-band .live-item strong {
      grid-column: 2; grid-row: 1 / span 2;
      font-size: 1.3rem;
      text-align: right;
      margin-top: 0;
      align-self: center;
    }
    .masthead-inner .live-band .live-item .sub {
      grid-column: 1; grid-row: 2;
      font-size: 0.72rem;
      margin-top: 0;
    }
    .masthead-inner .live-band .live-item .sub .delta {
      display: inline-block;
      margin-left: 0.5rem;
      margin-top: 0;
      font-size: 0.78rem;
    }
  }
  .emblem { flex-shrink: 0; width: 68px; height: 82px; }
  .wordmark-block { flex: 1; }
  .wordmark {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .wordmark .tld { color: var(--ink-3); font-weight: 500; }
  .subline {
    color: var(--ink-2);
    font-size: 0.95rem;
    margin-top: 0.35rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @media (max-width: 720px) {
    .subline { white-space: normal; font-size: 0.82rem; line-height: 1.35; margin-top: 0.25rem; }
  }
  .flag-stripe { height: 4px; background: var(--flag-gold); }
  .flag-stripe span { display: none; }

  .breadcrumb {
    background: var(--bg-alt);
    font-size: 0.83rem;
    color: var(--ink-3);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .breadcrumb a { color: var(--ink-2); text-decoration: none; }
  .breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
  .breadcrumb .sep { color: var(--ink-4); margin: 0 0.5rem; }

  .hero-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--hero-gold);
    color: var(--ink);
    border-bottom: 4px solid var(--ink);
    margin-bottom: 3rem;
  }
  .doc-header { padding: 2.5rem 0 2rem; }
  .hero-full .doc-header { max-width: 880px; }
  .hero-full h1.doc-title { color: var(--ink); max-width: 880px; }
  .hero-full .doc-lede { color: var(--ink); max-width: 880px; font-size: 1.15rem; line-height: 1.65; opacity: 0.9; }
  .hero-full .doc-meta { color: var(--ink); max-width: 880px; }
  .hero-full .doc-meta .item strong { color: var(--ink); }
  .hero-full .doc-meta .item span { color: var(--ink); opacity: 0.7; }
  .doc-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.8rem;
  }
  h1.doc-title {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 2.85rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.8rem;
    max-width: 880px;
  }
  .doc-lede {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.1rem;
    color: var(--ink-2);
    max-width: 760px;
    line-height: 1.55;
  }
  .doc-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--ink-2);
    margin-top: 1.5rem;
  }
  .doc-meta .item { display: flex; flex-direction: column; }
  .doc-meta .item strong { font-weight: 700; color: var(--ink); font-size: 0.95rem; font-variant-numeric: tabular-nums; }
  .doc-meta .item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 600; margin-bottom: 0.15rem; }

  .layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
  @media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; gap: 1.5rem; }
    aside.sidenav { position: static !important; }
  }
  aside.sidenav {
    position: sticky;
    top: 1rem;
    font-size: 0.92rem;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
  }
  aside.sidenav h2 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-3);
    margin-bottom: 0.85rem;
    font-weight: 700;
  }
  aside.sidenav ol { list-style: none; counter-reset: nav; }
  aside.sidenav li {
    counter-increment: nav;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  aside.sidenav li:last-child { border-bottom: none; }
  aside.sidenav li a {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    gap: 0.6rem;
    line-height: 1.3;
  }
  aside.sidenav li a::before {
    content: counter(nav, upper-roman) ".";
    color: var(--accent);
    font-weight: 700;
    min-width: 1.8rem;
    flex-shrink: 0;
  }
  aside.sidenav li a:hover { color: var(--primary); }

  section.sec { margin-bottom: 3.5rem; scroll-margin-top: 70px; }
  .sec-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: inline-block;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.2rem;
  }
  h2.sec-title {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.7rem);
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .sec-lede {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.03rem;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 1.5rem;
    max-width: 680px;
  }

  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border: 1px solid var(--rule);
  }
  .kpi { padding: 1.1rem 1.25rem; border-right: 1px solid var(--rule); }
  .kpi:last-child { border-right: none; }
  @media (max-width: 780px) {
    .kpi { border-right: none; border-bottom: 1px solid var(--rule); }
    .kpi:last-child { border-bottom: none; }
  }
  .kpi .lbl {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 700;
    margin-bottom: 0.45rem;
  }
  .kpi .val {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .kpi .val.neg { color: var(--neg); }
  .kpi .val.acc { color: var(--primary); }
  .kpi .sub { font-size: 0.78rem; color: var(--ink-3); margin-top: 0.3rem; }

  .figure { border: 1px solid var(--rule); }
  .figure-head { padding: 1.1rem 1.35rem; background: var(--bg-alt); border-bottom: 1px solid var(--rule); }
  .figure-caption { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
  .figure-caption .ref { color: var(--primary); font-weight: 800; margin-right: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem; }
  .figure-sub { font-size: 0.82rem; color: var(--ink-2); margin-top: 0.25rem; }
  .figure-body { padding: 1.35rem; }
  .chart-ctl {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border: 1px solid var(--rule);
    background: var(--bg);
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .chart-ctl button {
    background: transparent;
    color: var(--ink-2);
    border: none;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
    border-right: 1px solid var(--rule);
    font-weight: 500;
  }
  .chart-ctl button:last-child { border-right: none; }
  .chart-ctl button:hover { background: var(--bg-alt); color: var(--ink); }
  .chart-ctl button.active { background: var(--primary); color: #fff; }
  .chart-box { position: relative; height: 420px; }
  .figure-foot {
    padding: 0.8rem 1.35rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--rule);
    font-size: 0.78rem;
    color: var(--ink-3);
  }

  .tabs { display: flex; gap: 0; border-bottom: 1px solid var(--rule); flex-wrap: wrap; }
  .tabs button {
    background: var(--bg-alt);
    color: var(--ink-2);
    border: 1px solid var(--rule);
    border-bottom: none;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    margin-right: -1px;
    margin-bottom: -1px;
    font-weight: 500;
  }
  .tabs button:hover { color: var(--ink); background: #ededed; }
  .tabs button.active {
    background: var(--bg);
    color: var(--primary);
    font-weight: 700;
    border-bottom: 1px solid var(--bg);
    position: relative;
    z-index: 1;
  }
  .table-wrap { border: 1px solid var(--rule); border-top: none; }
  .tbl-head { padding: 1rem 1.35rem 0.8rem; border-bottom: 1px solid var(--rule); }
  .tbl-head .caption { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
  .tbl-head .caption .ref { color: var(--primary); font-weight: 800; margin-right: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem; }
  .tbl-head .sub { font-size: 0.8rem; color: var(--ink-3); margin-top: 0.2rem; }
  table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
  thead tr { background: var(--bg-alt); }
  th, td { padding: 0.7rem 1.1rem; text-align: left; }
  th {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 700;
    border-bottom: 2px solid var(--ink-2);
  }
  tbody tr { border-bottom: 1px solid var(--rule-soft); }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: #fafafa; }
  td.rank { color: var(--ink-3); width: 32px; font-family: "Libre Franklin", sans-serif; font-size: 0.82rem; }
  td.num { font-family: "Libre Franklin", sans-serif; font-variant-numeric: tabular-nums; text-align: right; }
  td.pct { font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; font-size: 0.98rem; }
  td.pct.neg { color: var(--neg); }
  td.date { font-family: "Libre Franklin", sans-serif; font-size: 0.84rem; color: var(--ink); }
  th.right, td.right { text-align: right; }
  .tbl-foot {
    padding: 0.7rem 1.35rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--rule);
    font-size: 0.75rem;
    color: var(--ink-3);
  }

  .events { border: 1px solid var(--rule); }
  .event {
    padding: 1.35rem;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
  }
  .event:last-child { border-bottom: none; }
  @media (max-width: 640px) {
    .event { grid-template-columns: 1fr; gap: 0.5rem; }
  }
  .event-meta .date-block {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
  }
  .event-meta .magnitude {
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neg);
    font-variant-numeric: tabular-nums;
    margin-top: 0.4rem;
    letter-spacing: -0.01em;
  }
  .event-meta .window {
    font-size: 0.72rem;
    color: var(--ink-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    font-weight: 600;
  }
  .event h3 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 0.5rem;
    color: var(--ink);
    line-height: 1.3;
  }
  .event p {
    font-family: "Source Serif 4", Georgia, serif;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.65;
  }
  .event .fn { color: var(--primary); font-size: 0.72rem; vertical-align: super; font-weight: 700; text-decoration: none; }

  .footnotes {
    font-size: 0.85rem;
    color: var(--ink-2);
    line-height: 1.6;
    margin-top: 1.5rem;
    padding: 1.1rem 1.35rem;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
  }
  .footnotes h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }
  .footnotes ol { list-style: none; counter-reset: fn; padding: 0; }
  .footnotes li { counter-increment: fn; padding-left: 1.6rem; position: relative; margin-bottom: 0.35rem; }
  .footnotes li::before {
    content: counter(fn);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.72rem;
  }

  .method {
    border: 1px solid var(--rule);
    padding: 1.5rem 1.75rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ink);
  }
  .method h3 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem;
  }
  .method h3:first-child { margin-top: 0; }
  .method p + p { margin-top: 0.7rem; }
  .method ul { margin: 0.5rem 0 0 1.5rem; font-size: 0.95rem; }
  .method li { margin-bottom: 0.3rem; }
  .method .mono { font-family: "Libre Franklin", sans-serif; font-size: 0.88rem; background: var(--bg-alt); padding: 0.05rem 0.4rem; border-radius: 2px; }
  .method .note {
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.86rem;
    color: var(--ink-2);
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    margin-top: 1rem;
  }

  footer.ministry-footer {
    background: var(--ink);
    color: #d0d0d0;
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  @media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
  @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-grid h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 0.9rem;
    font-weight: 700;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { margin-bottom: 0.45rem; }
  .footer-grid a { color: #d0d0d0; text-decoration: none; }
  .footer-grid a:hover { color: #fff; text-decoration: underline; }
  .footer-org p { color: #a8a8a8; font-size: 0.82rem; }
  .footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.78rem;
    color: #909090;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom a { color: #b0b0b0; text-decoration: none; }
  .footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ==================== Article / Dossier layout ==================== */
.article-hero { padding: 2.5rem 0 2rem; border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem; }
.article-magnitude {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.75rem;
  background: #ffffff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--neg);
  overflow: hidden;
}
.article-magnitude .big {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--neg);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  line-height: 0.95;
  padding: 1.5rem 2rem 1.5rem 1.75rem;
  border-right: 1px solid var(--rule);
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  position: relative;
}
.article-magnitude .big::before {
  content: "Verlust";
  position: absolute;
  top: 0.55rem; left: 1.75rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.article-magnitude .details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0;
  padding: 0;
}
.article-magnitude .details .item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--rule-soft);
}
.article-magnitude .details .item:last-child { border-right: none; }
.article-magnitude .details .k {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 700;
  order: -1;
  display: block;
}
.article-magnitude .details strong {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
@media (max-width: 720px) {
  .article-magnitude {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-magnitude .big {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 2.2rem 1.25rem 1.25rem;
    justify-content: center;
  }
  .article-magnitude .details {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-magnitude .details .item {
    border-right: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
  }
  .article-magnitude .details .item:nth-child(2n) { border-right: none; }
}

.prose {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem; line-height: 1.75; color: var(--ink);
}
.prose h2.sec-title { font-family: "Libre Franklin", sans-serif; font-size: 1.45rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h2.sec-title:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose p + p { margin-top: 0; }
.prose a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.prose a:hover { color: var(--primary-dark); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem; color: var(--ink-2); background: var(--bg-alt);
  margin: 1.25rem 0;
}
.prose ul { margin: 0.5rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose .inline-num { font-family: "Libre Franklin", sans-serif; font-size: 0.95em; font-variant-numeric: tabular-nums; }

.return-link {
  display: inline-block; margin-top: 2.5rem; padding: 0.6rem 1.1rem;
  background: var(--bg-alt); border: 1px solid var(--rule);
  color: var(--ink); font-family: "Libre Franklin", sans-serif;
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
}
.return-link:hover { background: var(--rule-soft); color: var(--primary); }
.return-link::before { content: "\2190  "; color: var(--primary); }

.mini-chart-box { position: relative; height: 260px; }

.source-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.92rem;
  counter-reset: src;
}
.source-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.4rem;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.55;
  color: var(--ink-2);
}
.source-list li:last-child { border-bottom: none; }
.source-list li::before {
  content: counter(src, decimal-leading-zero);
  counter-increment: src;
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.9rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.source-list em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.source-list a {
  color: var(--primary);
  overflow-wrap: anywhere;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 75, 135, 0.25);
}
.source-list a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.event h3 a:hover { color: var(--primary) !important; }
.event-link {
  display: inline-block; margin-top: 1rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--primary); text-decoration: none;
  border-bottom: 2px solid var(--primary); padding-bottom: 2px;
  letter-spacing: 0.01em;
}
.event-link:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

/* ==================== Horizontal section nav ==================== */
.section-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  margin-top: -3rem;
  margin-bottom: 3rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.section-nav ul, .section-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}
.section-nav li {
  border-right: 1px solid var(--rule);
}
.section-nav li:first-child { border-left: 1px solid var(--rule); }
.section-nav a {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: background 0.15s, color 0.15s;
}
.section-nav a:hover { background: var(--bg-alt); color: var(--primary); }
.section-nav .active a { color: var(--primary); background: var(--bg-alt); }

.layout-single { display: block; }
.layout-single main { max-width: 100%; }

/* Burger trigger (hidden on desktop) */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--rule);
}
.nav-burger[aria-expanded="true"] { border-bottom-color: var(--primary); color: var(--primary); }
.nav-burger .burger-label { display: flex; align-items: center; gap: 0.6rem; }
.nav-burger .burger-icon {
  display: inline-block; width: 20px; height: 14px; position: relative;
}
.nav-burger .burger-icon::before,
.nav-burger .burger-icon::after,
.nav-burger .burger-icon span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.15s;
}
.nav-burger .burger-icon::before { top: 0; }
.nav-burger .burger-icon span { top: 6px; }
.nav-burger .burger-icon::after { top: 12px; }
.nav-burger[aria-expanded="true"] .burger-icon::before { top: 6px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-icon::after { top: 6px; transform: rotate(-45deg); }
.nav-burger[aria-expanded="true"] .burger-icon span { opacity: 0; }
.nav-burger .chev { font-size: 0.75rem; color: var(--ink-3); font-weight: 500; }

@media (max-width: 820px) {
  .section-nav { position: sticky; margin-top: 0; }
  .section-nav .wrap { padding: 0; }
  .nav-burger { display: flex; }
  .section-nav ul, .section-nav ol {
    flex-direction: column;
    display: none;
    border-top: 1px solid var(--rule-soft);
    background: #fff;
  }
  .section-nav[data-open="true"] ul,
  .section-nav[data-open="true"] ol { display: flex; }
  .section-nav li { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .section-nav li:first-child { border-left: none; border-top: none; }
  .section-nav li:last-child { border-bottom: none; }
  .section-nav a { padding: 0.85rem 1.1rem; display: block; }
}

/* ==================== Live data band ==================== */
.live-band {
  background: #0a0a0a;
  color: #f2f2f2;
  border-bottom: 1px solid var(--ink);
}
.live-band .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 1.5rem;
}
.live-item {
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.live-item:first-child { padding-left: 0; }
.live-item:last-child { border-right: none; padding-right: 0; }
.live-item .lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  font-weight: 700;
}
.live-item strong {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 0.1rem;
}
.live-item strong.neg { color: #ff6b70; }
.live-item .sub { font-size: 0.72rem; color: #707070; }
@media (max-width: 720px) {
  .live-band .wrap { grid-template-columns: 1fr; padding: 0 0.9rem; }
  .live-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.85rem 0; }
  .live-item:last-child { border-bottom: none; }
  .live-item strong { font-size: 1.25rem; }
  .live-item .sub { font-size: 0.82rem; }
  .live-item .lbl { font-size: 0.72rem; }
}

/* ==================== Live indicator ==================== */
.live-pill {
  display: inline-block;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #30d36a;
  padding: 0.1rem 0.45rem;
  margin-left: 0.55rem;
  border-radius: 2px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.live-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 50%;
  margin-right: 0.35rem;
  animation: live-blink 1.2s ease-in-out infinite;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.live-item strong.pulse {
  animation: live-pulse 0.7s ease-out;
}
@keyframes live-pulse {
  0%   { color: var(--flag-gold); }
  60%  { color: #ffe98a; }
  100% { color: #ffffff; }
}
.live-item strong.pos { color: #30d36a; }

.live-item .sub .delta {
  display: inline-block;
  margin-left: 0.7rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.live-item .sub .delta.neg { color: #ff6b70; }
.live-item .sub .delta.pos { color: #30d36a; }


/* ==================== Tab transitions ==================== */
#drops-body { animation: fadein 220ms ease; }
@keyframes fadein {
  from { opacity: 0.2; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== Scrollspy active ==================== */
.section-nav li.active a { color: var(--primary); background: var(--bg-alt); }

/* ==================== Author block ==================== */
.author-block {
  border: 1px solid var(--rule);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: #fafafa;
  margin: 2rem 0 1.5rem;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #c8952d 0%, #8a6712 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
}
.author-text { font-size: 0.9rem; line-height: 1.5; color: var(--ink-2); }
.author-text strong { color: var(--ink); font-size: 0.95rem; display: block; font-weight: 700; }
.author-text .meta { font-size: 0.8rem; color: var(--ink-3); margin-top: 0.25rem; }
.author-text a { color: var(--primary); text-decoration: none; border-bottom: 1px solid var(--primary); }

/* ==================== Update badge ==================== */
.update-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #1f5a2f; background: #e6f4ec; padding: 0.25rem 0.55rem; border-radius: 2px;
  vertical-align: middle; margin-left: 0.5rem;
}
.update-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #30a46c;
}

/* ==================== Utility bar mobile ==================== */
@media (max-width: 600px) {
  .utility-bar .wrap { flex-direction: column; align-items: flex-start; gap: 0.15rem; padding: 0.5rem 0.9rem; }
  .utility-bar a { margin-left: 0; margin-right: 0.9rem; }
}

/* ==================== Clickable KPI ==================== */
a.kpi-link { color: inherit; text-decoration: none; display: block; }
a.kpi-link .kpi { transition: background 0.15s; cursor: pointer; }
a.kpi-link .kpi:hover { background: var(--bg-alt); }

/* ==================== Clickable event card ==================== */
a.event-card { color: inherit; text-decoration: none; display: block; border-bottom: 1px solid var(--rule); }
a.event-card:last-child { border-bottom: none; }
a.event-card:hover .event { background: #fafafa; }
a.event-card .event { border-bottom: none; transition: background 0.15s; }

/* ==================== Glossary ==================== */
.glossary {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0.5rem;
}
.glossary details {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--rule);
  transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}
.glossary details[open] {
  border-left-color: var(--accent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.04);
}
.glossary details:hover:not([open]) {
  border-left-color: var(--ink-3);
  background: #fafafa;
}
.glossary summary {
  padding: 1rem 1.25rem 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  user-select: none;
}
.glossary summary::-webkit-details-marker,
.glossary summary::marker { display: none; }
.glossary summary .g-term {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.glossary summary .g-kicker {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}
.glossary summary .g-title {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.glossary summary .g-chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  background: #fff;
  transition: transform 0.25s ease, background 0.15s, color 0.15s, border-color 0.15s;
  margin-top: 0.1rem;
}
.glossary summary .g-chevron svg { width: 12px; height: 12px; display: block; }
.glossary details[open] summary .g-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.glossary .body {
  padding: 0 1.25rem 1.1rem 1.25rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-2);
  border-top: 1px solid var(--rule-soft);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
}
.glossary .body strong { color: var(--ink); }

/* ==================== Related dossiers ==================== */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--rule);
  background: #fafafa;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: border-color 0.15s, background 0.15s;
}
.related-card:hover {
  border-color: var(--primary);
  background: #fff;
}
.related-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.related-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.related-mag {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.9rem;
  color: var(--neg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ==================== Top stripe (replaces utility bar) ==================== */
.top-stripe {
  height: 3px;
  background: #3d3d3d;
  width: 100%;
}

/* ==================== Masthead logo ==================== */
.masthead-inner { align-items: center; }
.masthead-logo {
  flex-shrink: 0;
  color: var(--ink);
  width: 56px;
  height: 56px;
}
@media (max-width: 500px) {
  .masthead-logo { width: 44px; height: 44px; }
}

/* ==================== Minimal footer ==================== */
.mini-footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-alt);
  padding: 1.1rem 0;
  margin-top: 4rem;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.mini-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mini-footer nav a {
  color: var(--ink-2);
  text-decoration: none;
  margin-left: 1.25rem;
  font-weight: 500;
}
.mini-footer nav a:first-child { margin-left: 0; }
.mini-footer nav a:hover { color: var(--primary); text-decoration: underline; }
@media (max-width: 500px) {
  .mini-footer .wrap { flex-direction: column; align-items: flex-start; }
}


/* ==================== Copy-Link-Button ==================== */
.copy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 1rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.copy-link-btn:hover { background: var(--bg-alt); color: var(--primary); border-color: var(--primary); }
.copy-link-btn.copied { color: var(--pos); border-color: var(--pos); background: #e6f4ec; }
.copy-link-btn svg { width: 12px; height: 12px; }

/* ==================== Glossary filter pills ==================== */
.glossary-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.25rem;
}
.glossary-filters button {
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.glossary-filters button:hover { border-color: var(--ink-3); }
.glossary-filters button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.glossary details[data-hidden="true"] { display: none; }

/* ==================== KPI sparkline background ==================== */
.kpi { position: relative; overflow: hidden; }
.kpi .spark {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30px;
  opacity: 0.25;
  pointer-events: none;
}
.kpi .spark path { fill: none; stroke: var(--accent); stroke-width: 1.4; }
.kpi .spark.neg path { stroke: var(--neg); }
.kpi.kpi-with-spark { padding-bottom: 2.6rem; }

/* ==================== Event card mini-chart ==================== */
.event .event-chart {
  width: 100%;
  height: 48px;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}
.event .event-chart path.line { fill: none; stroke: var(--neg); stroke-width: 1.6; }
.event .event-chart path.area { fill: rgba(155, 28, 28, 0.08); stroke: none; }

/* ==================== Dark mode (prefers-color-scheme) ==================== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1115;
    --bg-alt: #1a1c22;
    --ink: #f2f2f2;
    --ink-2: #c8c8c8;
    --ink-3: #9a9a9a;
    --ink-4: #6a6a6a;
    --rule: #2b2e36;
    --rule-soft: #1f2128;
    --primary: #6faed8;
    --primary-dark: #99c6e2;
  }
  body, html { background: var(--bg); color: var(--ink); }
  .masthead { background: var(--bg); }
  .masthead-logo, .wordmark { color: var(--ink); }
  .wordmark .tld { color: var(--ink-3); }
  .breadcrumb { background: var(--bg-alt); }
  .section-nav { background: var(--bg); box-shadow: 0 2px 6px rgba(0,0,0,0.5); }
  .section-nav a { color: var(--ink); }
  .section-nav a:hover, .section-nav .active a, .section-nav li.active a { background: var(--bg-alt); color: var(--primary); }
  .nav-burger { color: var(--ink); }
  .kpi-grid, .figure, .table-wrap, .related-card, .glossary details, .article-magnitude, .method, .event-card, a.kpi-link .kpi {
    background: var(--bg-alt) !important; border-color: var(--rule) !important;
  }
  .figure-head, thead tr, .tbl-head, .figure-foot, .tbl-foot { background: #24262e !important; border-color: var(--rule) !important; }
  .kpi { border-color: var(--rule) !important; }
  .glossary summary .g-chevron { background: var(--bg-alt); border-color: var(--rule); color: var(--ink-2); }
  .article-magnitude .big { background: linear-gradient(180deg, #1e2028 0%, #16181e 100%); }
  .mini-footer { background: var(--bg-alt); border-color: var(--rule); }
  .event-card:hover .event, tbody tr:hover, a.kpi-link .kpi:hover, .related-card:hover {
    background: #24262e !important;
  }
  .figure-caption, .tbl-head .caption { color: var(--ink); }
  .article-magnitude .details .k, .kpi .lbl, .doc-meta .item span, .source-list li, .sec-lede { color: var(--ink-2); }
  .source-list li::before { color: var(--primary); }
  .source-list a { color: var(--primary); border-bottom-color: rgba(111, 174, 216, 0.3); }
  .prose em, .article-magnitude .details strong, .kpi .val, .kpi .val.acc { color: var(--ink); }
  .glossary summary .g-title, .related-title { color: var(--ink); }
}

/* ==================== Drops table as cards on mobile ==================== */
@media (max-width: 640px) {
  #drops-table thead { display: none; }
  .table-wrap { border: none; background: transparent; }
  .tbl-head { background: transparent; border-bottom: none; padding: 0 0 0.75rem; }
  .tbl-foot { background: transparent; border-top: none; padding: 0.75rem 0 0; font-size: 0.78rem; color: var(--ink-3); }
  #drops-table { border-collapse: separate; border-spacing: 0 0.6rem; }
  #drops-table tbody { display: block; }
  #drops-table tr {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.1rem 0.7rem;
    background: #fff;
    border: 1px solid var(--rule);
    border-left: 3px solid var(--neg);
    border-radius: 4px;
    padding: 0.95rem 1.1rem 1rem;
    margin: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  #drops-table tr:hover {
    box-shadow: 0 4px 12px rgba(155,28,28,0.12);
    transform: translateY(-1px);
  }
  #drops-table td {
    display: block;
    padding: 0;
    border: none;
    width: auto;
  }
  #drops-table td::before { content: ""; display: none; }

  /* Rang ausblenden */
  #drops-table td.rank { display: none; }

  /* Row 1: Datum */
  #drops-table td.date {
    grid-column: 1; grid-row: 1;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  /* Row 2: Trennlinien + grosses Prozent */
  #drops-table td.pct {
    grid-column: 1; grid-row: 2;
    font-family: "Libre Franklin", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--neg);
    text-align: center;
    padding: 0.9rem 0 0.9rem;
    margin-top: 0.7rem;
    border-top: 1px dashed var(--rule);
    border-bottom: 1px dashed var(--rule);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
  }

  /* Row 3: von → auf Preise */
  #drops-table td.num {
    grid-row: 3;
    margin-top: 0.7rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  #drops-table td.num:nth-of-type(3) { grid-column: 1; text-align: left; }
  #drops-table td.num:nth-of-type(4) { grid-column: 2; text-align: right; }
  #drops-table td.num::before {
    content: attr(data-label);
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
  }
  #drops-table td.num:nth-of-type(3)::before { content: "Vor dem Absturz"; }
  #drops-table td.num:nth-of-type(4)::before { content: "Nach dem Absturz"; }
}

/* ==================== Inline wordmark icon ==================== */
.wordmark-icon {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  vertical-align: -0.12em;
  margin-right: 0.3em;
  color: var(--ink);
  flex-shrink: 0;
}

/* ==================== Mobile: Hero → Nav gap entfernen ==================== */
@media (max-width: 820px) {
  .hero-full { margin-bottom: 0; }
  .section-nav { margin-top: 0; margin-bottom: 1.5rem; }
}

/* ==================== Mobile tabs: segmented control ==================== */
@media (max-width: 640px) {
  .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: var(--bg-alt);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--rule);
  }
  .tabs button {
    background: transparent;
    color: var(--ink-2);
    border: none;
    border-radius: 5px;
    padding: 0.55rem 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  }
  .tabs button:hover { color: var(--ink); }
  .tabs button.active {
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 1px rgba(0,0,0,0.04);
    border-bottom: none;
  }
}

/* ==================== Mobile chart-ctl: segmented control ==================== */
@media (max-width: 640px) {
  .chart-ctl {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    background: var(--bg-alt);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 0.8rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: unset;
  }
  .chart-ctl button {
    background: transparent;
    color: var(--ink-2);
    border: none;
    border-right: none !important;
    border-radius: 5px;
    padding: 0.55rem 0.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  }
  .chart-ctl button:hover { color: var(--ink); background: transparent; }
  .chart-ctl button.active {
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 1px rgba(0,0,0,0.04);
  }
}

/* ==================== Legal pages (Impressum / Datenschutz) ==================== */
.prose h2.sec-title { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.15rem; }
.prose p + ul { margin-top: -0.5rem; }
.prose ul li { color: var(--ink); }
