/* BullShift 2nd Generation Edition Page Styles
   Covers the card/column layout added in the 2026 redesign.
   Loaded by index.html and all past_editions/*.html pages.
   Do not merge into bullshift.css (that file is a protected archive).
*/
/* ============================================================
       BullShift Edition Page — new design
       Do not merge into bullshift.css; this file covers the new
       card/column layout added in the 2026 redesign.
       ============================================================ */

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

    body {
      margin: 0;
      background: #111;
      color: #ccc;
      font-family: Helvetica, Arial, sans-serif;
    }

    /* ---- Cover ---- */
    .bs-cover {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
      background: #000;
    }
    .bs-cover-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 0.55;
      display: block;
    }
    .bs-cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.85) 100%
      );
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px 48px;
    }
    .bs-masthead {
      display: flex;
      align-items: baseline;
      gap: 20px;
      margin-bottom: 10px;
    }
    .bs-masthead-title {
      font-size: 3.2rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: #fff;
      text-shadow: 0 2px 16px rgba(0,0,0,0.8);
      line-height: 1;
    }
    .bs-masthead-title span { color: #477EF4; }
    .bs-masthead-tagline {
      font-size: 0.85rem;
      color: #aaa;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .bs-cover-date {
      font-size: 1.05rem;
      color: #ddd;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    /* ---- Edition bar ---- */
    .bs-edition-bar {
      background: #1a1a1a;
      border-bottom: 1px solid #2a2a2a;
      padding: 10px 48px;
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 0.78rem;
      color: #666;
    }
    .bs-edition-bar .pill {
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      background: #222;
      color: #888;
    }
    .bs-edition-bar .pill.blue {
      background: rgba(71,126,244,0.15);
      color: #477EF4;
      white-space: normal;
    }
    .bs-edition-bar-sep {
      color: rgba(71,126,244,0.5);
      margin: 0 2px;
    }
    .bs-edition-date {
      display: inline-block;
      white-space: nowrap;
    }
    .bs-edition-bar-spacer { flex: 1; }

    /* ---- View preference toggle switch ---- */
    .bs-view-pref {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      color: #555;
      white-space: nowrap;
    }
    .bs-view-pref-label { letter-spacing: 0.03em; }
    .bs-switch {
      position: relative;
      display: inline-block;
      width: 44px;
      height: 22px;
      flex-shrink: 0;
    }
    .bs-switch input { opacity: 0; width: 0; height: 0; }
    .bs-switch-track {
      position: absolute;
      inset: 0;
      background: #2a2a2a;
      border: 1px solid #3a3a3a;
      border-radius: 11px;
      transition: background 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    .bs-switch-track::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 16px;
      height: 16px;
      background: #555;
      border-radius: 50%;
      transition: transform 0.2s, background 0.2s;
    }
    .bs-switch input:checked + .bs-switch-track {
      background: rgba(71,126,244,0.25);
      border-color: rgba(71,126,244,0.5);
    }
    .bs-switch input:checked + .bs-switch-track::before {
      transform: translateX(22px);
      background: #477EF4;
    }
    .bs-switch input:focus-visible + .bs-switch-track {
      outline: 2px solid #477EF4;
      outline-offset: 2px;
    }
    .bs-view-pref-opt {
      transition: color 0.2s;
    }
    .bs-view-pref-opt.active { color: #ccc; }
    .bs-view-pref-compact {
      display: none;
      font-size: 0.85rem;
      font-weight: 700;
      color: #555;
      line-height: 1;
    }
    @media (max-width: 660px) {
      .bs-edition-bar-counts   { display: none; }
      .bs-view-pref-label      { display: none; }
      .bs-edition-bar-sep      { display: none; }
      .bs-edition-bar-wordmark { display: none; }
      .bs-view-pref-opt        { display: none; }
      .bs-view-pref-compact    { display: inline; }
    }

    /* ---- Editor's note ---- */
    .bs-editors-note {
      border-left: 4px solid #477EF4;
      margin: 24px 32px;
      padding: 18px 24px;
      background: #161616;
      border-radius: 0 4px 4px 0;
    }
    .bs-editors-note-label {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #477EF4;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .bs-editors-note p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #bbb;
      font-style: italic;
    }

    /* ---- Section divider ---- */
    .bs-section-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 32px 16px;
      color: #444;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .bs-section-divider::before,
    .bs-section-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #2a2a2a;
    }

    /* ---- News columns ---- */
    .bs-columns-wrap { padding: 0 24px 48px; }
    .newsgrouping {
      column-count: 3;
      column-gap: 24px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    /* ---- Group card ---- */
    .bs-card {
      break-inside: avoid;
      page-break-inside: avoid;
      background: #1c1c1c;
      border-radius: 6px;
      margin-bottom: 18px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    .bs-card.card-TITS {
      background: #1a0a00;
      box-shadow: 0 0 0 2px #ff6600, 0 4px 16px rgba(255,102,0,0.2);
    }
    .bs-card.card-highlight {
      background: #0a160a;
      box-shadow: 0 0 0 2px #22c55e, 0 4px 16px rgba(34,197,94,0.15);
    }

    /* ---- Card header ---- */
    .bs-card-header {
      padding: 10px 14px 6px;
      border-bottom: 1px solid #252525;
    }
    .card-TITS    .bs-card-header { border-bottom-color: rgba(255,102,0,0.3); }
    .card-highlight .bs-card-header { border-bottom-color: rgba(34,197,94,0.2); }

    .bs-card-label {
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .card-breaking .bs-card-label  { color: #555; }
    .card-TITS    .bs-card-label   { color: #ff6600; }
    .card-highlight .bs-card-label { color: #22c55e; }

    .bs-card-heading {
      font-size: 0.88rem;
      font-weight: 700;
      color: #e0e0e0;
      line-height: 1.35;
    }
    .card-TITS      .bs-card-heading { color: #ff8c42; font-size: 1rem; }
    .card-highlight .bs-card-heading { color: #86efac; }

    /* ---- Embedded media (YouTube iframe + title/summary) ---- */
    .bs-card-video-block {
      border-bottom: 1px solid #1e1e1e;
    }
    .bs-card-video-block:last-of-type { border-bottom: none; }
    .bs-video-link-title {
      padding: 8px 14px 4px;
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.35;
    }
    .bs-video-link-title a {
      color: #c8cfe8;
      text-decoration: none;
    }
    .bs-video-link-title a:hover { color: #477EF4; text-decoration: underline; }
    .bs-card-media {
      width: 100%;
      background: #000;
      overflow: hidden;
      display: block;
    }
    .bs-card-media iframe {
      width: 100%;
      height: 315px;
      border: 0;
      display: block;
    }
    .bs-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.8;
      transition: opacity 0.2s;
    }
    .bs-card-media img:hover { opacity: 1; }
    .bs-video-summary {
      padding: 6px 14px 10px;
      font-size: 0.78rem;
      color: #888;
      line-height: 1.45;
      border-top: 1px solid #1a1a1a;
    }

    /* ---- Card body ---- */
    .bs-card-body { padding: 8px 14px 12px; }

    /* Scroll cap — expanded cards only. Collapsed state unaffected.
       Tune --bs-card-max-h to adjust how many links show before scrolling.
       640px ≈ 5 fully-enriched links (intro + summary each). */
    :root { --bs-card-max-h: 640px; }
    .bs-card:not(.bs-collapsed) .bs-card-body {
      max-height: var(--bs-card-max-h);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #3a3a4a #1a1a1a;
    }
    .bs-card:not(.bs-collapsed) .bs-card-body::-webkit-scrollbar { width: 5px; }
    .bs-card:not(.bs-collapsed) .bs-card-body::-webkit-scrollbar-track { background: #1a1a1a; }
    .bs-card:not(.bs-collapsed) .bs-card-body::-webkit-scrollbar-thumb { background: #3a3a4a; border-radius: 3px; }
    .bs-card:not(.bs-collapsed) .bs-card-body::-webkit-scrollbar-thumb:hover { background: #5a5a7a; }

    /* ---- Merchandise ad card ---- */
    .bs-merch-ad { display: block; }
    .bs-merch-ad-link {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      text-decoration: none;
      color: inherit;
      padding: 4px 0 8px;
    }
    .bs-merch-ad-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
      flex-shrink: 0;
      border: 1px solid #2a2a2a;
      background: #1a1a1a;
    }
    .bs-merch-ad-body { flex: 1; min-width: 0; }
    .bs-merch-ad-label {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #477EF4;
      font-weight: 700;
      margin-bottom: 5px;
    }
    .bs-merch-ad-name {
      font-size: 0.92rem;
      font-weight: 700;
      color: #e8e8e8;
      line-height: 1.3;
      margin-bottom: 3px;
    }
    .bs-merch-ad-type {
      font-size: 0.72rem;
      color: #666;
      margin-bottom: 4px;
    }
    .bs-merch-ad-price {
      font-size: 0.82rem;
      font-weight: 700;
      color: #22c55e;
      margin-bottom: 8px;
    }
    .bs-merch-ad-cta {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #477EF4;
      text-transform: uppercase;
      border: 1px solid #2a3a6a;
      border-radius: 3px;
      padding: 3px 10px;
    }
    .bs-merch-ad-link:hover .bs-merch-ad-cta {
      background: #1a2a4a;
      border-color: #477EF4;
    }
    @media (max-width: 480px) {
      .bs-merch-ad-img { width: 76px; height: 76px; }
    }

    /* ---- Link rows ---- */
    .bs-link-row {
      margin-bottom: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid #242424;
    }
    .bs-link-row:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

    /* Emoji + fallacy badge + link title all on one line */
    .bs-link-title-line {
      display: flex;
      align-items: baseline;
      gap: 4px;
      flex-wrap: wrap;
    }
    .bs-link-row a {
      font-size: 0.8rem;
      line-height: 1.4;
      text-decoration: none;
      color: #477EF4;
      font-weight: 500;
      transition: color 0.15s;
      word-break: break-word;
    }
    .bs-link-row a:visited { color: #6b4fa0; }
    .bs-link-row a:hover   { color: #7aaaf8; text-decoration: underline; }

    .bs-link-meta {
      display: flex;
      align-items: baseline;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 2px;
    }
    .bs-domain {
      font-size: 0.6rem;
      color: #555;
      letter-spacing: 0.04em;
      font-weight: 600;
      flex-shrink: 0;
    }
    .bs-ct-badge {
      font-size: 0.58rem;
      padding: 1px 5px;
      border-radius: 3px;
      background: #282828;
      color: #666;
      letter-spacing: 0.05em;
      font-weight: 600;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .bs-ct-badge.badge-video  { background: #1a1028; color: #9b6aff; }
    .bs-ct-badge.badge-social { background: #0a1a2a; color: #38bdf8; }
    .bs-ct-badge.badge-gov    { background: #1a150a; color: #d97706; }
    .bs-ct-badge.badge-pdf    { background: #1a0a0a; color: #f87171; }

    .bs-intro {
      font-size: 0.72rem;
      color: #777;
      line-height: 1.45;
      margin-top: 3px;
    }

    .bs-quick-summary {
      font-size: 0.70rem;
      color: #555;
      line-height: 1.4;
      margin-top: 4px;
      font-style: italic;
    }

    /* ---- Editorial toggle + panel ---- */
    .bs-editorial-toggle {
      display: inline;
      background: rgba(251,146,60,0.1);
      border: 1px solid rgba(251,146,60,0.35);
      border-radius: 3px;
      color: #fb923c;
      font-size: 0.58rem;
      line-height: 1;
      padding: 1px 4px;
      cursor: pointer;
      vertical-align: middle;
      margin-left: 5px;
      font-weight: 700;
      font-style: normal;
      transition: color 0.15s, border-color 0.15s, background 0.15s;
      user-select: none;
    }
    .bs-editorial-toggle:hover {
      background: rgba(251,146,60,0.22);
      border-color: #fb923c;
      color: #fdba74;
    }
    .bs-editorial-toggle[aria-expanded="true"] {
      background: rgba(71,126,244,0.12);
      color: #477EF4;
      border-color: rgba(71,126,244,0.5);
    }
    .bs-editorial-toggle[aria-expanded="true"]:hover {
      background: rgba(71,126,244,0.22);
      border-color: #477EF4;
    }
    .bs-editorial {
      font-size: 0.72rem;
      color: #666;
      line-height: 1.5;
      margin-top: 5px;
      padding: 6px 10px;
      background: #161616;
      border-left: 2px solid #2a2a2a;
      border-radius: 0 3px 3px 0;
    }
    /* Hide editorial panel when card is collapsed — but not if user explicitly expanded it */
    .bs-collapsed .bs-editorial { display: none; }
    .bs-collapsed .bs-editorial:not([hidden]) { display: block; }

    /* ---- Ad card ---- */
    .bs-card.card-ad {
      background: #181820;
      box-shadow: 0 0 0 1px #2a2a3a;
      opacity: 0.9;
    }
    .card-ad .bs-card-label {
      color: #5555aa;
      letter-spacing: 0.18em;
    }
    .card-ad .bs-card-heading { color: #8888cc; font-size: 0.82rem; }
    .card-ad .bs-link-row a   { color: #8888cc; font-size: 0.78rem; }
    .card-ad .bs-link-row a:hover { color: #aaaaee; }
    .card-ad .bs-intro        { color: #666; font-size: 0.7rem; }

    /* ---- Link emoji ---- */
    .bs-link-emoji {
      flex-shrink: 0;
      font-style: normal;
      line-height: 1.4;
    }

    /* ---- Fallacy badge ---- */
    .bs-fallacy-logo {
      width: 12px;
      height: 12px;
      object-fit: contain;
      vertical-align: middle;
      filter: sepia(70%) saturate(300%) hue-rotate(330deg) brightness(115%);
    }
    .bs-fp-header .bs-fallacy-logo {
      width: 16px;
      height: 16px;
    }
    .bs-fallacy-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: rgba(251,146,60,0.15);
      color: #fb923c;
      border: 1px solid rgba(251,146,60,0.3);
      border-radius: 3px;
      padding: 1px 5px;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      vertical-align: middle;
      margin-left: 5px;
      white-space: nowrap;
      user-select: none;
      transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    }
    .bs-fallacy-badge:hover {
      background: rgba(251,146,60,0.32);
      border-color: #fb923c;
      color: #fdba74;
      box-shadow: 0 0 0 2px rgba(251,146,60,0.18);
    }

    /* ---- Fallacy popup (position:fixed, hoisted to <body> by JS) ---- */
    .bs-fallacy-popup {
      display: none;
      position: fixed;
      z-index: 9999;
      /* width + max-height set by JS after layout so measurements are accurate */
      overflow-x: hidden;
      overflow-y: auto;
      overflow-wrap: break-word;
      word-break: break-word;
      white-space: normal;
      background: #1e1e1e;
      border: 1px solid #3a3a3a;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.7);
      padding: 16px 18px;
      box-sizing: border-box;
    }
    .bs-fp-header {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fb923c;
      font-weight: 700;
      margin-bottom: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid #2e2e2e;
    }
    .bs-fp-article {
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid #2e2e2e;
    }
    .bs-fp-article-title {
      font-size: 0.82rem;
      font-weight: 600;
      color: #d0d0d0;
      line-height: 1.4;
      margin-bottom: 4px;
      overflow-wrap: break-word;
      word-break: break-word;
    }
    .bs-fp-article-url {
      font-size: 0.65rem;
      color: #555;
      overflow-wrap: break-word;
      word-break: break-all;
    }
    .bs-fp-article-url a {
      color: #5588cc;
      text-decoration: none;
    }
    .bs-fp-article-url a:hover {
      text-decoration: underline;
      color: #7aaae0;
    }
    .bs-fp-item {
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid #2a2a2a;
    }
    .bs-fp-item:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
    .bs-fp-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: #e0e0e0;
      margin-bottom: 4px;
    }
    .bs-fp-desc {
      font-size: 0.78rem;
      color: #999;
      line-height: 1.5;
      margin-bottom: 8px;
      font-style: italic;
    }
    .bs-fp-quote {
      margin: 0 0 6px 0;
      padding: 7px 10px;
      background: #141414;
      border-left: 3px solid #fb923c;
      font-size: 0.78rem;
      color: #ccc;
      line-height: 1.5;
      font-style: italic;
      border-radius: 0 3px 3px 0;
    }
    .bs-fp-loc {
      font-size: 0.65rem;
      color: #666;
      letter-spacing: 0.04em;
    }

    /* ---- Unavailable link badge ---- */
    .bs-unavail-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: rgba(148,163,184,0.12);
      color: #94a3b8;
      border: 1px solid rgba(148,163,184,0.25);
      border-radius: 3px;
      padding: 1px 5px;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: help;
      vertical-align: middle;
      margin-left: 5px;
      white-space: nowrap;
      user-select: none;
    }
    .bs-unavail-badge:hover {
      background: rgba(148,163,184,0.22);
      border-color: #94a3b8;
      color: #cbd5e1;
    }

    /* ---- Unavailable popup (position:fixed, placed by JS) ---- */
    .bs-unavail-popup {
      display: none;
      position: fixed;
      z-index: 9999;
      /* width set by JS after layout */
      overflow-x: hidden;
      overflow-y: auto;
      overflow-wrap: break-word;
      word-break: break-word;
      white-space: normal;
      background: #1a1f2e;
      border: 1px solid #2e3a4e;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.7);
      padding: 14px 16px;
      box-sizing: border-box;
    }
    .bs-up-header {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #94a3b8;
      font-weight: 700;
      margin-bottom: 8px;
      padding-bottom: 7px;
      border-bottom: 1px solid #2e3a4e;
    }
    .bs-up-body {
      font-size: 0.78rem;
      color: #8899aa;
      line-height: 1.55;
    }
    .bs-up-url {
      margin-top: 8px;
      font-size: 0.67rem;
      color: #4a5a6a;
      word-break: break-all;
      font-family: monospace;
    }

    /* ---- Collapse / expand ---- */
    .bs-card-header {
      cursor: pointer;
      user-select: none;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
    }
    .bs-card-header-text { flex: 1; min-width: 0; }
    .bs-card-toggle {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 4px;
      color: rgba(251,146,60,0.55);
      margin-top: 4px;
      transition: color 0.15s;
    }
    .bs-card-header:hover .bs-card-toggle { color: #fb923c; }
    .bs-toggle-text {
      display: none;
      font-size: 0.6rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .bs-toggle-icon {
      display: inline-block;
      font-size: 0.6rem;
      transition: transform 0.2s ease;
    }
    /* Collapsed: show "expand" label, rotate arrow to point right */
    .bs-collapsed .bs-toggle-text { display: inline; }
    .bs-collapsed .bs-toggle-icon { transform: rotate(-90deg); }

    /* In collapsed state: hide overflow links, all intro text, and media */
    .bs-collapsed .bs-link-overflow  { display: none; }
    .bs-collapsed .bs-intro          { display: none; }
    .bs-collapsed .bs-quick-summary  { display: none; }
    .bs-collapsed .bs-card-media     { display: none; }
    .bs-collapsed .bs-video-link-title { display: none; }
    .bs-collapsed .bs-video-summary    { display: none; }
    /* ...but show the intro and summary for the very first link */
    .bs-collapsed .bs-link-first-preview .bs-intro         { display: block; }
    .bs-collapsed .bs-link-first-preview .bs-quick-summary { display: block; }

    /* Expand counter (+N) shown only in collapsed state */
    .bs-toggle-count {
      display: none;
      font-size: 0.6rem;
      font-weight: 600;
      color: rgba(251,146,60,0.55);
      letter-spacing: 0.02em;
    }
    .bs-card-header:hover .bs-toggle-count { color: #fb923c; }
    .bs-collapsed .bs-toggle-count { display: inline; }

    /* Remove separator and bottom padding after the last visible preview link */
    .bs-collapsed .bs-link-last-preview {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .bs-collapsed .bs-card-body { padding-bottom: 8px; }

    /* ---- Footer ---- */
    .bs-footer {
      background: #111;
      border-top: 1px solid #222;
      padding: 40px 48px 32px;
      margin-top: 24px;
    }
    .bs-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }
    .bs-footer-col { flex: 1; min-width: 180px; }
    .bs-footer-heading {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #555;
      font-weight: 700;
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid #222;
    }
    .bs-footer-link {
      display: block;
      font-size: 0.75rem;
      color: #477EF4;
      text-decoration: none;
      padding: 3px 0;
      transition: color 0.15s;
    }
    .bs-footer-link:hover { color: #7aaaf8; text-decoration: underline; }
    .bs-footer-link.legacy {
      color: #aaa;
      font-weight: 600;
    }
    .bs-footer-link.legacy:hover { color: #fff; }
    .bs-footer-archive {
      columns: 2;
      column-gap: 16px;
    }
    .bs-footer-bottom {
      margin-top: 32px;
      padding-top: 16px;
      border-top: 1px solid #1e1e1e;
      font-size: 0.65rem;
      color: #333;
      text-align: center;
      letter-spacing: 0.04em;
    }

    /* ---- Responsive ---- */
    @media (max-width: 1100px) {
      .newsgrouping { column-count: 2; }
      .bs-cover { height: 320px; }
      .bs-cover-overlay { padding: 24px 28px; }
      .bs-masthead-title { font-size: 2.4rem; }
    }
    @media (max-width: 680px) {
      .newsgrouping { column-count: 1; }
      .bs-cover { height: 260px; }
      .bs-masthead-title { font-size: 1.8rem; }
      .bs-columns-wrap { padding: 0 12px 32px; }
      .bs-footer { padding: 28px 16px 20px; }
      .bs-footer-inner { gap: 28px; }
      .bs-footer-archive { columns: 1; }
    }

    /* ---- Podcast player ---- */
    .bs-podcast-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #0d1a0d;
      border-top: 1px solid #1a3a1a;
      border-bottom: 1px solid #1a3a1a;
      padding: 10px 18px;
      flex-wrap: wrap;
    }
    .bs-podcast-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .bs-podcast-label {
      flex-shrink: 0;
      min-width: 160px;
    }
    .bs-podcast-title {
      font-size: 0.75rem;
      font-weight: 700;
      color: #66cc88;
      letter-spacing: 0.04em;
    }
    .bs-podcast-sub {
      font-size: 0.62rem;
      color: #448;
      margin-top: 1px;
    }
    .bs-podcast-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 200px;
    }
    .bs-podcast-play {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #336633;
      background: #0a2010;
      color: #66cc88;
      font-size: 0.85rem;
      cursor: pointer;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, border-color 0.15s;
      padding: 0;
    }
    .bs-podcast-play:hover { background: #142814; border-color: #66cc88; }
    .bs-podcast-play.playing { color: #aaddaa; }
    .bs-podcast-progress-wrap {
      display: flex;
      align-items: center;
      gap: 7px;
      flex: 1;
    }
    .bs-podcast-time {
      font-size: 0.62rem;
      color: #556;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      min-width: 30px;
    }
    .bs-podcast-seek {
      flex: 1;
      height: 3px;
      -webkit-appearance: none;
      appearance: none;
      background: #1a2a1a;
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }
    .bs-podcast-seek::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #66cc88;
      cursor: pointer;
    }
    .bs-podcast-seek::-moz-range-thumb {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #66cc88;
      border: none;
      cursor: pointer;
    }
    @media (max-width: 500px) {
      .bs-podcast-label { display: none; }
    }
