/* =========================================================
   BMT Editorial Type-A — Production CSS v1.0
   File: /wp-content/themes/kadence-child/css/bmt-editorial-a.css

   Structure:
    0.  CSS Variables
    1.  Reset & WordPress theme isolation
    2.  Progress Bar
    3.  Top Bar
    4.  Article Header
    5.  Hero Image
    6.  Body + Sidebar grid
    7.  Body typography
    8.  Component — Drop Cap
    9.  Component — Pull Quote
   10.  Component — BMT Box (default / warning / tip)
   11.  Component — Number Cards
   12.  Component — Data Table (desktop + mobile card-flip)
   13.  Component — Section Divider
   14.  Component — Editor Note
   15.  Tags
   16.  Sidebar — TOC
   17.  Sidebar — Rail Cards (Related / Stats / Sources)
   18.  Disclaimer
   19.  Related Articles
   20.  Footer
   21.  Floating Share Bar
   22.  Responsive
   23.  Print
   ========================================================= */


/* ─────────────────────────────────────────────
   0. CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --ea-bg:          #fafaf7;
  --ea-bg-tint:     #f3f1ec;
  --ea-ink:         #111010;
  --ea-ink-mid:     #2e2e2e;
  --ea-ink-sub:     #525252;
  --ea-ink-muted:   #888888;
  --ea-rule-heavy:  #111010;
  --ea-rule-mid:    #c0bbb2;
  --ea-rule-light:  #e5e2da;
  --ea-accent:      #0c3060;
  --ea-accent-mid:  #174d9a;
  --ea-accent-tint: #edf2fb;
  --ea-gold:        #9a7b3f;
  --ea-gold-light:  #c9a84c;
  --ea-red:         #b5291c;
  --ea-green:       #1a6e3c;

  --ea-serif:       'Lora', 'Georgia', serif;
  --ea-body-serif:  'Source Serif 4', Georgia, serif;
  --ea-sans:        'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  --ea-col-max:     1180px;
  --ea-col-text:    680px;
  --ea-col-wide:    860px;
  --ea-topbar-h:    52px;

  --ea-ease:        cubic-bezier(0.22, 1, 0.36, 1);
}


/* ─────────────────────────────────────────────
   1. RESET & WORDPRESS THEME ISOLATION
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--ea-topbar-h) + 16px); }

body.bmt-ea-active {
  background: var(--ea-bg) !important;
  color: var(--ea-ink);
  font-family: var(--ea-body-serif);
  font-size: 19px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* Hide theme chrome */

body.bmt-ea-active .site-header,
body.bmt-ea-active #masthead,
body.bmt-ea-active .site-footer,
body.bmt-ea-active #colophon,
body.bmt-ea-active .entry-header,
body.bmt-ea-active .page-header,
body.bmt-ea-active .entry-hero,
body.bmt-ea-active h1.entry-title:not(.bmt-ea-title) { display: none !important; }
body.bmt-ea-active .bmt-article-title { display: none !important; }

/* Prevent duplicate h1 / brand span injected by WP/plugins */
.bmt-ea-body > h1:first-child,
.bmt-ea-body > h1:nth-child(2),
.bmt-ea-body > span.bmt-brand:first-child { display: none !important; }

/* Admin bar offset */
body.admin-bar .bmt-ea-topbar { top: 32px; }

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


/* ─────────────────────────────────────────────
   2. PROGRESS BAR
───────────────────────────────────────────── */
.bmt-ea-progress {
  position: fixed;
  top: 0; left: 0; z-index: 99999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--ea-accent) 0%, var(--ea-gold-light) 100%);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}


/* ─────────────────────────────────────────────
   3. TOP BAR
───────────────────────────────────────────── */
.bmt-ea-topbar {
  position: sticky;
  top: 0; z-index: 10000;
  background: var(--ea-ink);
  height: var(--ea-topbar-h);
}
.bmt-ea-topbar__inner {
  max-width: var(--ea-col-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bmt-ea-topbar__brand {
  font-family: var(--ea-serif);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bmt-ea-topbar__brand span { color: var(--ea-gold-light); }
.bmt-ea-topbar__nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
}
.bmt-ea-topbar__nav a {
  font-family: var(--ea-sans);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.bmt-ea-topbar__nav a:hover { color: #fff; }
.bmt-ea-topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.bmt-ea-topbar__date {
  font-family: var(--ea-sans);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.6);
}
.bmt-ea-topbar__home-btn {
  font-family: var(--ea-sans);
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
.bmt-ea-topbar__home-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); }


/* ─────────────────────────────────────────────
   4. ARTICLE HEADER
───────────────────────────────────────────── */
.bmt-ea-header {
  max-width: var(--ea-col-wide);
  margin: 0 auto;
  padding: 56px 24px 0;
  text-align: center;
}
.bmt-ea-header__inner { max-width: 100%; }

/* Category label */
.bmt-ea-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ea-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ea-accent);
  margin-bottom: 20px;
}
.bmt-ea-category::before,
.bmt-ea-category::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--ea-accent);
  opacity: 0.45;
}
.bmt-ea-category a { color: inherit; transition: opacity 0.2s; }
.bmt-ea-category a:hover { opacity: 0.7; }

