    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:         #0f172a;
      --ink-soft:    #334155;
      --ink-muted:   #64748b;
      --ink-faint:   #94a3b8;
      --rule:        rgba(148, 163, 184, 0.22);
      --rule-strong: rgba(148, 163, 184, 0.36);
      --bg:          #f4f7fb;
      --bg-soft:     #edf3fb;
      --card:        rgba(255, 255, 255, 0.84);
      --card-solid:  #ffffff;
      --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.08);
      --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
      --shadow-nav:  0 12px 34px rgba(15, 23, 42, 0.12);

      /* Source colors */
      --bbc:      #1d4ed8;
      --lm:       #16a34a;
      --pd:       #dc2626;
      --tass:     #7c3aed;
      --hindu:    #c2410c;
      --folha:    #b45309;
      --aj:       #0369a1;
      --kompas:   #0891b2;
      --arabnews: #0f766e;
      --dw:       #991b1b;
      --sabah:    #d97706;
      --gazeta:   #3730a3;
      --khaosod:  #0284c7;
      --cna:      #9f1239;
      --mavrik:   #14532d;
      --nation:   #7c2d12;

      /* Category colors */
      --cat-geopolitics:  #dc2626;
      --cat-economy:      #16a34a;
      --cat-tech:         #7c3aed;
      --cat-science:      #0369a1;
      --cat-environment:  #0891b2;
      --cat-health:       #db2777;
      --cat-sports:       #ea580c;
      --cat-society:      #64748b;
    }

    body {
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--ink);
      margin: 0;
      min-height: 100vh;
      padding-top: 5rem;
      position: relative;
      background-image:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        radial-gradient(circle at top right, rgba(8, 145, 178, 0.10), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #eff4fb 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 82%);
      opacity: 0.35;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ─────────────────────────────────────
       STICKY NAV BAR
    ───────────────────────────────────── */
    .sticky-bar {
      position: fixed;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - 2rem), 1180px);
      z-index: 200;
      background: rgba(15, 23, 42, 0.72);
      color: #fff;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow-nav);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .sticky-logo {
      font-size: 0.98rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fff;
      white-space: nowrap;
      flex-shrink: 0;
      padding: 0 1rem 0 0.25rem;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
    .logo-accent {
      background: linear-gradient(90deg,
        #8b5cf6,
        #38bdf8,
        var(--cat-environment)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sticky-cats {
      display: flex;
      gap: 0.35rem;
      flex: 1;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .sticky-cats::-webkit-scrollbar { display: none; }

    /* Perspectives tab only visible in mobile strip; standalone link used on desktop */
    .cat-tab-perspectives { display: none; }

    .cat-tab {
      cursor: pointer;
      font-size: 0.72rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 0.02em;
      white-space: nowrap;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      color: rgba(226, 232, 240, 0.82);
      background: transparent;
      border: 1px solid transparent;
      transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
      user-select: none;
    }

    .cat-tab:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.10);
      transform: translateY(-1px);
    }

    /* All tab */
    .cat-tab[data-filter="all"].active          { background: #fff; color: var(--ink); border-color: #fff; }
    /* Category-specific active colors */
    .cat-tab[data-filter="geopolitics"].active  { background: var(--cat-geopolitics); color: #fff; border-color: var(--cat-geopolitics); }
    .cat-tab[data-filter="economy"].active      { background: var(--cat-economy);     color: #fff; border-color: var(--cat-economy); }
    .cat-tab[data-filter="tech"].active         { background: var(--cat-tech);        color: #fff; border-color: var(--cat-tech); }
    .cat-tab[data-filter="environment"].active  { background: var(--cat-environment); color: #fff; border-color: var(--cat-environment); }
    .cat-tab[data-filter="health"].active       { background: var(--cat-health);      color: #fff; border-color: var(--cat-health); }
    .cat-tab[data-filter="sports"].active       { background: var(--cat-sports);      color: #fff; border-color: var(--cat-sports); }
    .cat-tab[data-filter="society"].active      { background: var(--cat-society);     color: #fff; border-color: var(--cat-society); }

    .sticky-feed-link {
      flex-shrink: 0;
      font-size: 0.72rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 700;
      color: #fff;
      padding: 0.55rem 0.95rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      white-space: nowrap;
      background: rgba(255, 255, 255, 0.06);
      transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.18s;
    }
    .sticky-feed-link:hover {
      border-color: rgba(255, 255, 255, 0.32);
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-1px);
    }

    .sticky-perspective-link {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.72rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 800;
      color: #0f172a;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      white-space: nowrap;
      background: linear-gradient(135deg, #f8fafc, #bae6fd);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(56, 189, 248, 0.18);
      transition: transform 0.18s, box-shadow 0.18s;
    }

    .sticky-perspective-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(56, 189, 248, 0.24);
    }

    .mobile-cats,
    .mobile-bottom-nav {
      display: none;
    }

    /* ─────────────────────────────────────
       MASTHEAD
    ───────────────────────────────────── */
    .masthead-shell {
      max-width: 1180px;
      margin: 0 auto;
      padding: 2.25rem 1.5rem 1.25rem;
    }

    .masthead-shell.hidden {
      display: none;
    }

    .magazine-front {
      position: relative;
      overflow: hidden;
      padding: clamp(1rem, 2vw, 1.25rem);
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      background:
        radial-gradient(circle at 8% 6%, rgba(15, 118, 110, 0.13), transparent 26%),
        radial-gradient(circle at 94% 10%, rgba(37, 99, 235, 0.13), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .front-edition-row {
      display: block;
      padding: 0.35rem 0.35rem 1rem;
    }

    .front-kicker,
    .world-front-head span {
      display: inline-flex;
      color: #0f766e;
      font-size: 0.68rem;
      font-weight: 950;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.42rem;
    }

    .front-brand-panel {
      position: relative;
      min-height: 315px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(1rem, 2vw, 1.6rem);
      padding: clamp(1.4rem, 3vw, 2.35rem);
      border-radius: 30px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      background:
        radial-gradient(circle at 8% 7%, rgba(15, 118, 110, 0.17), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(37, 99, 235, 0.14), transparent 31%),
        radial-gradient(circle at 82% 96%, rgba(56,189,248,0.16), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.58));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.68);
      overflow: hidden;
    }

    .front-brand-panel::before,
    .front-brand-panel::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .front-brand-panel::before {
      right: -5rem;
      top: -7rem;
      width: 22rem;
      height: 22rem;
      border: 1px solid rgba(37, 99, 235, 0.12);
      box-shadow: inset 0 0 0 2.4rem rgba(56, 189, 248, 0.05);
    }

    .front-brand-panel::after {
      right: 18%;
      bottom: -11rem;
      width: 26rem;
      height: 26rem;
      background: linear-gradient(135deg, rgba(220,38,38,0.07), rgba(37,99,235,0.11), rgba(15,118,110,0.08));
      opacity: 0.86;
    }

    .front-brand-main,
    .front-brand-identity {
      position: relative;
      z-index: 1;
    }

    .front-brand-wordmark {
      font-family: "Newsreader", Georgia, serif;
      color: var(--ink);
      font-size: clamp(4.6rem, 8vw, 7.35rem);
      font-weight: 800;
      line-height: 0.84;
      letter-spacing: -0.078em;
      font-optical-sizing: auto;
      margin: 0.28rem 0 1.05rem;
      white-space: nowrap;
    }

    .front-brand-panel p {
      max-width: 58ch;
      color: var(--ink-soft);
      font-size: clamp(1rem, 1.45vw, 1.25rem);
      line-height: 1.58;
    }

    .front-edition-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      color: var(--ink-muted);
      font-size: 0.74rem;
      font-weight: 900;
    }

    .front-edition-meta span {
      border-radius: 999px;
      padding: 0.46rem 0.72rem;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    }

    .front-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.72fr);
      gap: 1rem;
    }

    .front-lead-card,
    .front-side-card,
    .front-brief-card,
    .world-card {
      --front-accent: var(--cat-society);
      position: relative;
      overflow: hidden;
      color: inherit;
      border: 1px solid rgba(148, 163, 184, 0.16);
      background: rgba(255,255,255,0.70);
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    }

    .front-lead-card[data-category="geopolitics"],
    .front-side-card[data-category="geopolitics"],
    .world-card[data-category="geopolitics"] { --front-accent: var(--cat-geopolitics); }
    .front-lead-card[data-category="economy"],
    .front-side-card[data-category="economy"],
    .world-card[data-category="economy"] { --front-accent: var(--cat-economy); }
    .front-lead-card[data-category="tech"],
    .front-side-card[data-category="tech"],
    .world-card[data-category="tech"] { --front-accent: var(--cat-tech); }
    .front-lead-card[data-category="environment"],
    .front-side-card[data-category="environment"],
    .world-card[data-category="environment"] { --front-accent: var(--cat-environment); }
    .front-lead-card[data-category="health"],
    .front-side-card[data-category="health"],
    .world-card[data-category="health"] { --front-accent: var(--cat-health); }
    .front-lead-card[data-category="sports"],
    .front-side-card[data-category="sports"],
    .world-card[data-category="sports"] { --front-accent: var(--cat-sports); }

    .front-lead-card {
      min-height: 470px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(1.35rem, 3vw, 2rem);
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(15,23,42,0.02), rgba(15,23,42,0.07)),
        radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--front-accent) 18%, transparent), transparent 32%),
        rgba(255,255,255,0.76);
    }

    .front-lead-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 6px;
      background: var(--front-accent);
      opacity: 0.82;
    }

    .front-lead-card.has-collage {
      padding-top: clamp(1.35rem, 3vw, 2rem);
    }

    .front-image-collage {
      position: relative;
      z-index: 1;
      pointer-events: none;
    }

    .front-image-collage-lead {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
      width: 100%;
      margin-bottom: 1.15rem;
    }

    .front-image-tile {
      position: relative;
      overflow: hidden;
      min-height: 150px;
      border-radius: 20px;
      background-color: #e2e8f0;
      background-position: center;
      background-size: cover;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    }

    .front-image-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,23,42,0.01), rgba(15,23,42,0.16));
    }

    .front-card-topline {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.45rem;
      color: var(--front-accent);
      font-size: 0.68rem;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.65rem;
    }

    .front-lead-card h2 {
      position: relative;
      z-index: 1;
      max-width: 13ch;
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(2.8rem, 6.4vw, 5.8rem);
      line-height: 0.9;
      letter-spacing: -0.075em;
    }

    .front-lead-card h2 a:hover,
    .front-side-card:hover h3,
    .world-card:hover strong { color: var(--front-accent); }

    .front-lead-card p {
      position: relative;
      z-index: 1;
      max-width: 62ch;
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.68;
      margin-top: 1rem;
    }

    .front-story-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1rem;
    }

    .front-story-meta span {
      color: var(--ink-muted);
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 999px;
      padding: 0.34rem 0.55rem;
      font-size: 0.72rem;
      font-weight: 900;
    }

    .front-action-row {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 1.35rem;
    }

    .front-primary-action,
    .front-secondary-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.75rem 1rem;
      font-size: 0.82rem;
      font-weight: 950;
    }

    .front-primary-action {
      color: #fff;
      background: var(--front-accent);
      box-shadow: 0 15px 30px color-mix(in srgb, var(--front-accent) 24%, transparent);
    }

    .front-secondary-action {
      color: var(--ink);
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(148, 163, 184, 0.22);
    }

    .front-side-rail {
      display: grid;
      gap: 1rem;
    }

    .front-side-card,
    .front-brief-card {
      border-radius: 24px;
      padding: 1.05rem;
      transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    }

    .front-side-card:hover,
    .front-brief-card:hover,
    .world-card:hover {
      transform: translateY(-2px);
      border-color: rgba(148, 163, 184, 0.28);
      box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
    }

    .front-card-image-strip {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.45rem;
      margin-bottom: 0.85rem;
    }

    .front-card-image-strip span {
      min-height: 72px;
      border-radius: 16px;
      background-color: #e2e8f0;
      background-position: center;
      background-size: cover;
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }

    .front-card-image-strip span:only-child {
      grid-column: 1 / -1;
    }

    .front-side-card.has-card-images h3 {
      font-size: 1.52rem;
      line-height: 1.04;
    }

    .front-side-card h3 {
      font-family: "Newsreader", Georgia, serif;
      font-size: 1.75rem;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .front-brief-card {
      display: grid;
      place-content: center;
      text-align: center;
      min-height: 150px;
      color: #fff;
      background:
        radial-gradient(circle at 90% 0%, rgba(56,189,248,0.22), transparent 38%),
        linear-gradient(135deg, #0f172a, #164e63);
    }

    .front-brief-card span {
      color: rgba(255,255,255,0.62);
      font-size: 0.68rem;
      font-weight: 950;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .front-brief-card strong {
      margin-top: 0.45rem;
      font-family: "Newsreader", Georgia, serif;
      font-size: 1.65rem;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .world-front {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 26px;
      background: rgba(255,255,255,0.48);
      border: 1px solid rgba(148, 163, 184, 0.13);
    }

    .world-front-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.8rem;
    }

    .world-front-head h2 {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 0.95;
      letter-spacing: -0.055em;
    }

    .world-front-head a {
      color: var(--ink-muted);
      font-size: 0.78rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .world-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .world-card {
      display: grid;
      gap: 0.42rem;
      min-height: 150px;
      align-content: space-between;
      border-radius: 20px;
      padding: 0.9rem;
    }

    .world-card.has-world-image {
      grid-template-columns: 82px minmax(0, 1fr);
      align-items: center;
      align-content: center;
      column-gap: 0.75rem;
    }

    .world-card.has-world-image::before {
      display: none;
    }

    .world-card-image {
      grid-row: span 3;
      width: 82px;
      height: 92px;
      border-radius: 16px;
      background-color: #e2e8f0;
      background-position: center;
      background-size: cover;
      border: 1px solid rgba(255,255,255,0.74);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    }

    .world-card::before {
      content: "";
      width: 2.4rem;
      height: 3px;
      border-radius: 999px;
      background: var(--front-accent);
    }

    .world-card span {
      color: var(--front-accent);
      font-size: 0.62rem;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .world-card strong {
      font-family: "Newsreader", Georgia, serif;
      color: var(--ink);
      font-size: 1.35rem;
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .world-card small {
      color: var(--ink-muted);
      font-size: 0.74rem;
      font-weight: 850;
    }

    .empty-front h1 {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 0.95;
      letter-spacing: -0.055em;
      max-width: 14ch;
    }

    .masthead {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
      gap: 1.5rem;
      padding: 2.5rem;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.65);
      background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 28%),
        radial-gradient(circle at left center, rgba(37, 99, 235, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .masthead::after {
      content: "";
      position: absolute;
      inset: auto -3rem -3rem auto;
      width: 14rem;
      height: 14rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(139, 92, 246, 0.14));
      filter: blur(8px);
    }

    .masthead-copy {
      position: relative;
      z-index: 1;
    }

    .masthead-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #2563eb;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.12);
      margin-bottom: 1rem;
    }

    .masthead h1 {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(3rem, 6vw, 5.2rem);
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 0.96;
      font-optical-sizing: auto;
      margin-bottom: 0.9rem;
      color: var(--ink);
      max-width: 10ch;
    }

    .brand-accent {
      background: linear-gradient(90deg,
        var(--cat-geopolitics),
        var(--cat-science),
        var(--cat-environment)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .masthead-dek {
      max-width: 56ch;
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--ink-soft);
      margin-bottom: 1.4rem;
    }

    .masthead-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.5rem;
    }

    .hero-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.9rem 1.2rem;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
    }

    .hero-button:hover {
      transform: translateY(-1px);
    }

    .hero-button-primary {
      color: #fff;
      background: linear-gradient(135deg, #2563eb, #0891b2);
      box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
    }

    .hero-button-secondary {
      color: var(--ink);
      border: 1px solid var(--rule-strong);
      background: rgba(255, 255, 255, 0.82);
    }

    .masthead-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
      color: var(--ink-muted);
      font-size: 0.78rem;
      font-weight: 600;
    }

    .masthead-foot span,
    .masthead-foot a {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }

    .masthead-foot a {
      color: var(--ink-soft);
      border-bottom: 1px solid rgba(100, 116, 139, 0.35);
    }

    .masthead-foot a:hover {
      color: var(--cat-geopolitics);
      border-bottom-color: currentColor;
    }

    .masthead-stats {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0.9rem;
      align-content: start;
    }

    .site-footer {
      width: min(1180px, calc(100% - 2rem));
      margin: 2rem auto 1.5rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--rule);
      color: var(--ink-muted);
      font-size: 0.82rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.85rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .footer-links a {
      color: var(--ink-soft);
      font-weight: 800;
    }

    .footer-links a:hover {
      color: var(--cat-geopolitics);
    }

    .masthead-sub {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-faint);
      margin-bottom: 0.1rem;
    }

    .stat-card {
      padding: 1.05rem 1.1rem;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.62);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .stat-value {
      display: block;
      font-family: "Newsreader", Georgia, serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.05em;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }

    .stat-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--ink-muted);
      margin-bottom: 0.25rem;
    }

    .stat-note {
      display: block;
      font-size: 0.72rem;
      line-height: 1.5;
      color: var(--ink-faint);
    }

    /* ─────────────────────────────────────
       PERSPECTIVES FEATURE
    ───────────────────────────────────── */
    .perspective-entry-shell {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem 1.25rem;
    }

    .perspective-entry {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
      gap: 1rem;
      padding: 1rem;
      border-radius: 30px;
      color: #fff;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
        radial-gradient(circle at 88% 20%, rgba(56, 189, 248, 0.24), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #164e63 54%, #0f766e 100%);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
    }

    .perspective-entry::after {
      content: "";
      position: absolute;
      right: -4rem;
      bottom: -6rem;
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: inset 0 0 0 2.4rem rgba(255,255,255,0.045);
      pointer-events: none;
    }

    .perspective-copy {
      position: relative;
      z-index: 1;
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 260px;
    }

    .perspective-kicker {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 0.45rem;
      padding: 0.42rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: rgba(255,255,255,0.78);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .perspective-title {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(2.2rem, 4.5vw, 4.1rem);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: -0.06em;
      max-width: 10ch;
      margin: 1.2rem 0 0.75rem;
    }

    .perspective-dek {
      max-width: 44ch;
      color: rgba(255,255,255,0.78);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .perspective-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 1.2rem;
    }

    .perspective-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.78rem 1rem;
      font-size: 0.8rem;
      font-weight: 900;
      background: #fff;
      color: #0f172a;
      box-shadow: 0 14px 30px rgba(15,23,42,0.18);
    }

    .perspective-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.78rem 1rem;
      font-size: 0.8rem;
      font-weight: 900;
      color: rgba(255,255,255,0.88);
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
    }

    .perspective-preview {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      align-content: stretch;
    }

    .perspective-card {
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1rem;
      border-radius: 24px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: transform 0.18s, background 0.18s, border-color 0.18s;
    }

    .perspective-card:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.28);
    }

    .perspective-card.hidden {
      display: none;
    }

    .perspective-card-label {
      color: rgba(255,255,255,0.62);
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .perspective-card-title {
      font-family: "Newsreader", Georgia, serif;
      font-size: 1.45rem;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-top: 0.65rem;
    }

    .perspective-card-text {
      color: rgba(255,255,255,0.70);
      font-size: 0.82rem;
      line-height: 1.58;
      margin-top: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .perspective-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
    }

    .perspective-card-meta span {
      color: rgba(255,255,255,0.76);
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;
      padding: 0.28rem 0.48rem;
      font-size: 0.66rem;
      font-weight: 800;
    }

    /* ─────────────────────────────────────
       CONTENT WRAPPER
    ───────────────────────────────────── */
    .content {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }


    /* Country badges */
    .country-badge {
      display: inline-block;
      font-size: 0.64rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 800;
      padding: 0.18rem 0.46rem;
      border-radius: 999px;
      vertical-align: middle;
      margin-right: 0.2rem;
      letter-spacing: 0.02em;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(148, 163, 184, 0.22);
      color: var(--ink-muted);
    }

    /* Language badges */
    .lang-badge {
      display: inline-block;
      font-size: 0.62rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 850;
      padding: 0.18rem 0.46rem;
      border-radius: 999px;
      vertical-align: middle;
      margin-right: 0.2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .lang-en   { background: var(--bbc);      color: #fff; }
    .lang-fr   { background: var(--lm);       color: #fff; }
    .lang-zh   { background: var(--pd);       color: #fff; }
    .lang-ru   { background: var(--tass);     color: #fff; }
    .lang-pt   { background: var(--folha);    color: #fff; }
    .lang-ar   { background: var(--aj);       color: #fff; }
    .lang-id   { background: var(--kompas);   color: #fff; }
    .lang-misc { background: #6b7280;         color: #fff; }

    /* ─────────────────────────────────────
       STATUS PILLS
    ───────────────────────────────────── */
    .status {
      font-size: 0.58rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.58rem;
      border-radius: 999px;
    }
    .status-new        { background: rgba(34, 197, 94, 0.12); color: #15803d; }
    .status-developing { background: rgba(245, 158, 11, 0.14); color: #a16207; }

    /* ─────────────────────────────────────
       TOPIC CARDS
    ───────────────────────────────────── */
    .topics {
      margin-top: 1.5rem;
      display: grid;
      gap: 1.4rem;
    }

    .filter-state {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin: 0.4rem 0 1rem;
      padding: 0.8rem 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.58);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
      color: var(--ink-muted);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .filter-state strong {
      color: var(--ink);
      font-weight: 800;
    }
    .topic[data-category].hidden { display: none; }
    .gap-card.hidden { display: none; }

    .topic {
      --topic-accent: var(--cat-society);
      position: relative;
      background: var(--card);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    }

    .topic::before {
      content: "";
      position: absolute;
      top: 0;
      left: 1.4rem;
      right: 1.4rem;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--topic-accent), rgba(255,255,255,0));
    }

    .topic:hover {
      border-color: rgba(148, 163, 184, 0.28);
      box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
      transform: translateY(-3px);
    }

    .topic.lead {
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.82));
      box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    }

    .topic-header {
      padding: 1.3rem 1.35rem 1rem;
      background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.2));
    }

    .topic[data-category="geopolitics"]  { --topic-accent: var(--cat-geopolitics); }
    .topic[data-category="economy"]      { --topic-accent: var(--cat-economy); }
    .topic[data-category="tech"]         { --topic-accent: var(--cat-tech); }
    .topic[data-category="environment"]  { --topic-accent: var(--cat-environment); }
    .topic[data-category="health"]       { --topic-accent: var(--cat-health); }
    .topic[data-category="sports"]       { --topic-accent: var(--cat-sports); }
    .topic[data-category="society"]      { --topic-accent: var(--cat-society); }

    .topic-kicker-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 0.85rem;
    }

    .topic-category-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.36rem 0.62rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      background: rgba(255, 255, 255, 0.76);
      color: var(--topic-accent);
    }

    .topic-header-main {
      display: flex;
      gap: 0.95rem;
      align-items: flex-start;
    }

    .topic-heading {
      flex: 1;
      min-width: 0;
    }

    .topic-title {
      font-family: "Newsreader", Georgia, serif;
      font-size: 1.55rem;
      font-weight: 700;
      line-height: 1.16;
      letter-spacing: -0.035em;
      font-optical-sizing: auto;
      margin-bottom: 0.5rem;
    }

    .topic-title a {
      transition: color 0.18s ease;
    }
    .topic-title a:hover {
      color: var(--topic-accent);
    }

    .topic-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem 0.75rem;
      font-size: 0.76rem;
      color: var(--ink-muted);
      font-weight: 700;
    }

    .topic-meta-row span {
      position: relative;
    }

    .lead .topic-title { font-size: clamp(2.2rem, 3.2vw, 3rem); font-weight: 800; line-height: 1.09; letter-spacing: -0.045em; }
    .lead .topic-header { padding: 1.65rem 1.65rem 1.2rem; }
    .lead .topic-meta-row { font-size: 0.8rem; }

    .topic-scope-pill {
      font-size: 0.62rem;
      font-weight: 700;
      padding: 0.12rem 0.4rem;
      border-radius: 999px;
      background: rgba(251, 191, 36, 0.13);
      border: 1px solid rgba(251, 191, 36, 0.26);
      color: #92400e;
      text-transform: capitalize;
    }

    /* ── Background card ── */
    .background-card {
      margin: 0 1.35rem 1rem;
      padding: 0.95rem 1rem;
      background: rgba(248, 250, 252, 0.86);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 18px;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }
    .background-label {
      flex-shrink: 0;
      font-family: "Manrope", sans-serif;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-top: 0.2rem;
      background: rgba(255, 255, 255, 0.88);
      padding: 0.26rem 0.5rem;
      border-radius: 999px;
      white-space: nowrap;
    }
    .background-text {
      font-size: 0.92rem;
      color: var(--ink-soft);
      line-height: 1.82;
    }

    /* ── Viewpoints ── */
    .viewpoints {
      margin: 0 1.35rem 1rem;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.54);
      overflow: hidden;
    }
    .viewpoints-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      padding: 0.9rem 1rem 0.75rem;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
      flex-wrap: wrap;
    }
    .viewpoints-label {
      font-family: "Manrope", sans-serif;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #7c2d12;
      background: rgba(251, 191, 36, 0.16);
      border: 1px solid rgba(251, 191, 36, 0.24);
      padding: 0.28rem 0.52rem;
      border-radius: 999px;
    }
    .divergence {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }
    .divergence-label,
    .divergence-value {
      font-family: "Manrope", sans-serif;
      font-size: 0.62rem;
      font-weight: 600;
      color: var(--ink-faint);
    }
    .divergence-dots {
      display: flex;
      gap: 4px;
    }
    .divergence-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(226, 232, 240, 0.9);
    }
    .divergence-dot.filled.d1 { background: #22c55e; }
    .divergence-dot.filled.d2 { background: #86efac; }
    .divergence-dot.filled.d3 { background: #fbbf24; }
    .divergence-dot.filled.d4 { background: #f97316; }
    .divergence-dot.filled.d5 { background: #ef4444; }

    /* ── Divergence tooltip ── */
    .divergence-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: default;
    }
    .divergence-tip {
      position: fixed;
      width: 230px;
      background: #1a2535;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 12px;
      padding: 0.8rem 0.9rem 0.75rem;
      box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.17s ease;
      z-index: 9999;
    }
    .divergence-tip.visible {
      opacity: 1;
      pointer-events: auto;
    }
    .divergence-tip-title {
      font-family: "Manrope", sans-serif;
      font-size: 0.66rem;
      font-weight: 700;
      color: #e2e8f0;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
    }
    .divergence-tip-desc {
      font-family: "Manrope", sans-serif;
      font-size: 0.63rem;
      color: #94a3b8;
      line-height: 1.55;
      margin-bottom: 0.55rem;
    }
    .divergence-tip-scale {
      display: flex;
      flex-direction: column;
      gap: 0.22rem;
      border-top: 1px solid rgba(148, 163, 184, 0.1);
      padding-top: 0.45rem;
    }
    .divergence-tip-row {
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }
    .divergence-tip-swatch {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .divergence-tip-row span {
      font-family: "Manrope", sans-serif;
      font-size: 0.61rem;
      color: #94a3b8;
      line-height: 1.4;
    }
    .divergence-tip-row span strong {
      color: #cbd5e1;
      font-weight: 600;
    }

    .viewpoint-row {
      display: flex;
      gap: 0.75rem;
      align-items: baseline;
      padding: 0.55rem 1rem;
    }
    .viewpoint-row:last-child { padding-bottom: 1rem; }
    .viewpoint-country {
      flex-shrink: 0;
      font-family: "Manrope", sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      min-width: 98px;
      color: #fff;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      text-align: center;
    }
    .viewpoint-angle {
      font-size: 0.88rem;
      color: var(--ink-soft);
      line-height: 1.62;
    }
    .viewpoints-more {
      padding-top: 0.25rem;
    }
    .viewpoints-more a {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-muted);
      text-decoration: none;
    }
    .viewpoints-more a:hover {
      color: var(--ink);
    }
    .viewpoint-row.vp-extra { display: none; }
    .article.article-extra { display: none; }
    .perspectives-teaser {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem 1rem;
      padding: 0.78rem 1rem;
      border-top: 1px solid var(--rule);
      background: rgba(248, 250, 252, 0.58);
      flex-wrap: wrap;
    }
    .perspectives-teaser-main {
      min-width: 0;
      display: grid;
      gap: 0.42rem;
    }
    .perspectives-teaser-label {
      color: var(--ink-faint);
      font-family: "Manrope", sans-serif;
      font-size: 0.6rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .perspectives-teaser-countries {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      align-items: center;
    }
    .perspectives-teaser .viewpoint-country {
      min-width: auto;
      padding: 0.3rem 0.68rem;
      font-size: 0.72rem;
      font-weight: 850;
      box-shadow: none;
    }
    .perspectives-teaser-more {
      appearance: none;
      border: 1px solid rgba(148, 163, 184, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      padding: 0.3rem 0.68rem;
      font-size: 0.72rem;
      font-weight: 850;
      color: var(--ink-muted);
      font-family: "Manrope", sans-serif;
      cursor: pointer;
      line-height: 1;
    }
    .perspectives-teaser-more:hover {
      color: var(--ink);
      border-color: rgba(148, 163, 184, 0.42);
      background: #fff;
    }
    .perspectives-teaser-link {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.52rem 0.86rem;
      font-size: 0.78rem;
      font-weight: 900;
      color: var(--ink);
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(148, 163, 184, 0.22);
      text-decoration: none;
      white-space: nowrap;
    }
    .perspectives-teaser-link:hover {
      color: var(--topic-accent);
      border-color: rgba(148, 163, 184, 0.42);
      background: #fff;
    }
    .teaser-country-extra { display: none; }
    .expand-btn {
      background: none;
      border: 1px solid var(--rule-strong);
      border-radius: 999px;
      padding: 0.32rem 0.85rem;
      font-size: 0.78rem;
      font-family: "Manrope", sans-serif;
      font-weight: 600;
      color: var(--ink-muted);
      cursor: pointer;
      transition: color 0.15s, border-color 0.15s, background 0.15s;
    }
    .expand-btn:hover {
      color: var(--ink);
      border-color: var(--ink-soft);
      background: rgba(15, 23, 42, 0.04);
    }
    .more-link .expand-articles-btn {
      margin: 0.3rem 0 0.2rem;
    }

    /* ── Article rows ── */
    .article {
      position: relative;
      margin: 0.55rem 1.35rem;
      padding: 0.92rem 1rem 0.92rem 1.05rem;
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.52);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.62);
      transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
      display: flex;
      gap: 0.78rem;
      align-items: flex-start;
    }

    .article::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.85rem;
      bottom: 0.85rem;
      width: 3px;
      border-radius: 999px;
      background: var(--topic-accent);
      opacity: 0.34;
    }

    .article:hover {
      background: rgba(255,255,255,0.74);
      border-color: rgba(148, 163, 184, 0.24);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
      transform: translateY(-1px);
    }

    .article-source-mark {
      flex: 0 0 auto;
      width: 2.15rem;
      height: 2.15rem;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-top: 0.05rem;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.26),
        0 8px 18px rgba(15, 23, 42, 0.10);
    }

    .article-source-mark:hover {
      transform: translateY(-1px);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 16px 30px rgba(15, 23, 42, 0.16);
    }

    .article-body { flex: 1; min-width: 0; }

    .article-visual {
      flex: 0 0 auto;
      width: 118px;
      height: 88px;
      border-radius: 16px;
      overflow: hidden;
      display: block;
      background: linear-gradient(135deg, rgba(226,232,240,0.86), rgba(248,250,252,0.92));
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
    }

    .article-thumb {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: inherit;
      object-fit: cover;
      background: #f1f5f9;
      transition: transform 0.24s ease;
    }

    .article:hover .article-thumb {
      transform: scale(1.035);
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 0.38rem;
      font-size: 0.7rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      color: var(--ink-faint);
      margin-bottom: 0.36rem;
      flex-wrap: wrap;
      font-weight: 750;
    }

    .article-source {
      color: var(--ink);
      font-weight: 900;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    }

    .article-title a {
      font-family: "Newsreader", Georgia, serif;
      font-size: 1.12rem;
      font-weight: 800;
      color: var(--ink);
      line-height: 1.26;
      letter-spacing: -0.035em;
      font-optical-sizing: auto;
    }

    .article-title a:hover { color: var(--topic-accent); }
    .lead .article-title a { font-size: 1.28rem; }

    .article-original {
      font-size: 0.78rem;
      color: #94a3b8;
      margin-top: 0.36rem;
      font-style: italic;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    }

    .article-summary {
      font-size: 0.9rem;
      color: var(--ink-soft);
      margin-top: 0.42rem;
      line-height: 1.66;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .lead .article-summary { -webkit-line-clamp: 3; }
    .lead .article-visual {
      width: 156px;
      height: 112px;
    }

    /* ── More articles link ── */
    .more-link {
      margin: 0 1.35rem 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(148, 163, 184, 0.12);
    }
    .more-link a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 800;
      color: var(--ink-soft);
      padding: 0.62rem 0.92rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: rgba(255, 255, 255, 0.72);
    }
    .more-link a:hover { color: var(--topic-accent); border-color: rgba(148, 163, 184, 0.38); }


    /* ── Nuance notes ── */
    .nuance-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.45rem;
      font-size: 0.67rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 700;
      color: #92400e;
      cursor: pointer;
      background: rgba(254, 249, 195, 0.7);
      border: 1px solid rgba(251, 191, 36, 0.24);
      border-radius: 999px;
      padding: 0.24rem 0.68rem;
      user-select: none;
      transition: background 0.12s;
    }
    .nuance-toggle:hover { background: rgba(253, 230, 138, 0.72); }

    .nuance-list {
      display: none;
      margin-top: 0.5rem;
      border: 1px solid rgba(251, 191, 36, 0.25);
      border-radius: 14px;
      overflow: hidden;
    }
    .nuance-list.open { display: block; }

    .nuance-item {
      font-size: 0.8rem;
      line-height: 1.65;
      color: var(--ink-soft);
      padding: 0.55rem 0.8rem;
      background: rgba(255, 251, 235, 0.82);
    }
    .nuance-item + .nuance-item { border-top: 1px solid rgba(251, 191, 36, 0.22); }

    .nuance-phrase {
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-weight: 700;
      color: #92400e;
    }

    /* ─────────────────────────────────────
       SECTION DIVIDERS
    ───────────────────────────────────── */
    .section-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 2.8rem 0 1.2rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-size: 0.63rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-muted);
    }
    .section-label::before, .section-label::after {
      content: ""; flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(148,163,184,0), rgba(148,163,184,0.36), rgba(148,163,184,0));
    }

    /* ─────────────────────────────────────
       COVERAGE GAPS
    ───────────────────────────────────── */
    .section-intro {
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--ink-muted);
      max-width: 56ch;
      margin: -0.55rem 0 1rem;
    }

    .gap-card {
      display: flex;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 22px;
      margin-bottom: 0.75rem;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .gap-card:hover {
      border-color: rgba(245, 158, 11, 0.22);
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
      transform: translateY(-1px);
    }

    .gap-stripe {
      width: 6px;
      flex-shrink: 0;
      background: linear-gradient(to bottom, #f59e0b, #fbbf24);
    }

    .gap-body { padding: 1rem 1.15rem; flex: 1; }

    .gap-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.6rem;
      margin-bottom: 0.3rem;
      flex-wrap: wrap;
    }

    .gap-title-wrap {
      min-width: 0;
      flex: 1;
    }

    .gap-topic {
      font-family: "Newsreader", Georgia, serif;
      font-weight: 700;
      font-size: 1.22rem;
      letter-spacing: -0.03em;
    }
    .gap-topic a {
      color: inherit;
      text-decoration: none;
    }
    .gap-topic a:hover {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .gap-covered {
      display: inline-flex;
      align-items: center;
      margin-top: 0.1rem;
      font-size: 0.68rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      color: #92400e;
      font-weight: 800;
      padding: 0.24rem 0.5rem;
      border-radius: 999px;
      background: rgba(251, 191, 36, 0.14);
      border: 1px solid rgba(251, 191, 36, 0.22);
    }

    .gap-missing {
      flex: 0 0 auto;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-faint);
      padding: 0.3rem 0.55rem;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.10);
    }

    .gap-note {
      font-size: 0.86rem;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 0.5rem;
    }
    .section-label-gaps { color: #b45309; }

    .gap-articles { display: flex; flex-direction: column; gap: 0.25rem; }

    .gap-article {
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
      font-size: 0.86rem;
      padding: 0.15rem 0;
    }

    .gap-article a {
      color: var(--ink);
      line-height: 1.48;
    }
    .gap-article a:hover { color: #b45309; }

    /* ─────────────────────────────────────
       FADING STRIP
    ───────────────────────────────────── */
    .fading-bar {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      padding: 0.95rem 1rem;
      background: rgba(255, 255, 255, 0.52);
      border: 1px solid rgba(255, 255, 255, 0.62);
      border-radius: 22px;
      margin-bottom: 1.5rem;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    }

    .fading-label-txt {
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-faint);
      flex-shrink: 0;
    }

    .fading-chip {
      font-size: 0.72rem;
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      color: var(--ink-muted);
      background: rgba(255, 255, 255, 0.72);
      border-radius: 999px;
      padding: 0.36rem 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.16);
    }
    a.fading-chip:hover {
      color: var(--ink);
      border-color: rgba(148, 163, 184, 0.32);
      background: rgba(255, 255, 255, 0.96);
    }

    /* ─────────────────────────────────────
       EMPTY STATE
    ───────────────────────────────────── */
    .empty {
      text-align: center;
      color: var(--ink-faint);
      margin-top: 5rem;
      font-size: 0.95rem;
      line-height: 2;
    }
    .empty code {
      font-family: monospace;
      background: rgba(255,255,255,0.72);
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
    }

    .no-match {
      text-align: center;
      color: var(--ink-faint);
      margin-top: 2rem;
      font-size: 0.88rem;
      display: none;
    }

    /* ── Category fallback article list ── */
    .fallback-section {
      display: none;
    }
    .fallback-section.visible {
      display: block;
    }
    .fallback-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-faint);
      margin: 1.5rem 0 0.75rem;
    }
    .fallback-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--surface);
    }
    .fallback-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: inherit;
      transition: background 0.15s;
    }
    .fallback-item:last-child {
      border-bottom: none;
    }
    .fallback-item:hover {
      background: rgba(0,0,0,0.03);
    }
    .fallback-item-source {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }
    .fallback-item-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.35;
    }

    @media (max-width: 920px) {
      body { padding-top: 6.5rem; }

      /* Two-row nav: row 1 = logo + Perspectives, row 2 = scrollable category tabs */
      .sticky-bar {
        top: 0.75rem;
        width: calc(100% - 1rem);
        border-radius: 22px;
        flex-wrap: wrap;
        align-items: center;
        padding: 0.65rem 0.85rem 0.55rem;
        gap: 0;
      }

      .sticky-logo {
        border-right: none;
        padding-right: 0;
      }

      .sticky-perspective-link {
        display: inline-flex;
        margin-left: auto;
        padding: 0.42rem 0.72rem;
        font-size: 0.68rem;
      }

      .cat-tab-perspectives { display: none; }

      .sticky-cats {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 0.35rem;
        padding: 0.42rem 0 0.1rem;
        margin-top: 0.38rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
      }

      .sticky-cats::-webkit-scrollbar { display: none; }

      .sticky-cats .cat-tab {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.35rem 0.72rem;
        font-size: 0.7rem;
      }

      .masthead {
        grid-template-columns: 1fr;
        padding: 1.6rem;
      }

      .masthead h1 {
        max-width: none;
      }

      .masthead-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .front-brand-panel {
        min-height: auto;
      }

      .world-front-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .front-grid {
        grid-template-columns: 1fr;
      }

      .front-side-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .front-brief-card {
        grid-column: 1 / -1;
        min-height: 120px;
      }

      .world-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .perspective-entry {
        grid-template-columns: 1fr;
      }

      .perspective-copy {
        min-height: auto;
      }

      .perspective-preview {
        grid-template-columns: 1fr;
      }

      .perspective-card {
        min-height: auto;
      }

      .lead .topic-header {
        padding: 1.4rem 1.2rem 1rem;
      }

      .topic-header {
        padding: 1.2rem 1.15rem 0.95rem;
      }

      .background-card,
      .viewpoints,
      .article,
      .more-link {
        margin-left: 1.15rem;
        margin-right: 1.15rem;
      }

      .lead .article-thumb {
        width: 132px;
        height: 98px;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-bottom: 5.5rem;
      }

      .mobile-cats {
        display: none;
      }

      .masthead-shell,
      .perspective-entry-shell,
      .content {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .masthead {
        padding: 1.2rem;
        border-radius: 20px;
      }

      .masthead-actions,
      .masthead-foot {
        display: none;
      }

      .masthead-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.7rem;
      }

      .masthead h1 {
        font-size: 2.45rem;
      }

      .masthead-dek {
        font-size: 0.92rem;
        line-height: 1.58;
        margin-bottom: 0;
      }

      .masthead-stats {
        display: none;
      }

      .magazine-front {
        padding: 0.8rem;
        border-radius: 22px;
      }

      .front-edition-row {
        padding: 0.25rem 0.25rem 0.85rem;
      }

      .front-brand-panel {
        align-items: center;
        text-align: center;
        border-radius: 22px;
      }

      .front-brand-main,
      .front-brand-identity {
        width: 100%;
      }

      .front-brand-panel .front-kicker {
        justify-content: center;
      }

      .front-brand-wordmark {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: clamp(2.45rem, 11.5vw, 3.35rem);
        letter-spacing: -0.065em;
        margin-left: auto;
        margin-right: auto;
      }

      .front-brand-panel p {
        max-width: 32ch;
        margin-left: auto;
        margin-right: auto;
      }

      .front-edition-meta {
        display: none;
      }

      .front-lead-card {
        min-height: 380px;
        border-radius: 22px;
      }

      .front-lead-card.has-collage {
        padding-top: 1rem;
      }

      .front-image-collage-lead {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        margin-bottom: 0.9rem;
      }

      .front-image-tile {
        min-height: 92px;
        border-radius: 16px;
      }

      .front-lead-card h2 {
        font-size: 2.75rem;
      }

      .front-lead-card p {
        font-size: 0.92rem;
        line-height: 1.58;
      }

      .front-primary-action,
      .front-secondary-action {
        width: 100%;
      }

      .front-side-rail,
      .world-card-grid {
        grid-template-columns: 1fr;
      }

      .front-card-image-strip span {
        min-height: 62px;
      }

      .world-card.has-world-image {
        grid-template-columns: 74px minmax(0, 1fr);
      }

      .world-card-image {
        width: 74px;
        height: 82px;
        border-radius: 14px;
      }

      .world-front {
        padding: 0.8rem;
        border-radius: 20px;
      }

      .perspective-entry {
        border-radius: 20px;
        padding: 0.85rem;
      }

      .perspective-copy {
        padding: 0.75rem;
      }

      .perspective-title {
        max-width: 12ch;
        font-size: 2.25rem;
      }

      .perspective-dek {
        font-size: 0.9rem;
        line-height: 1.58;
      }

      .perspective-actions {
        margin-top: 1rem;
      }

      .perspective-button,
      .perspective-link {
        width: 100%;
      }

      .topic {
        border-radius: 18px;
      }

      .filter-state {
        margin: 0 0 0.9rem;
        padding: 0.65rem 0.75rem;
        font-size: 0.74rem;
        border-radius: 16px;
      }

      .topic-header-main {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .topic-kicker-row {
        margin-bottom: 0.65rem;
        gap: 0.4rem;
      }

      .topic-title,
      .lead .topic-title {
        font-size: 1.36rem;
        line-height: 1.12;
        margin-bottom: 0.45rem;
      }

      .lead .topic-title {
        font-size: 1.65rem;
      }

      .topic-title a::after {
        content: ' →';
        font-size: 0.9em;
        opacity: 0.55;
      }

      .article-title a {
        font-size: 0.98rem;
        font-weight: 600;
        color: var(--ink-soft);
      }

      .topic-meta-row {
        font-size: 0.72rem;
        gap: 0.35rem 0.6rem;
      }

      .topic:not(.lead) .viewpoints {
        display: none;
      }

      .topic:not(.lead) .background-card {
        padding: 0 1.15rem 0.7rem;
        margin: -0.2rem 1.15rem 0.2rem;
        background: transparent;
        border: 0;
      }

      .topic:not(.lead) .background-label {
        display: none;
      }

      .topic:not(.lead) .background-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.84rem;
        line-height: 1.55;
      }

      .topic:not(.lead) .article-summary,
      .topic:not(.lead) .article-original,
      .topic:not(.lead) .nuance-toggle,
      .topic:not(.lead) .nuance-list {
        display: none;
      }

      .article {
        flex-direction: row;
        gap: 0.75rem;
      }

      .article-visual {
        width: 82px;
        height: 64px;
        border-radius: 13px;
      }

      .article-source-mark {
        width: 1.95rem;
        height: 1.95rem;
        font-size: 0.58rem;
      }

      .topic:not(.lead) .article-visual {
        display: none;
      }

      .lead .article-visual {
        width: 88px;
        height: 66px;
      }

      .viewpoint-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .viewpoint-country {
        min-width: 0;
      }

      .fading-bar {
        border-radius: 18px;
        padding: 0.75rem;
      }

      .gap-card {
        border-radius: 18px;
      }

      .gap-header {
        display: block;
      }

      .gap-missing {
        display: inline-flex;
        margin-top: 0.45rem;
      }

      .mobile-bottom-nav {
        position: fixed;
        left: 50%;
        bottom: 0.75rem;
        transform: translateX(-50%);
        z-index: 220;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0.35rem;
        width: min(calc(100% - 1rem), 28rem);
        padding: 0.45rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.82);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: var(--shadow-nav);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
      }

      .mobile-bottom-nav a {
        flex: 1;
        text-align: center;
        color: rgba(226, 232, 240, 0.82);
        font-size: 0.72rem;
        font-weight: 800;
        padding: 0.55rem 0.45rem;
        border-radius: 999px;
      }

      .mobile-bottom-nav a.active {
        color: var(--ink);
        background: #fff;
      }
    }
