    /* ── Hero ── */
    .hero { padding: 38px 0 44px; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.85fr 1fr;
      gap: 36px;
      align-items: start;
    }
    .hero-lead-img {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      margin-bottom: 18px;
    }
    .hero-headline {
      font-family: var(--f-display);
      font-size: 34px;
      font-weight: 800;
      line-height: 1.1;
      color: var(--c-dark);
      margin: 10px 0 11px;
      text-wrap: balance;
    }
    .hero-headline a:hover { color: var(--c-accent); }
    .hero-dek {
      font-family: var(--f-body);
      font-size: 17px;
      color: #4a4a46;
      line-height: 1.62;
      margin-bottom: 14px;
    }
    .hero-byline {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--f-ui);
      font-size: 12px;
      color: var(--c-muted);
    }
    .hero-byline .dot { color: var(--c-border); }
    .hero-secondary { display: flex; flex-direction: column; gap: 0; }
    .hero-sec {
      padding: 18px 0;
      border-bottom: 1px solid var(--c-border);
    }
    .hero-sec:first-child { padding-top: 0; }
    .hero-sec:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-sec-img {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 6px;
      margin-bottom: 11px;
    }
    .hero-sec-headline {
      font-family: var(--f-display);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--c-dark);
      margin: 8px 0 6px;
      text-wrap: balance;
    }
    .hero-sec-headline a:hover { color: var(--c-accent); }
    .hero-divider {
      width: 1px;
      background: var(--c-border);
      align-self: stretch;
      display: none;
    }

    /* ── Rates Dashboard ── */
    .rates-section {
      background: var(--c-dark);
      padding: 36px 0;
    }
    .rates-section .section-head { border-bottom-color: rgba(255,255,255,0.12); }
    .rates-section .section-head h2 { color: rgba(255,255,255,0.4); }
    .rates-section .section-head .sh-sub { color: rgba(255,255,255,0.3); }
    .rates-section .section-head a { color: var(--c-amber); }
    .rate-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 22px 24px 18px;
    }
    .rate-type {
      font-family: var(--f-ui);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.38);
      margin-bottom: 6px;
    }
    .rate-value {
      font-family: var(--f-mono);
      font-size: 38px;
      font-weight: 500;
      color: #fff;
      line-height: 1;
      margin-bottom: 5px;
    }
    .rate-value .unit { font-size: 16px; color: rgba(255,255,255,0.35); }
    .rate-change {
      font-family: var(--f-ui);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 18px;
    }
    .rate-change.up { color: #6ECC8A; }
    .rate-change.down { color: #F5826A; }
    .sparkline-wrap { height: 50px; margin-bottom: 10px; }
    .sparkline-wrap svg { width: 100%; height: 50px; overflow: visible; }
    .rate-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .rate-context { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.25); }
    .rate-link { font-family: var(--f-ui); font-size: 11px; color: var(--c-amber); font-weight: 600; }
    .rate-link:hover { text-decoration: underline; }

    /* ── Ad leaderboard ── */
    .ad-wrap {
      display: flex;
      justify-content: center;
      padding: 28px 0;
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
    }

    /* ── Most Read ── */
    .most-read-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .mr-item {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 15px 0;
      border-bottom: 1px solid var(--c-border);
    }
    .mr-item:nth-child(odd)  { padding-right: 28px; border-right: 1px solid var(--c-border); }
    .mr-item:nth-child(even) { padding-left: 28px; }
    .mr-item:nth-last-child(-n+2) { border-bottom: none; }
    .mr-num {
      font-family: var(--f-mono);
      font-size: 20px;
      font-weight: 400;
      color: var(--c-border);
      flex-shrink: 0;
      width: 28px;
      line-height: 1;
      padding-top: 3px;
    }
    .mr-thumb {
      width: 58px;
      height: 58px;
      border-radius: 4px;
      flex-shrink: 0;
    }
    .mr-headline {
      font-family: var(--f-display);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--c-dark);
      text-wrap: balance;
    }
    .mr-headline a:hover { color: var(--c-accent); }
    .mr-meta { font-family: var(--f-ui); font-size: 11px; color: var(--c-muted); margin-top: 4px; }

    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-headline { font-size: 28px; }
      .hero-secondary { flex-direction: row; gap: 20px; }
      .hero-sec { padding: 0; border-bottom: none; border-right: 1px solid var(--c-border); padding-right: 20px; }
      .hero-sec:last-child { border-right: none; padding-right: 0; }
    }
    @media (max-width: 580px) {
      .most-read-grid { grid-template-columns: 1fr; }
      .mr-item:nth-child(odd) { padding-right: 0; border-right: none; }
      .mr-item:nth-child(even) { padding-left: 0; }
      .mr-item:last-child { border-bottom: none; }
      .hero-secondary { flex-direction: column; }
      .hero-sec { border-right: none; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); }
    }
    .hero-empty {
      grid-column: 1 / -1;
      max-width: 760px;
      padding: 72px 0 56px;
    }
    .hero-empty h1 {
      font-family: var(--f-display);
      font-size: 52px;
      font-weight: 900;
      line-height: 1.06;
      color: var(--c-dark);
      margin-bottom: 16px;
      text-wrap: balance;
    }
    .hero-empty p {
      max-width: 680px;
      font-family: var(--f-body);
      font-size: 19px;
      line-height: 1.6;
      color: var(--c-muted);
    }
    @media (max-width: 580px) {
      .hero-empty { padding: 40px 0 28px; }
      .hero-empty h1 { font-size: 38px; }
      .hero-empty p { font-size: 17px; }
    }