/* Title */
.bmt-ea-title {
  font-family: var(--ea-serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ea-ink);
  margin: 0 auto 24px;
  max-width: 820px;
}

/* Header decorative rule */
.bmt-ea-header-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  margin: 0 auto 24px;
}
.bmt-ea-header-rule span:nth-child(1),
.bmt-ea-header-rule span:nth-child(3) {
  flex: 1; height: 1px;
  background: var(--ea-rule-mid);
}
.bmt-ea-header-rule span:nth-child(2) {
  width: 6px; height: 6px;
  background: var(--ea-accent);
  transform: rotate(45deg);
  margin: 0 12px;
  flex-shrink: 0;
}

/* Deck */
.bmt-ea-deck {
  font-family: var(--ea-sans);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ea-ink-sub);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 28px;
}

/* Byline */
.bmt-ea-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--ea-rule-light);
  border-bottom: 1px solid var(--ea-rule-light);
  padding: 14px 0;
}
.bmt-ea-byline__author {
  font-family: var(--ea-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ea-ink);
}
.bmt-ea-byline__sep {
  width: 3px; height: 3px;
  background: var(--ea-ink-muted);
  border-radius: 50%;
  flex-shrink: 0;
}
.bmt-ea-byline__date,
.bmt-ea-byline__reviewed {
  font-family: var(--ea-sans);
  font-size: 0.8rem;
  color: var(--ea-ink-muted);
}
.bmt-ea-byline__read {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ea-sans);
  font-size: 0.8rem;
  color: var(--ea-ink-muted);
}
.bmt-ea-byline__read svg { opacity: 0.55; }


/* ─────────────────────────────────────────────
   5. HERO IMAGE
───────────────────────────────────────────── */
.bmt-ea-hero {
  max-width: var(--ea-col-max);
  margin: 32px auto 0;
  padding: 0 24px;
}
.bmt-ea-hero__wrap {
  position: relative;
  overflow: hidden;
  background: var(--ea-accent);
  max-height: 520px;
}
.bmt-ea-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}
.bmt-ea-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.bmt-ea-hero__caption {
  font-family: var(--ea-sans);
  font-size: 0.75rem;
  color: var(--ea-ink-muted);
  padding: 9px 0 0;
  border-top: 1px solid var(--ea-rule-light);
  margin-top: 10px;
}


/* ─────────────────────────────────────────────
   6. BODY + SIDEBAR GRID
───────────────────────────────────────────── */
.bmt-ea-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--ea-col-text)) 252px;
  gap: 0 56px;
  max-width: var(--ea-col-max);
  margin: 0 auto;
  padding: 48px 24px 80px;
  align-items: start;
}


/* ─────────────────────────────────────────────
   7. BODY TYPOGRAPHY
───────────────────────────────────────────── */
.bmt-ea-body { min-width: 0; }

.bmt-ea-body p {
  margin-bottom: 26px;
  color: var(--ea-ink-mid);
  font-size: 1rem;
  line-height: 1.82;
}

/* Body inline links — gold underline slide */
.bmt-ea-body p a,
.bmt-ea-body li a {
  color: var(--ea-ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 -4px 0 rgba(201,168,76,0.28);
  transition: box-shadow 0.2s ease, color 0.2s ease;
}
.bmt-ea-body p a:hover,
.bmt-ea-body li a:hover {
  box-shadow: inset 0 -1.4em 0 rgba(201,168,76,0.18);
  color: var(--ea-accent);
}

/* Auto-links (JS injected) */
.bmt-ea-body .bmt-ea-autolink {
  font-weight: 700;
  border-bottom: 1px solid rgba(201,168,76,0.8);
  padding-bottom: 1px;
  color: inherit;
  text-decoration: none;
}
.bmt-ea-body .bmt-ea-autolink:hover { opacity: 0.75; }

.bmt-ea-body h2 {
  font-family: var(--ea-sans);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ea-ink);
  margin: 56px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ea-rule-heavy);
  position: relative;
}
.bmt-ea-body h2::before {
  content: '';
  position: absolute;
  left: -20px; top: 0; bottom: 10px;
  width: 3px;
  background: var(--ea-accent);
}

.bmt-ea-body h3 {
  font-family: var(--ea-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ea-ink);
  margin: 36px 0 14px;
}

.bmt-ea-body ul {
  margin: 16px 0 24px;
  padding-left: 0;
  list-style: none;
}
.bmt-ea-body li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--ea-ink-mid);
  line-height: 1.75;
}
.bmt-ea-body li::before {
  content: '▸';
  position: absolute;
  left: 0; top: 0.1em;
  color: var(--ea-gold);
  font-size: 0.85em;
}


/* ─────────────────────────────────────────────
   8. DROP CAP
───────────────────────────────────────────── */
.bmt-ea-body p.bmt-dropcap::first-letter {
  float: left;
  font-family: var(--ea-serif);
  font-weight: 900;
  font-size: 5.2rem;
  line-height: 0.8;
  padding: 6px 14px 0 0;
  color: var(--ea-ink);
}


/* ─────────────────────────────────────────────
   9. PULL QUOTE
───────────────────────────────────────────── */
.bmt-ea-body .bmt-pullquote {
  margin: 48px -20px;
  padding: 32px 32px 28px 40px;
  border-left: 4px solid var(--ea-accent);
  background: var(--ea-accent-tint);
  position: relative;
}
.bmt-ea-body .bmt-pullquote::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 26px;
  font-family: var(--ea-serif);
  font-size: 5rem;
  color: var(--ea-accent);
  opacity: 0.18;
  line-height: 1;
}
.bmt-ea-body .bmt-pullquote p {
  font-family: var(--ea-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ea-accent);
  margin: 0 !important;
  position: relative;
}
.bmt-ea-body .bmt-pullquote cite {
  display: block;
  font-family: var(--ea-sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ea-ink-muted);
  margin-top: 14px;
}


/* ─────────────────────────────────────────────
   10. BMT BOX (default / warning / tip)
───────────────────────────────────────────── */
.bmt-ea-body .bmt-box {
  margin: 44px 0;
  border-top: 3px solid var(--ea-rule-heavy);
  border-bottom: 1px solid var(--ea-rule-light);
  background: var(--ea-bg-tint);
}
.bmt-ea-body .bmt-box__inner { padding: 26px 30px; }

.bmt-ea-body .bmt-box__label {
  font-family: var(--ea-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ea-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bmt-ea-body .bmt-box__label::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--ea-rule-light);
}

.bmt-ea-body .bmt-box h3 {
  font-family: var(--ea-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ea-ink);
  margin: 0 0 14px;
}

.bmt-ea-body .bmt-box p {
  font-family: var(--ea-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ea-ink-sub);
  margin-bottom: 12px !important;
}
.bmt-ea-body .bmt-box p:last-child { margin-bottom: 0 !important; }

.bmt-ea-body .bmt-box ul {
  font-family: var(--ea-sans);
  font-size: 0.92rem;
  padding-left: 0;
  margin-top: 12px;
  list-style: none;
}
.bmt-ea-body .bmt-box ul li {
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--ea-rule-light);
  color: var(--ea-ink-sub);
  line-height: 1.5;
}
.bmt-ea-body .bmt-box ul li:last-child { border-bottom: none; }
.bmt-ea-body .bmt-box ul li::before {
  content: '→';
  color: var(--ea-accent);
  font-size: 0.85rem;
}
.bmt-ea-body .bmt-box ul li strong { color: var(--ea-ink); }
.bmt-ea-body .bmt-box ul li em { color: var(--ea-red); font-style: normal; font-weight: 600; }

/* Warning variant */
.bmt-ea-body .bmt-box--warning { border-top-color: var(--ea-red); }
.bmt-ea-body .bmt-box--warning .bmt-box__label { color: var(--ea-red); }

/* Tip variant */
.bmt-ea-body .bmt-box--tip { border-top-color: var(--ea-gold); }
.bmt-ea-body .bmt-box--tip .bmt-box__label { color: var(--ea-gold); }


/* ─────────────────────────────────────────────
   11. NUMBER CARDS
───────────────────────────────────────────── */
.bmt-ea-body .bmt-numcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1px;
  background: var(--ea-rule-mid);
  border: 1px solid var(--ea-rule-mid);
  margin: 44px 0;
}
.bmt-ea-body .bmt-numcard {
  background: var(--ea-bg);
  padding: 22px 16px 18px;
  text-align: center;
}
.bmt-ea-body .bmt-numcard__val {
  font-family: var(--ea-serif);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ea-accent);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.bmt-ea-body .bmt-numcard__val--danger { color: var(--ea-red); }
.bmt-ea-body .bmt-numcard__val--good   { color: var(--ea-green); }
.bmt-ea-body .bmt-numcard__label {
  font-family: var(--ea-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ea-ink-muted);
}
.bmt-ea-body .bmt-numcard__desc {
  font-family: var(--ea-sans);
  font-size: 0.74rem;
  color: var(--ea-ink-sub);
  margin-top: 4px;
  line-height: 1.4;
}


/* ─────────────────────────────────────────────
   12. DATA TABLE
───────────────────────────────────────────── */
/* ── Wrapper ── */
.bmt-ea-body .bmt-table-wrap {
  margin: 44px 0;
  border: 1px solid rgba(17,16,16,0.10);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Inner scroll container */
.bmt-ea-body .bmt-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ea-rule-mid) transparent;
}
.bmt-ea-body .bmt-table-scroll::-webkit-scrollbar { height: 4px; }
.bmt-ea-body .bmt-table-scroll::-webkit-scrollbar-thumb { background: var(--ea-rule-mid); border-radius: 4px; }

/* Title */
.bmt-ea-body .bmt-table-title {
  font-family: var(--ea-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ea-ink);
  padding: 14px 16px 12px;
  background: var(--ea-bg-tint);
  border-bottom: 1px solid var(--ea-rule-light);
}

/* Table base */
.bmt-ea-body table.bmt-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ea-sans);
  font-size: 0.92rem;
  table-layout: auto;
}
.bmt-ea-body .bmt-table th {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 14px;
  border-bottom: 2px solid var(--ea-rule-heavy);
  color: var(--ea-ink);
  background: var(--ea-bg-tint);
  text-align: left;
  white-space: nowrap;
}
.bmt-ea-body .bmt-table th:not(:first-child) { text-align: right; }
.bmt-ea-body .bmt-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--ea-rule-light);
  color: var(--ea-ink-sub);
  line-height: 1.45;
  vertical-align: top;
  font-variant-numeric: tabular-nums;
}
.bmt-ea-body .bmt-table td:first-child { font-weight: 700; color: var(--ea-ink); }
.bmt-ea-body .bmt-table td:not(:first-child) { text-align: right; }
.bmt-ea-body .bmt-table tbody tr:last-child td { border-bottom: none; }
.bmt-ea-body .bmt-table tbody tr:hover td { background: var(--ea-bg-tint); }
.bmt-ea-body .bmt-table strong { color: var(--ea-ink); font-weight: 700; }

/* Highlight row */
.bmt-ea-body .bmt-table tr.bmt-table__highlight td {
  background: #fff8e6;
  font-weight: 600;
  color: var(--ea-ink);
}
.bmt-ea-body .bmt-val--danger { color: var(--ea-red);   font-weight: 700; }
.bmt-ea-body .bmt-val--good   { color: var(--ea-green); font-weight: 700; }

/* Table footnote */
.bmt-ea-body .bmt-table-note {
  font-family: var(--ea-sans);
  font-size: 0.72rem;
  color: var(--ea-ink-muted);
  padding: 10px 16px 12px;
  border-top: 1px solid var(--ea-rule-light);
}

/* ── Mobile Card-Flip (max 700px) ── */
@media (max-width: 700px) {
  .bmt-ea-body .bmt-table-wrap {
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .bmt-ea-body .bmt-table-scroll { overflow: visible; background: none; }

  .bmt-ea-body table.bmt-table,
  .bmt-ea-body .bmt-table thead,
  .bmt-ea-body .bmt-table tbody,
  .bmt-ea-body .bmt-table th,
  .bmt-ea-body .bmt-table td,
  .bmt-ea-body .bmt-table tr { display: block; width: 100%; box-sizing: border-box; }

  .bmt-ea-body .bmt-table thead tr { display: none; }

  .bmt-ea-body .bmt-table-title {
    border-radius: 8px 8px 0 0;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .bmt-ea-body table.bmt-table caption {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
    border-radius: 8px 8px 0 0;
    padding: 14px 16px 12px;
    background: var(--ea-bg-tint);
    border-bottom: 1px solid var(--ea-rule-light);
    font-family: var(--ea-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ea-ink);
  }

  /* Each row = card */
  .bmt-ea-body .bmt-table tbody tr {
    border: 1px solid var(--ea-rule-light);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background: #fff;
  }

  /* Each cell = label on top, value below */
  .bmt-ea-body .bmt-table td {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--ea-rule-light);
    text-align: left !important;
    font-size: 0.9rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .bmt-ea-body .bmt-table td:last-child { border-bottom: none; }

  /* data-label injected by bmt-editorial-a.js */
  .bmt-ea-body .bmt-table td[data-label]::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ea-ink-muted);
    white-space: normal;
    line-height: 1.3;
    margin-bottom: 2px;
  }

  /* First cell = row title */
  .bmt-ea-body .bmt-table td:first-child {
    background: var(--ea-bg-tint) !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 2px solid var(--ea-rule-light) !important;
    justify-content: flex-start;
  }
  .bmt-ea-body .bmt-table td:first-child::before { display: none; }
}


/* ─────────────────────────────────────────────
   13. SECTION DIVIDER
───────────────────────────────────────────── */
.bmt-ea-body .bmt-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 52px 0;
  font-family: var(--ea-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ea-ink-muted);
}
.bmt-ea-body .bmt-divider::before,
.bmt-ea-body .bmt-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--ea-rule-light);
}


/* ─────────────────────────────────────────────
   14. EDITOR NOTE
───────────────────────────────────────────── */
.bmt-ea-body .bmt-editor-note {
  font-family: var(--ea-sans);
  font-size: 0.8rem;
  background: #fffbea;
  border-left: 3px solid var(--ea-gold);
  padding: 10px 16px;
  color: var(--ea-ink-sub);
  margin: 24px 0;
  font-style: italic;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   15. TAGS
───────────────────────────────────────────── */
.bmt-ea-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
}
.bmt-ea-tag {
  font-family: var(--ea-sans);
  font-size: 0.69rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ea-accent);
  border: 1px solid var(--ea-rule-mid);
  padding: 4px 12px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bmt-ea-tag:hover { background: var(--ea-accent); color: #fff; border-color: var(--ea-accent); }


/* ─────────────────────────────────────────────
   16. SIDEBAR — TOC
───────────────────────────────────────────── */
.bmt-ea-sidebar {
  position: sticky;
  top: calc(var(--ea-topbar-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: start;
}

.bmt-ea-toc {
  border-top: 2px solid var(--ea-rule-heavy);
  padding-top: 16px;
  overflow: hidden;
}
.bmt-ea-toc__title {
  font-family: var(--ea-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6f6f6f;
  margin: 0 0 14px;
}
.bmt-ea-toc__list {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: toc;
}
.bmt-ea-toc__list li {
  counter-increment: toc;
  border-bottom: 1px solid var(--ea-rule-light);
}
.bmt-ea-toc__list li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  font-family: var(--ea-sans);
  font-size: 0.8rem;
  color: var(--ea-ink-sub);
  line-height: 1.35;
  transition: color 0.2s;
}
.bmt-ea-toc__list li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ea-ink-muted);
  flex-shrink: 0;
}
.bmt-ea-toc__list li a:hover { color: var(--ea-accent); }
.bmt-ea-toc__list li.bmt-ea-toc--active a { color: var(--ea-accent); font-weight: 600; }
.bmt-ea-toc__list li.bmt-ea-toc--active a::before { color: var(--ea-accent); }


/* ─────────────────────────────────────────────
   17. SIDEBAR — RAIL CARDS (Related / Stats / Sources)
───────────────────────────────────────────── */
.bmt-ea-rail-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,16,16,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
}
.bmt-ea-rail-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ea-accent), var(--ea-gold-light));
}
.bmt-ea-rail-head {
  padding: 14px 14px 10px 18px;
  border-bottom: 1px solid var(--ea-rule-light);
}
.bmt-ea-rail-title {
  margin: 0;
  font-family: var(--ea-sans);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ea-ink-muted);
}
.bmt-ea-rail-body { padding: 10px 14px 14px 18px; }

/* Related links (JS generated) */
.bmt-ea-rail-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px;
  margin: 6px 0;
  border-radius: 6px;
  border: 1px solid var(--ea-rule-light);
  background: var(--ea-bg-tint);
  font-family: var(--ea-sans);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ea-ink-mid);
  transition: all 0.18s var(--ea-ease);
  line-height: 1.4;
}
.bmt-ea-rail-link > span:first-child {
  flex: 1;
  min-width: 0;
}
.bmt-ea-rail-link:hover {
  background: #fff;
  border-color: var(--ea-rule-mid);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  color: var(--ea-accent);
  transform: translateY(-1px);
}

/* Cluster label */
.bmt-ea-cluster-label {
  font-family: var(--ea-sans);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ea-ink-muted);
  margin: 8px 0 4px;
}

/* Pill badge */
.bmt-ea-pill {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--ea-accent);
  flex-shrink: 0;
  white-space: nowrap;
}
.bmt-ea-pill.gov { background: var(--ea-ink); }
.bmt-ea-pill.new { background: var(--ea-gold-light); color: #1a1a1a; }

/* Stats row */
.bmt-ea-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 10px;
  border-radius: 6px;
  background: var(--ea-bg-tint);
  margin: 6px 0;
  font-family: var(--ea-sans);
}
.bmt-ea-stat .l { font-size: 0.75rem; font-weight: 600; color: var(--ea-ink-muted); }
.bmt-ea-stat .r { font-size: 0.85rem; font-weight: 700; color: var(--ea-ink); }

/* Official Sources link */
.bmt-ea-src-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px;
  margin: 6px 0;
  border-radius: 6px;
  border: 1px solid var(--ea-rule-light);
  background: var(--ea-bg-tint);
  font-family: var(--ea-sans);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ea-ink-mid);
  line-height: 1.4;
  transition: all 0.18s;
}
.bmt-ea-src-link:hover { background: #fff; border-color: var(--ea-rule-mid); color: var(--ea-accent); }


/* ─────────────────────────────────────────────
   18. DISCLAIMER
───────────────────────────────────────────── */
.bmt-ea-disclaimer {
  max-width: var(--ea-col-text);
  margin: 0 auto;
  padding: 0 24px 40px;
  border-top: 2px solid var(--ea-rule-heavy);
}
.bmt-ea-disclaimer p {
  font-family: var(--ea-sans);
  font-size: 0.75rem;
  color: var(--ea-ink-muted);
  line-height: 1.6;
  padding-top: 20px;
  margin: 0;
}


/* ─────────────────────────────────────────────
   19. RELATED ARTICLES
───────────────────────────────────────────── */
.bmt-ea-related {
  background: var(--ea-bg-tint);
  border-top: 3px solid var(--ea-rule-heavy);
  padding: 48px 24px 64px;
}
.bmt-ea-related__inner { max-width: var(--ea-col-max); margin: 0 auto; }
.bmt-ea-related__title {
  font-family: var(--ea-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ea-ink-muted);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bmt-ea-related__title::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--ea-rule-light);
}
.bmt-ea-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ea-rule-mid);
}
.bmt-ea-related__card {
  background: var(--ea-bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bmt-ea-related__card:first-child { background: var(--ea-accent-tint); }

.bmt-ea-related__card-img-link { display: block; overflow: hidden; }
.bmt-ea-related__card-img {
  width: 100%; height: 140px;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.bmt-ea-related__card-img-link:hover .bmt-ea-related__card-img { transform: scale(1.04); }

.bmt-ea-related__card-body { display: flex; flex-direction: column; gap: 6px; }
.bmt-ea-related__card-cat {
  font-family: var(--ea-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ea-accent);
}
.bmt-ea-related__card-title {
  font-family: var(--ea-serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ea-ink);
  margin-top: auto;
}
.bmt-ea-related__card-title a { color: inherit; transition: color 0.2s; }
.bmt-ea-related__card-title a:hover { color: var(--ea-accent); }
.bmt-ea-related__card:first-child .bmt-ea-related__card-title { font-size: 1.2rem; }
.bmt-ea-related__card-date {
  font-family: var(--ea-sans);
  font-size: 0.72rem;
  color: var(--ea-ink-muted);
}


/* ─────────────────────────────────────────────
   20. FOOTER
───────────────────────────────────────────── */
.bmt-ea-footer {
  max-width: var(--ea-col-max);
  margin: 0 auto 48px;
  padding: 20px 24px 28px;
  text-align: center;
  border-top: 1px solid var(--ea-rule-light);
}
.bmt-ea-footer__nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-family: var(--ea-sans);
  font-size: 0.78rem;
  font-weight: 600;
}
.bmt-ea-footer__nav a { color: var(--ea-ink-sub); transition: color 0.2s; }
.bmt-ea-footer__nav a:hover { color: var(--ea-accent); }
.bmt-ea-footer__sep { color: var(--ea-rule-mid); font-weight: 700; }
.bmt-ea-footer__copy {
  margin-top: 10px;
  font-family: var(--ea-sans);
  font-size: 0.75rem;
  color: var(--ea-ink-muted);
}


/* ─────────────────────────────────────────────
   21. FLOATING SHARE BAR
───────────────────────────────────────────── */
.bmt-ea-share-bar {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bmt-ea-share-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ea-ease), box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);

  color: #fff;
}
.bmt-ea-share-btn:hover { transform: scale(1.12); box-shadow: 0 4px 18px rgba(0,0,0,0.26); }
.bmt-ea-share-btn--share { background: var(--ea-accent); color: #fff; }
.bmt-ea-share-btn--top   { background: var(--ea-ink);   color: #fff; }
.bmt-ea-share-btn svg { display: block; }


/* ─────────────────────────────────────────────
   22. RESPONSIVE
───────────────────────────────────────────── */
/* Sidebar collapse */
@media (max-width: 1060px) {
  .bmt-ea-layout {
    grid-template-columns: 1fr;
    max-width: 740px;
    gap: 0;
  }
  .bmt-ea-body h2::before { display: none; }
  .bmt-ea-toc-chips { display: block; }

  /* Sidebar — unstick, move below article body */
  .bmt-ea-sidebar {
    position: static;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--ea-rule-heavy);
  }

  /* TOC replaced by chips — hide in sidebar */
  .bmt-ea-sidebar .bmt-ea-toc { display: none; }
}

/* Tablet */
@media (max-width: 800px) {
  .bmt-ea-topbar__date { display: none; }
  .bmt-ea-related__grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  .bmt-ea-title { font-size: 2rem; }
  .bmt-ea-deck  { font-size: 1rem; }
  .bmt-ea-hero  { padding: 0; }
  .bmt-ea-layout { padding: 28px 16px 60px; }

  .bmt-ea-body p.bmt-dropcap::first-letter { font-size: 4rem; }

  /* Pull quote negative margin — reset to match layout padding (16px) */
  .bmt-ea-body .bmt-pullquote {
    margin: 32px -16px;
    padding: 22px 20px 20px 24px;
  }
  .bmt-ea-body .bmt-pullquote p { font-size: 1.1rem; }

  /* BMT Box padding reduction */
  .bmt-ea-body .bmt-box__inner { padding: 18px 18px; }

  .bmt-ea-body .bmt-numcards { grid-template-columns: repeat(2, 1fr); }

  /* Hide byline separator dots — avoids awkward line breaks */
  .bmt-ea-byline { gap: 8px; }
  .bmt-ea-byline__sep { display: none; }
  .bmt-ea-byline__reviewed { display: none; }

  .bmt-ea-related__grid { grid-template-columns: 1fr; }
  .bmt-ea-related { padding: 32px 16px 48px; }

  .bmt-ea-disclaimer { padding: 0 16px 32px; }

  .bmt-ea-share-bar { bottom: 16px; right: 16px; }

  /* topbar nav — hidden below 600px (chips replace section nav) */
  .bmt-ea-topbar__nav { display: none; }
}

/* Extra small */
@media (max-width: 420px) {
  .bmt-ea-topbar__home-btn { display: none; }
  .bmt-ea-topbar__brand { font-size: 0.85rem; }
}


/* ─────────────────────────────────────────────
   23. PRINT
───────────────────────────────────────────── */
@media print {
  .bmt-ea-progress,
  .bmt-ea-topbar,
  .bmt-ea-sidebar,
  .bmt-ea-share-bar,
  .bmt-ea-related,
  .bmt-ea-footer { display: none !important; }

  .bmt-ea-layout { display: block; max-width: 100%; padding: 0; }
  .bmt-ea-body h2::before { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }

  /* Prevent mid-page breaks for boxes/tables in print */
  .bmt-ea-body .bmt-box,
  .bmt-ea-body .bmt-table-wrap,
  .bmt-ea-body .bmt-numcards { page-break-inside: avoid; }

  /* Show link URLs in print */
  .bmt-ea-body p a::after {
    content: " (" attr(href) ")";
    font-size: 0.82em;
    color: #555;
  }
}


/* a11y focus-visible + stronger TOC active indicator */
.bmt-ea-topbar__nav a:focus-visible,
.bmt-ea-topbar__home-btn:focus-visible,
.bmt-ea-body a:focus-visible,
.bmt-ea-tag:focus-visible,
.bmt-ea-rail-link:focus-visible,
.bmt-ea-src-link:focus-visible,
.bmt-ea-share-btn:focus-visible {
  outline: 3px solid rgba(12,48,96,0.35);
  outline-offset: 3px;
}

.bmt-ea-toc__list li.bmt-ea-toc--active a {
  position: relative;
}
.bmt-ea-toc__list li.bmt-ea-toc--active a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 2px;
  background: var(--ea-accent);
}


/* =====================================================
   Patch: Hybrid v1.2 — Professional + more mainstream
   - Adds TL;DR lede card + mobile TOC chips
   - Reduces mobile section spacing slightly
   ===================================================== */

/* TL;DR / Key Takeaway card */
.bmt-ea-lede-card{
  max-width: var(--ea-col-wide);
  margin: 22px auto 0;
  padding: 0 24px;
}
.bmt-ea-lede-card__inner{
  background: #fff;
  border: 1px solid rgba(17,16,16,0.10);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
}
.bmt-ea-lede-card__label{
  background: var(--ea-accent-tint);
  border-right: 1px solid rgba(17,16,16,0.08);
  padding: 16px 16px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-family: var(--ea-sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ea-accent);
}
.bmt-ea-lede-card__label span{
  display:inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ea-accent);
  color:#fff;
  letter-spacing: 0.10em;
  font-size: 0.62rem;
}
.bmt-ea-lede-card__body{
  padding: 16px 18px 14px;
}
.bmt-ea-lede-card__text{
  margin: 0;
  font-family: var(--ea-sans);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ea-ink-mid);
}
.bmt-ea-lede-card__points{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-family: var(--ea-sans);
  font-size: 0.9rem;
  color: var(--ea-ink-sub);
}
.bmt-ea-lede-card__points li{
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.bmt-ea-lede-card__points li::before{
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ea-gold);
  font-weight: 900;
}

/* Mobile "Jump to" chips (TOC) */
.bmt-ea-toc-chips{
  max-width: var(--ea-col-wide);
  margin: 14px auto 0;
  padding: 0 24px;
  display: none;
}
.bmt-ea-toc-chips__row{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.bmt-ea-toc-chip{
  flex: 0 0 auto;
  font-family: var(--ea-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ea-ink-mid);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,16,16,0.10);
  border-radius: 999px;
  padding: 8px 12px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.16s var(--ea-ease), box-shadow 0.16s var(--ea-ease), color 0.16s;
}
.bmt-ea-toc-chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--ea-accent);
}
.bmt-ea-toc-chip[aria-current="true"]{
  background: var(--ea-accent);
  border-color: var(--ea-accent);
  color: #fff;
}

/* Slightly reduce mobile section spacing for faster scanning */
@media (max-width: 600px){
  .bmt-ea-body h2{ margin: 44px 0 16px; }
  .bmt-ea-body p{ margin-bottom: 22px; }
  .bmt-ea-lede-card__inner{ grid-template-columns: 1fr; }
  .bmt-ea-lede-card__label{
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(17,16,16,0.08);
  }
  .bmt-ea-toc-chips{ display: block; }
}

/* Toast (copy/share feedback) */
.bmt-ea-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(17,16,16,0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--ea-sans);
  font-size: 0.8rem;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ea-ease), transform 0.18s var(--ea-ease);
}
.bmt-ea-toast.bmt-ea-toast--show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* ─────────────────────────────────────────
   Section Header (bmt-sec-header)
───────────────────────────────────────── */
.bmt-sec-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.bmt-sec-num {
  font-family: var(--ea-mono, 'Roboto Mono', monospace);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-sub, #94a3b8);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.bmt-sec-header h2 {
  margin: 0;
  line-height: 1.15;
}

/* ═══════════════════════════════════════════
   CONTENT COMPONENTS
═══════════════════════════════════════════ */

/* ── bmt-cols (2-column layout) ── */
.bmt-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 20px 0;
}
@media (max-width: 680px) {
  .bmt-cols { grid-template-columns: 1fr; gap: 16px; }
}

/* ── bmt-callout / bmt-info ── */
.bmt-callout {
  background: var(--c-bg-sub, #f8fafc);
  border-left: 3px solid var(--c-gold, #c9a84c);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.bmt-callout strong:first-child {
  display: block;
  font-family: var(--ea-sans, 'Pretendard', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-gold, #c9a84c);
  margin-bottom: 6px;
}
.bmt-callout p { margin: 6px 0 0; }
.bmt-callout.bmt-info {
  border-left-color: var(--c-accent, #3b82f6);
}
.bmt-callout.bmt-info strong:first-child {
  color: var(--c-accent, #3b82f6);
}

/* ── bmt-table color classes ── */
.bmt-table td.win { color: #166534; font-weight: 600; }
.bmt-table td.mid { color: #92400e; }
.bmt-table td.lose { color: #b91c1c; }


/* =====================================================================
   SERIES WIDGET — ported from Type-B (sidebar hub & series list)
   ===================================================================== */
/* Hide bmt-series in body before JS transplant */
.bmt-ea-body .bmt-series { display: none; }
/* Show after JS transplant to sidebar */
.bmt-ea-sidebar .bmt-series {
  display: block;
  padding: 16px;
  position: sticky;
  top: 52px;
}
.bmt-ea-rail-card.bmt-ea-series-card { padding: 0; overflow: hidden; }

.bmt-series-title-label {
  font-size: .60rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(11,18,32,.36);
  margin: 0 0 3px;
}
.bmt-series-group {
  font-size: .88rem;
  font-weight: 800;
  color: var(--ea-ink, #1a1a2e);
  margin: 0 0 12px;
  line-height: 1.3;
}
.bmt-series-progress-wrap { margin-bottom: 14px; }
.bmt-series-progress-track { height: 3px; background: rgba(11,18,32,.08); overflow: hidden; }
.bmt-series-progress-fill  { height: 100%; background: var(--c-gold, #c9a84c); transition: width .4s; }
.bmt-series-progress-label { font-size: .66rem; color: rgba(11,18,32,.36); margin-top: 4px; font-weight: 600; }

.bmt-series-list { margin-bottom: 12px; }
.bmt-series-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(11,18,32,.09);
}
.bmt-series-item.dimmed { opacity: .45; }
.bmt-series-item-n {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 900;
  background: rgba(11,18,32,.08);
  color: rgba(11,18,32,.36);
  flex-shrink: 0;
}
.bmt-series-item.current .bmt-series-item-n { background: var(--ea-ink, #1a1a2e); color: #fff; }
.bmt-series-item.live    .bmt-series-item-n { background: var(--c-gold, #c9a84c); color: #fff; }
.bmt-series-item-title { font-size: .80rem; line-height: 1.4; font-weight: 600; color: rgba(11,18,32,.52); }
.bmt-series-item.current .bmt-series-item-title { font-weight: 800; color: var(--ea-ink, #1a1a2e); }
.bmt-series-item-now { margin-left: 5px; font-size: .62rem; font-weight: 900; color: var(--c-gold, #c9a84c); letter-spacing: .06em; }

.bmt-series-more {
  width: 100%;
  border: 1px solid rgba(11,18,32,.09);
  background: transparent;
  padding: 6px 0;
  font-size: .72rem; font-weight: 700;
  color: rgba(11,18,32,.60);
  cursor: pointer;
  letter-spacing: .04em;
  margin-bottom: 14px;
  font-family: inherit;
}

/* Hub link area */
.bmt-series-hub-area {
  border-top: 2px solid var(--ea-ink, #1a1a2e);
  padding-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
  margin: 0 -16px -16px; /* negate rail-card padding */
}
.bmt-series-hub-item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: rgba(11,18,32,.06);
  opacity: .55;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.bmt-series-hub-item.live { background: rgba(201,168,76,.08); opacity: 1; }
.bmt-series-hub-icon { font-size: .80rem; color: rgba(11,18,32,.36); flex-shrink: 0; }
.bmt-series-hub-item.live .bmt-series-hub-icon { color: var(--c-gold, #c9a84c); }
.bmt-series-hub-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bmt-series-hub-label {
  display: block;
  font-size: .58rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(11,18,32,.40);
}
.bmt-series-hub-title { display: block; font-size: .78rem; color: rgba(11,18,32,.60); font-weight: 600; line-height: 1.3; }
.bmt-series-hub-status { font-size: .65rem; font-weight: 800; color: rgba(11,18,32,.40); flex-shrink: 0; letter-spacing: .04em; }
.bmt-series-hub-item.live .bmt-series-hub-status { color: var(--c-gold, #c9a84c); }

/* Navigation buttons */
/* Scroll buttons (full-width, same as Type-B) */
.bmt-series-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 0;
  border: none;
  cursor: pointer;
  font-size: 10px;
  background: rgba(11,18,32,.04);
  color: rgba(11,18,32,.35);
  border-radius: 4px;
  transition: background .15s, opacity .15s;
  margin: 2px 0;
  font-family: inherit;
}
.bmt-series-scroll-btn:hover { background: rgba(201,168,76,.08); color: var(--c-gold, #c9a84c); }