/* ================================================================
   GuyTalk Brief — Shared Stylesheet v2.0 (light theme)
   Usage: <link rel="stylesheet" href="/assets/brief.css">
   Matches landing page design system exactly.
   ================================================================ */

/* ---- VARIABLES ---- */
:root {
  --bg:            #F9F8F5;
  --bg-grad:       radial-gradient(ellipse 70% 40% at 50% -10%, rgba(43,111,255,0.04), transparent 65%);
  --surface:       #FFFFFF;
  --surface-2:     #F2F0EB;
  --border:        #E5E2DB;
  --border-light:  #D4D0C8;
  --text:          #0F1724;
  --text-2:        #6E6862;
  --text-3:        #9E9891;
  --accent:        #2B6FFF;
  --accent-h:      #1A5CEF;
  --accent-muted:  #EBF1FF;
  --amber:         #B87C35;
  --amber-muted:   rgba(184,124,53,0.08);
  --green:         #16A34A;
  --green-muted:   rgba(22,163,74,0.07);
  --red:           #DC2626;
  --sports:        #16A34A;
  --culture:       #C2410C;
  --r:             12px;
  --r-lg:          16px;
  --max-w:         860px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  background-image: var(--bg-grad);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px; line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s ease, color 0.15s ease; }
a:hover { border-bottom-color: var(--accent); }
p { margin: 0 0 14px; color: var(--text-2); }
strong { font-family: 'Inter Tight', sans-serif; font-weight: 700; color: var(--text); }
em { font-style: italic; }

/* ================================================================
   NAV
   ================================================================ */
.brief-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,248,245,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.brief-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 760px; margin: 0 auto;
}
.brief-wordmark {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 19px; letter-spacing: -0.03em; color: var(--text); border-bottom: 0;
}
.brief-wordmark .dot { color: var(--accent); }
.brief-wordmark .tm { font-size: 0.42em; vertical-align: super; font-weight: 700; letter-spacing: 0; margin-left: 1px; color: var(--text-secondary); }
.brief-wordmark:hover { border-bottom: 0; }
.brief-nav-right { display: flex; align-items: center; gap: 16px; }
.brief-nav-issue {
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3);
}
.brief-cta {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 7px 14px; background: var(--accent); color: white;
  border-radius: 7px; border-bottom: 0; transition: background 0.15s ease, transform 0.15s ease;
}
.brief-cta:hover { background: var(--accent-h); border-bottom: 0; transform: translateY(-1px); }

/* ================================================================
   ARTICLE LAYOUT
   ================================================================ */
.brief-article { max-width: var(--max-w); margin: 0 auto; padding: 52px 24px 80px; }

/* ---- Header ---- */
.brief-pretitle {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.brief-pretitle-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px rgba(43,111,255,0.4);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(43,111,255,0.45); }
  50%       { opacity: 0.6; box-shadow: 0 0 3px rgba(43,111,255,0.2); }
}
.brief-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 44px; line-height: 1.07; letter-spacing: -0.035em;
  color: var(--text); margin-bottom: 14px;
}
.brief-deck { font-size: 18px; color: var(--text-2); margin-bottom: 28px; }
.brief-meta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--text-3); letter-spacing: 0.04em;
  padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.brief-meta .sep { color: var(--border-light); }

/* ================================================================
   TOP MODULE — TODAY'S HITS + KEY TAKEAWAY
   ================================================================ */
.top-module {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 10px 28px 26px; margin-bottom: 48px;
  box-shadow: 0 6px 24px rgba(15,23,36,0.06);
}
.top-module-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin: 20px 0 4px;
  display: flex; align-items: center; gap: 9px;
}
.top-module-label::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hits-list { display: flex; flex-direction: column; margin-bottom: 20px; }
.hit-item {
  display: grid; grid-template-columns: 78px 1fr; align-items: start; gap: 18px;
  padding: 15px 0; border-top: 1px solid var(--border); text-decoration: none;
  color: var(--text); font-size: 15.5px; line-height: 1.5;
  transition: transform 0.14s ease;
}
.hit-item:first-child { border-top: 0; }
.hit-item:hover { transform: translateX(3px); border-bottom: 0; }
.hit-tag {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); border-left: 3px solid var(--border);
  padding: 2px 0 2px 13px; line-height: 1.3;
}
.hit-sports .hit-tag  { color: var(--sports);  border-color: var(--sports); }
.hit-markets .hit-tag { color: var(--accent);  border-color: var(--accent); }
.hit-golf .hit-tag    { color: var(--amber);   border-color: var(--amber); }
.hit-f1 .hit-tag      { color: var(--sports);  border-color: var(--sports); }
.hit-culture .hit-tag { color: var(--culture); border-color: var(--culture); }
.hit-text { color: var(--text-2); }
.hit-item:hover .hit-text { color: var(--text); }
.key-takeaway { border-top: 1px solid var(--border); padding-top: 16px; }
.kt-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 8px;
}
.kt-text { font-size: 15px; line-height: 1.55; color: var(--text); margin: 0; }

/* Other scores */
.other-scores-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.other-score-card { margin-bottom: 20px; }
.other-score-note { font-size: 14px; color: var(--text-2); margin: 8px 0 0; line-height: 1.45; }
.scoreboard-sm .score-num { font-size: 24px !important; }
.scoreboard-sm .score-team { font-size: 13px !important; }
.scoreboard-sm .score-logo { width: 28px !important; height: 28px !important; }

/* Markets mood line */
.markets-mood { font-size: 16px; font-weight: 500; color: var(--text); margin: 0 0 24px; line-height: 1.5; }

/* Golf leaderboard line */
.leaderboard-line { font-size: 14px; color: var(--text-2); margin: -4px 0 20px; }

/* Culture flat cards */
.culture-line { font-size: 14.5px; color: var(--text-2); margin: 6px 0 0; line-height: 1.5; }
.culture-line strong { color: var(--text); font-weight: 600; }

/* Today at a Glance — labeled bullets */
.tldr-glance-item { align-items: flex-start; gap: 12px; }
.glance-label {
  flex-shrink: 0; min-width: 88px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding-top: 3px;
}

/* ================================================================
   TL;DR CARD
   ================================================================ */
.tldr {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px; margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.tldr-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.tldr-list { list-style: none; }
.tldr-item {
  display: flex; gap: 12px; padding: 8px 0;
  font-size: 15px; line-height: 1.5; color: var(--text-2);
  border-top: 1px solid var(--border);
}
.tldr-item:first-child { border-top: 0; padding-top: 0; }
.tldr-item a { color: var(--text-2); border-bottom: 0; }
.tldr-item a:hover { color: var(--accent); }
.tldr-bottom { margin-top: 56px; margin-bottom: 0; }
.tldr-bottom .tldr-label { color: var(--text-3); }

/* ---- Tag chips ---- */
.tag {
  flex-shrink: 0; font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px;
  height: fit-content; transition: background 0.15s ease, border-color 0.15s ease;
}
.tag-blue   { color: var(--accent);  border-color: rgba(43,111,255,0.28);  background: var(--accent-muted); }
.tag-amber  { color: var(--amber);   border-color: rgba(184,124,53,0.28);  background: var(--amber-muted); }
.tag-green  { color: var(--sports);  border-color: rgba(22,163,74,0.28);   background: var(--green-muted); }
.tag-link   { border-bottom: 0; }
.tag-link:hover { border-bottom: 0; }
.tag-link:hover .tag-blue  { background: rgba(43,111,255,0.12); border-color: var(--accent); }
.tag-link:hover .tag-amber { background: rgba(184,124,53,0.14); border-color: var(--amber); }
.tag-link:hover .tag-green { background: rgba(22,163,74,0.12);  border-color: var(--sports); }

/* ================================================================
   SECTIONS
   ================================================================ */
.brief-section { margin-top: 72px; }
.section-label {
  display: block;
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 2px solid var(--border);
}
.section-label.sl-sports  { color: var(--sports); border-color: rgba(22,163,74,0.45); }
.section-label.sl-markets { color: var(--accent);  border-color: rgba(43,111,255,0.45); }
.section-label.sl-culture { color: var(--culture); border-color: rgba(194,65,12,0.45); }
.section-label.sl-golf    { color: var(--amber);   border-color: rgba(184,124,53,0.45); }
.section-label.sl-take    { color: var(--accent);  border-color: rgba(43,111,255,0.45); }

/* THE TAKE — two clearly-labelled opinions (Office Take + Bar Argument) */
.take-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.take-card {
  position: relative; padding: 22px 22px 18px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface);
}
.take-card.take-office { border-left: 4px solid var(--accent); }
.take-card.take-bar    { border-left: 4px solid #DC2626; background: rgba(220,38,38,0.035); }
.take-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 10px;
}
.take-card.take-bar .take-label { color: #DC2626; }
.take-text {
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 18px;
  line-height: 1.4; color: var(--text); margin: 0 0 12px;
}
.take-hint {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.04em; color: var(--text-3);
}
/* The Take jump-link gets a subtle accent so it stands out in the nav */
.sj-link.sj-link-take { color: var(--accent); font-weight: 700; }
@media (max-width: 640px) {
  .take-grid { grid-template-columns: 1fr; }
  .take-text { font-size: 16.5px; }
}
.brief-section h3 {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 26px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text); margin: 36px 0 14px;
}
.brief-section h3:first-of-type { margin-top: 0; }

/* ================================================================
   INLINE LINKS
   ================================================================ */
.player { color: var(--text); font-weight: 600; border-bottom: 1px dashed rgba(43,111,255,0.35); transition: color 0.15s ease; }
.player:hover { color: var(--accent); border-bottom-color: var(--accent); }

.ticker { font-family: 'JetBrains Mono', monospace; font-size: 0.88em; font-weight: 600; color: var(--text); border-bottom: 1px dashed rgba(43,111,255,0.35); letter-spacing: 0.02em; }
.ticker:hover { color: var(--accent); border-bottom-color: var(--accent); }

.brand { color: var(--amber); font-weight: 600; border-bottom: 1px dashed rgba(184,124,53,0.35); }
.brand:hover { color: var(--amber); opacity: 0.8; border-bottom-color: var(--amber); }

/* ================================================================
   DETAIL LIST
   ================================================================ */
.detail-list { list-style: none; margin: 16px 0 0; padding: 0; }
.detail-list li {
  padding: 7px 0; font-size: 15.5px; line-height: 1.58;
  display: flex; gap: 12px; color: var(--text-2);
}
.detail-list li::before {
  content: ''; flex-shrink: 0; width: 3px;
  background: var(--border-light); border-radius: 2px;
  margin-top: 6px; margin-bottom: 6px;
}
.dl-label { font-family: 'Inter Tight', sans-serif; font-weight: 700; color: var(--text); margin-right: 4px; }

/* ================================================================
   ANGLE CALLOUTS — Group Chat, Bar Argument, Office Take
   ================================================================ */
.angle-box {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px; margin-top: 16px;
}
.angle-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 6px; display: block;
}
.angle-text { font-size: 15px; color: var(--text); line-height: 1.58; }

/* Bar Argument — left accent + amber tint */
.angle-bar {
  background: rgba(184,124,53,0.05);
  border-color: rgba(184,124,53,0.2);
  border-left: 3px solid rgba(184,124,53,0.55);
  padding-left: 16px;
}
.angle-bar .angle-label { color: rgba(156,100,28,0.85); }

/* Office Take — top-of-brief callout, blue accent tint */
.office-take-callout {
  background: rgba(43,111,255,0.04);
  border-color: rgba(43,111,255,0.18);
  border-left: 3px solid rgba(43,111,255,0.45);
  padding-left: 16px;
  margin-top: 0; margin-bottom: 28px;
}
.office-take-callout .angle-label { color: var(--accent); }
.office-take-callout .angle-text { font-size: 15.5px; font-style: italic; color: var(--text-2); }

/* ================================================================
   SCOREBOARD
   ================================================================ */
.scoreboard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px; margin: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.score-side { min-width: 110px; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.score-team { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.score-num { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 36px; letter-spacing: -0.03em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.score-center { text-align: center; flex-shrink: 0; }
.score-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.score-badge { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

/* ================================================================
   STAT BLOCK
   ================================================================ */
.stat-block {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin: 22px 0;
}
.stat-cell { background: var(--surface); padding: 16px 18px; }
.stat-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 26px; letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 5px; color: var(--text);
}
.stat-num.up { color: var(--green); }
.stat-num.dn { color: var(--red); }
.stat-num.amber { color: var(--amber); }
.stat-lbl { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }

/* ================================================================
   MARKET TICKER TABLE
   ================================================================ */
/* Legacy markets table — kept so already-published issues still render */
.mkt-table {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.mkt-table-hd {
  padding: 14px 22px 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between;
  background: var(--surface-2);
}
.mkt-table-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.mkt-table-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-3); }
.mkt-table-body { padding: 8px 22px 14px; font-family: 'JetBrains Mono', monospace; }
.mkt-cols, .mkt-row {
  display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 0.9fr;
  gap: 10px; padding: 8px 0; font-size: 13px; align-items: baseline;
}
.mkt-cols { border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.mkt-cols .th {
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3);
}
.mkt-cols .th:nth-child(n+2) { text-align: right; }
.mkt-row .m-name { color: var(--text); font-weight: 600; }
.mkt-row .m-val, .mkt-row .m-day, .mkt-row .m-wk { text-align: right; }
.mkt-row .m-val { color: var(--text); }
.mkt-row .m-wk  { color: var(--text-2); }
.mkt-row .up { color: var(--green); }
.mkt-row .dn { color: var(--red); }
.mkt-div { height: 1px; background: var(--border); margin: 8px 0 4px; }

/* Markets — modern card: core index tiles + a rotating movers list */
.mkt-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin: 24px 0;
  box-shadow: 0 6px 24px rgba(15,23,36,0.06);
}
.mkt-card-hd {
  padding: 16px 22px 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.mkt-card-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.03em; color: var(--text);
}
.mkt-card-sub { font-size: 12px; color: var(--text-3); font-weight: 500; }

.mkt-index-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); }
.mkt-tile { background: var(--surface); padding: 15px 16px; transition: background 0.12s ease; }
.mkt-tile:hover { background: var(--surface-2); }
.mt-name {
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 9px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mt-price {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 21px;
  letter-spacing: -0.025em; color: var(--text); line-height: 1; font-variant-numeric: tabular-nums;
}
.mt-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 9px; }
.mt-chg { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13px; font-variant-numeric: tabular-nums; color: var(--text-3); }
.mkt-tile.up .mt-chg { color: var(--green); }
.mkt-tile.dn .mt-chg { color: var(--red); }
.mt-spark { display: block; opacity: 0.85; }

/* Individual stock trackers — gainers / losers / most active */
.mkt-trackers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-top: 1px solid var(--border);
}
.trk-col { background: var(--surface-2); padding: 15px 16px 14px; }
.trk-hd {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
}
.trk-up .trk-hd    { color: var(--green); }
.trk-dn .trk-hd    { color: var(--red); }
.trk-active .trk-hd { color: var(--accent); }
.trk-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 8px;
  padding: 7px 0; border-top: 1px solid var(--border); font-variant-numeric: tabular-nums;
}
.trk-row:first-of-type { border-top: 0; }
.trk-sym { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--text); }
.trk-price { font-size: 11.5px; color: var(--text-3); text-align: right; grid-column: 1 / 2; }
.trk-row .pct-badge { grid-row: 1 / 3; grid-column: 2; align-self: center; }

.mkt-movers { padding: 16px 22px 18px; border-top: 1px solid var(--border); background: var(--surface-2); }
.mkt-movers-hd {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.mover-list { display: flex; flex-direction: column; }
.mover-row {
  display: grid; grid-template-columns: 1fr auto 70px; align-items: center; gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--border);
}
.mover-row:first-child { border-top: 0; }
.mv-name { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); display: flex; align-items: baseline; gap: 9px; }
.mv-name .ticker { border-bottom: 0; color: var(--text); }
.mv-full { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 12.5px; color: var(--text-3); }
.mv-price { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 15px; color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
.mv-chg { text-align: right; }

/* Tip-off time on upcoming-game cards */
.upcoming-time {
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--accent); margin-top: 14px; letter-spacing: 0.01em;
}
.upcoming-finals .upcoming-time { color: #6B9FFF; }

/* Today at a Glance — interactive, section-linked recap (bookends Today's Hits) */
.glance-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 10px 26px 16px; margin: 40px 0 0;
  box-shadow: 0 6px 24px rgba(15,23,36,0.06);
}
.glance-head {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin: 18px 0 4px; display: flex; align-items: center; gap: 9px;
}
.glance-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.glance-rows { display: flex; flex-direction: column; }
.glance-row {
  display: grid; grid-template-columns: 96px 1fr auto; align-items: start; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--border);
  text-decoration: none; color: var(--text); transition: transform 0.14s ease;
}
.glance-row:first-child { border-top: 0; }
.glance-row:hover { transform: translateX(3px); border-bottom: 0; }
.glance-k {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3);
  border-left: 3px solid var(--border); padding: 2px 0 2px 13px; line-height: 1.4;
}
.glance-row.hit-sports  .glance-k { color: var(--sports);  border-color: var(--sports); }
.glance-row.hit-markets .glance-k { color: var(--accent);  border-color: var(--accent); }
.glance-row.hit-culture .glance-k { color: var(--culture); border-color: var(--culture); }
.glance-v { font-size: 15px; line-height: 1.5; color: var(--text-2); }
.glance-row:hover .glance-v { color: var(--text); }
.glance-arr { color: var(--text-3); font-weight: 700; align-self: center; transition: color 0.14s; }
.glance-row:hover .glance-arr { color: var(--accent); }
@media (max-width: 560px) {
  .glance-row { grid-template-columns: 84px 1fr; }
  .glance-arr { display: none; }
}

/* THE RUNDOWN — dark gradient narrative card (replaces Today at a Glance) */
.rundown-band {
  background: linear-gradient(135deg, #0F1724 0%, #1a2d50 100%);
  border-radius: 16px; padding: 22px 28px 24px; margin: 0 0 36px;
  box-shadow: 0 6px 24px rgba(15,23,36,0.18);
}
.rundown-label {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.rundown-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.rundown-text {
  font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,0.92);
  font-weight: 400; margin: 0 0 18px;
}
.rbd-bullets { display: flex; flex-direction: column; gap: 10px; }
.rbd-bullet { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: baseline; }
.rbd-cat {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-left: 3px solid rgba(255,255,255,0.15); padding: 2px 0 2px 12px;
  color: rgba(255,255,255,0.45);
}
.rbd-sports  .rbd-cat { color: var(--sports);  border-color: var(--sports); }
.rbd-markets .rbd-cat { color: #6B9FFF;        border-color: #6B9FFF; }
.rbd-culture .rbd-cat { color: var(--culture); border-color: var(--culture); }
.rbd-line { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.82); }
@media (max-width: 560px) {
  .rundown-band { padding: 18px 20px 20px; }
  .rundown-text { font-size: 15.5px; }
  .rbd-bullet { grid-template-columns: 72px 1fr; gap: 10px; }
}

/* Right-rail scroll-spy nav — fills the desktop margin, tracks your position */
.brief-sidenav {
  position: fixed; top: 50%; right: 28px; transform: translateY(-50%); z-index: 40;
  display: none; flex-direction: column; align-items: flex-end; gap: 14px;
}
.bsn-link {
  display: flex; align-items: center; gap: 11px; text-decoration: none; border-bottom: 0;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3);
  opacity: 0.78; transition: opacity 0.15s ease, color 0.15s ease;
}
.bsn-link .bsn-txt { transform: none; opacity: 1; transition: opacity 0.15s ease, transform 0.15s ease; }
.bsn-link:hover { opacity: 1; color: var(--text); }
.bsn-link:hover .bsn-txt { opacity: 1; transform: none; }
.bsn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); flex-shrink: 0; transition: background 0.15s ease, transform 0.15s ease; }
.bsn-link.active { opacity: 1; color: var(--text); }
.bsn-link.active .bsn-txt { opacity: 1; transform: none; }
.bsn-link.active .bsn-dot { background: var(--accent); transform: scale(1.35); }
/* Only show the rail when there's real margin to fill */
@media (min-width: 1180px) { .brief-sidenav { display: flex; } }

/* Umbrella section headers (Sports / Markets / Culture) — anchor the flow */
.umbrella-head {
  margin: 56px 0 8px; padding-bottom: 12px; border-bottom: 2px solid var(--text);
}
.umbrella-head:first-of-type { margin-top: 40px; }
.umbrella-kicker {
  display: block; font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.umbrella-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 30px;
  letter-spacing: -0.03em; color: var(--text); margin: 0; line-height: 1;
}
.umbrella-head + .brief-section { margin-top: 20px; }
@media (max-width: 560px) { .umbrella-title { font-size: 25px; } .umbrella-head { margin-top: 40px; } }

/* "Where / who's home" line — shown on every sport */
.where-line {
  display: flex; align-items: center; gap: 7px; margin: -4px 0 18px;
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--text-2); letter-spacing: 0.01em;
}
.where-pin { color: var(--accent); font-size: 13px; line-height: 1; }

/* Designed hero banner for the top event (self-hosted photo + logos + text) */
.brief-hero-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  margin: 0 0 40px; min-height: 220px;
  background-color: #0F1724; background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  box-shadow: 0 8px 30px rgba(15,23,36,0.16);
}
.brief-hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.55) 45%, rgba(8,12,20,0.35) 100%);
}
.bhb-inner { position: relative; z-index: 1; padding: 24px 26px; width: 100%; }
.bhb-eyebrow {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #6B9FFF; margin-bottom: 10px;
}
.bhb-teams { display: flex; align-items: center; gap: 14px; }
.bhb-logo { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.bhb-vs {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 30px;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.bhb-at { color: rgba(255,255,255,0.55); font-weight: 600; }
.bhb-venue {
  display: flex; align-items: center; gap: 7px; margin-top: 12px;
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.9);
}
.bhb-venue .where-pin { color: #6B9FFF; }
@media (max-width: 560px) {
  .brief-hero-banner { min-height: 180px; }
  .bhb-vs { font-size: 24px; } .bhb-logo { width: 38px; height: 38px; }
}

@media (max-width: 720px) {
  .mkt-index-grid { grid-template-columns: repeat(3, 1fr); }
  .mkt-trackers { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .mkt-index-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-price { font-size: 19px; }
  .mv-full { display: none; }
}

/* ================================================================
   IMAGE MODULE
   ================================================================ */
.brief-img {
  border-radius: var(--r-lg); overflow: hidden; margin: 24px 0;
  background: var(--surface); border: 1px solid var(--border);
}
.brief-img img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.brief-img-ph {
  width: 100%; aspect-ratio: 16/9; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase;
}
.brief-img-cap { padding: 10px 16px; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.brief-img-sm img { aspect-ratio: 21/9; }
.brief-img-sm { margin: 14px 0; }
.brief-img-gallery { margin: 24px 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.brief-img-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--border); }
.brief-img-gallery-grid .brief-img { margin: 0; border: none; border-radius: 0; }
.brief-img-gallery-grid .brief-img:first-child { border-radius: 0; }
.brief-img-gallery .brief-img { margin: 0; border: none; border-radius: 0; }
.brief-img-gallery .brief-img-cap { padding: 10px 16px 14px; background: var(--surface); font-size: 13px; color: var(--text-3); }
@media (max-width: 520px) {
  .brief-img-gallery-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.product-card {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 22px; align-items: start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; margin: 24px 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { border-color: rgba(184,124,53,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.product-img { border-radius: 10px; overflow: hidden; background: var(--surface-2); }
.product-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-img-ph {
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 11px; color: var(--text-3); text-transform: uppercase;
  letter-spacing: 0.08em; text-align: center; padding: 10px;
}
.product-brand {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--amber); margin-bottom: 8px;
}
.product-name {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--text); margin-bottom: 10px;
}
.product-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.product-price {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 15px; color: var(--text); margin-bottom: 14px; display: block;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--amber); border-bottom: 0; transition: gap 0.15s ease, opacity 0.15s ease;
}
.product-link:hover { gap: 9px; border-bottom: 0; opacity: 0.8; }

/* ================================================================
   THE REC
   ================================================================ */
.brief-rec {
  background: var(--accent-muted);
  border: 1px solid rgba(43,111,255,0.16);
  border-radius: var(--r-lg); padding: 24px; margin-top: 0;
}
.rec-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.rec-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text);
}
.rec-body { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }
.rec-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--accent); border-bottom: 0; transition: gap 0.15s ease;
}
.rec-link:hover { gap: 9px; border-bottom: 0; }
.rec-guide-link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-left: 14px; }
/* Markets — quick headlines (3 stories at the top of The Close) */
.mkt-headlines { list-style: none; margin: 4px 0 18px; padding: 0; border-top: 1px solid var(--border); }
.mkt-headlines li { padding: 13px 0 13px 26px; border-bottom: 1px solid var(--border); position: relative; }
.mkt-headlines li::before { content: '▪'; position: absolute; left: 4px; top: 12px; color: var(--accent); font-size: 12px; }
.mkh-head { display: block; font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--text); line-height: 1.3; }
.mkh-sub { display: block; font-size: 14px; color: var(--text-2); line-height: 1.55; margin-top: 5px; }
/* Feature hero (non-game lead, e.g. a markets/IPO day) */
.bhb-feature-title { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: clamp(26px, 4vw, 40px); line-height: 1.04; letter-spacing: -0.03em; color: #fff; max-width: 78%; margin: 8px 0 6px; text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.brief-hero-banner--feature .bhb-venue { color: rgba(255,255,255,0.82); }
/* The Rec — with a product image */
.brief-rec--media { display: grid; grid-template-columns: 172px 1fr; gap: 22px; align-items: center; }
.rec-img {
  position: relative; border-radius: 12px; overflow: hidden; background: #fff;
  aspect-ratio: 4 / 3; border: 1px solid rgba(43,111,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.rec-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rec-img-ph {
  display: none; font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 17px; letter-spacing: -0.01em; color: var(--accent);
  text-align: center; padding: 12px; line-height: 1.2;
}
.rec-img-failed { background: var(--accent-muted); border-style: dashed; }
.rec-img-failed .rec-img-ph { display: flex; align-items: center; justify-content: center; }

/* ================================================================
   CULTURE LIST
   ================================================================ */
.culture-list { list-style: none; counter-reset: clist; }
.culture-item {
  counter-increment: clist; padding: 20px 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 30px 1fr; gap: 4px 14px;
}
.culture-item:first-child { border-top: 0; padding-top: 4px; }
.culture-item::before {
  content: counter(clist, decimal-leading-zero);
  grid-column: 1; grid-row: 1;
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 13px; color: var(--accent);
}
/* All content sits in column 2; the counter owns column 1 (row 1). Without this,
   grid auto-flow drops every other child into the narrow 30px column. */
.culture-item > * { grid-column: 2; }
.culture-item-top { margin-bottom: 7px; }
.culture-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 3px 8px; border-radius: 4px;
  background: var(--surface-2); color: var(--text-2);
  border: 1px solid var(--border);
}
.culture-tag.ctag-celebrity  { background: rgba(194,65,12,0.07);  color: var(--culture); border-color: rgba(194,65,12,0.18); }
.culture-tag.ctag-music       { background: rgba(139,92,246,0.07); color: #7C3AED; border-color: rgba(139,92,246,0.2); }
.culture-tag.ctag-sports-biz  { background: rgba(22,163,74,0.07);  color: var(--sports); border-color: rgba(22,163,74,0.18); }
.culture-tag.ctag-streaming   { background: rgba(43,111,255,0.07); color: var(--accent); border-color: rgba(43,111,255,0.18); }
.culture-tag.ctag-tv          { background: rgba(43,111,255,0.07); color: var(--accent); border-color: rgba(43,111,255,0.18); }
.culture-tag.ctag-tech        { background: rgba(16,185,129,0.07); color: #059669; border-color: rgba(16,185,129,0.18); }
.culture-tag.ctag-watch       { background: rgba(43,111,255,0.07); color: var(--accent); border-color: rgba(43,111,255,0.18); }
.culture-head {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.25; margin-bottom: 4px; color: var(--text);
}
.culture-source {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; display: block;
}
.culture-body { font-size: 15px; color: var(--text-2); line-height: 1.62; }
.culture-body strong { color: var(--text); }

/* ================================================================
   SHARP TAKE
   ================================================================ */
.sharp-take {
  margin-top: 52px; padding: 26px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-muted);
  border-radius: 0 var(--r) var(--r) 0;
}
.sharp-take-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.sharp-take p { font-size: 16px; color: var(--text); margin-bottom: 12px; line-height: 1.65; }
.sharp-take p:last-of-type { margin-bottom: 0; color: var(--text-2); font-size: 15px; }
.sharp-bullets {
  margin: 18px 0 0; padding: 0; list-style: none;
  border-top: 1px solid rgba(43,111,255,0.15); padding-top: 14px;
}
.sharp-bullets li {
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 14px; color: var(--text); line-height: 1.4;
  padding: 6px 0; border-bottom: 1px solid rgba(43,111,255,0.08);
  display: flex; align-items: baseline; gap: 8px;
}
.sharp-bullets li:last-child { border-bottom: none; }
.sharp-bullets li::before { content: "→"; color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* ================================================================
   NUMBERS WORTH STEALING
   ================================================================ */
.numbers-list { list-style: none; }
.numbers-item {
  display: grid; grid-template-columns: 38px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 15.5px; line-height: 1.52; color: var(--text-2);
}
.numbers-item:last-child { border-bottom: 0; }
.numbers-item .n-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 13px; color: var(--accent); letter-spacing: 0.04em; padding-top: 2px;
}

/* ================================================================
   DIVIDER + MISC
   ================================================================ */
.brief-div { height: 1px; background: var(--border); margin: 48px 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.brief-footer {
  max-width: var(--max-w); margin: 0 auto;
  padding: 36px 24px 72px; border-top: 1px solid var(--border);
}
.footer-share {
  margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.footer-share-line {
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--text); margin-bottom: 14px; letter-spacing: -0.01em;
}
.footer-share-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.share-btn:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43,111,255,0.12); border-bottom-color: var(--accent);
}
.footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white;
  padding: 12px 22px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  border-bottom: 0; transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(43,111,255,0.25);
}
.footer-cta:hover { background: var(--accent-h); border-bottom: 0; transform: translateY(-1px); }
.footer-meta { color: var(--text-3); font-size: 13.5px; margin-top: 20px; line-height: 1.65; }
.footer-sig { font-family: 'Inter Tight', sans-serif; font-weight: 700; color: var(--text); margin-top: 14px; }
.footer-nav { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--text-3); border-bottom: 0; }
.footer-nav a:hover { color: var(--text); border-bottom: 0; }
.footer-fine {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 11px; line-height: 1.65; color: var(--text-3); max-width: 640px;
}

/* ================================================================
   MORE ISSUES
   ================================================================ */
.more-issues-block {
  max-width: var(--max-w); margin: 0 auto;
  padding: 36px 24px 0;
  border-top: 1px solid var(--border);
}
.more-issues-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.more-issue-card {
  display: grid; grid-template-columns: 44px 1fr auto;
  align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: background 0.12s ease;
}
.more-issue-card:hover .mi-title { color: var(--accent); }
.mi-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 12px; color: var(--text-3);
}
.mi-title {
  font-size: 14px; font-weight: 500; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.12s ease;
}
.mi-date { font-size: 12px; color: var(--text-3); white-space: nowrap; }
.more-issues-all {
  display: inline-block; margin-top: 16px; margin-bottom: 0;
  font-size: 13px; font-weight: 600; color: var(--accent);
  border-bottom: 0; transition: opacity 0.15s ease;
}
.more-issues-all:hover { opacity: 0.75; border-bottom: 0; }

/* Arena/venue image shown in upcoming card */
.upcoming-arena-img {
  margin: 0 !important;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
}
.upcoming-arena-img img { border-radius: 0; max-height: 200px; object-fit: cover; width: 100%; }

/* ================================================================
   BRIEF SUBSCRIBE BLOCK
   ================================================================ */
.brief-subscribe-block {
  max-width: var(--max-w); margin: 0 auto 0;
  padding: 44px 24px 52px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.bsb-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.bsb-headline {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 30px; letter-spacing: -0.025em; color: var(--text);
  margin-bottom: 8px; line-height: 1.1;
}
.bsb-sub { font-size: 16px; color: var(--text-2); margin-bottom: 24px; }
.bsb-form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}
.bsb-input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 9px; font-size: 15px; font-family: inherit;
  background: var(--bg); color: var(--text); outline: none;
  transition: border-color 0.15s ease;
}
.bsb-input:focus { border-color: rgba(43,111,255,0.45); }
.bsb-btn {
  padding: 12px 20px; background: var(--accent); color: white;
  border: none; border-radius: 9px; font-family: inherit;
  font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.bsb-btn:hover { background: var(--accent-h); transform: translateY(-1px); }
.bsb-success {
  display: none; font-size: 15px; color: var(--accent); font-weight: 600;
  margin-top: 10px;
}
.bsb-hint { font-size: 12px; color: var(--text-3); margin-top: 10px; }

/* ================================================================
   SHARE BAR
   ================================================================ */
.brief-share-bar {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.share-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3);
  white-space: nowrap;
}
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 8px 16px; border-radius: 7px; cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease; border: none;
}
.share-btn:hover { transform: translateY(-1px); }
.share-x {
  background: var(--text); color: white;
  border-bottom: none !important;
}
.share-x:hover { background: #1C2733; border-bottom: none !important; }
.share-copy {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border) !important;
}
.share-copy:hover { border-color: var(--text-2) !important; }

/* ================================================================
   READING PROGRESS BAR
   ================================================================ */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 100;
  height: 3px; width: 0%; background: var(--accent);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ================================================================
   SECTION JUMP NAV (mobile-first quick links)
   ================================================================ */
.section-jump {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 0 0 36px;
}
.sj-link {
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-2);
  background: var(--surface); border-bottom: 1px solid var(--border);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.sj-link:hover { background: var(--accent-muted); color: var(--accent); border-color: rgba(43,111,255,0.25); border-bottom-color: rgba(43,111,255,0.25); }

/* ================================================================
   TEAM LOGO IN SCOREBOARD
   ================================================================ */
.score-logo {
  width: 36px; height: 36px; object-fit: contain;
  flex-shrink: 0;
}
.score-logo.loser { opacity: 0.35; filter: grayscale(60%); }

/* ================================================================
   HIGHLIGHTS CARD (Best Moments)
   ================================================================ */
.highlights-card {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 18px; margin: 8px 0 20px;
}
.hl-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3);
}
.hl-links { display: flex; gap: 8px; flex-wrap: wrap; }
.hl-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 12px;
  padding: 6px 12px; border-radius: 6px;
  background: var(--accent); color: white;
  border-bottom: 0; transition: background 0.15s ease, transform 0.1s ease;
}
.hl-btn:hover { background: var(--accent-h); border-bottom: 0; transform: translateY(-1px); color: white; }
.hl-btn-yt { background: #FF0000; }
.hl-btn-yt:hover { background: #CC0000; }

/* ================================================================
   UPCOMING GAME PREVIEW CARD
   ================================================================ */
.upcoming-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px; margin: 20px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.upcoming-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.upcoming-matchup {
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  margin-bottom: 12px;
}
.upcoming-team {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--text); flex: 1;
}
.upcoming-home { justify-content: flex-end; }
.upcoming-logo {
  width: 32px; height: 32px; object-fit: contain; flex-shrink: 0;
}
.upcoming-vs {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 11px; letter-spacing: 0.1em; color: var(--text-3);
  flex-shrink: 0;
}
.upcoming-series {
  font-size: 13px; color: var(--text-2); margin-bottom: 12px;
}
.upcoming-link {
  font-family: 'Inter Tight', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--accent); border-bottom: 0;
  transition: opacity 0.15s ease;
}
.upcoming-link:hover { opacity: 0.8; border-bottom: 0; }
.upcoming-finals {
  background: linear-gradient(135deg, #0B1322 0%, #1a2a4a 100%);
  border-color: rgba(43,111,255,0.35);
  box-shadow: 0 4px 20px rgba(43,111,255,0.12);
}
.upcoming-finals .upcoming-label { color: #6B9FFF; }
.upcoming-finals .upcoming-team { color: #fff; font-size: 16px; }
.upcoming-finals .upcoming-logo { width: 40px; height: 40px; }
.upcoming-finals .upcoming-vs {
  font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 10px;
  letter-spacing: 0.08em; color: rgba(43,111,255,0.9); line-height: 1.3; text-align: center;
}
.upcoming-finals .upcoming-series { color: rgba(255,255,255,0.6); }
.upcoming-finals .upcoming-link { color: #6B9FFF; }

/* World Cup preview banner */
.wc-preview-banner {
  background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 50%, #0a1a2a 100%);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  margin: 0 0 24px;
  text-align: center;
}
.wc-banner-hosts { font-size: 32px; margin-bottom: 10px; letter-spacing: 8px; }
.wc-banner-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 4px;
}
.wc-banner-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.wc-banner-stats {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.wc-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.wc-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 22px; color: #4ade80;
}
.wc-stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brief-title { font-size: 28px; line-height: 1.1; }
  .brief-deck { font-size: 16px; }
  .brief-section h3 { font-size: 22px; margin: 28px 0 12px; }
  .brief-article { padding: 28px 16px 60px; }
  .brief-nav-inner { padding: 12px 16px; }
  .brief-nav-issue { display: none; }
  .brief-cta { font-size: 12px; padding: 6px 12px; }
  .brief-meta { gap: 10px; font-size: 12px; margin-bottom: 28px; }
  .brief-section { margin-top: 52px; }
  .section-jump { gap: 6px; margin-bottom: 28px; }
  .sj-link { font-size: 11px; padding: 5px 10px; }
  .tldr { padding: 16px 16px; margin-bottom: 36px; }
  .tldr-item { font-size: 14.5px; gap: 10px; padding: 9px 0; }
  .product-card { grid-template-columns: 1fr; }
  .product-img { max-height: 200px; aspect-ratio: 16/9; }
  .product-img img, .product-img-ph { aspect-ratio: 16/9; }
  .brief-rec--media { grid-template-columns: 1fr; }
  .rec-img { aspect-ratio: 16/9; max-height: 200px; }
  .stat-num { font-size: 22px; }
  .mkt-cols, .mkt-row { grid-template-columns: 88px 1fr 62px 62px; font-size: 12px; gap: 4px; }
  .mkt-table-body { padding: 8px 12px 12px; }
  .scoreboard { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .score-side { min-width: unset; flex-direction: row; justify-content: center; align-items: center; gap: 12px; }
  .score-num { font-size: 30px; }
  .score-center { padding: 4px 0; }
  .detail-list li { font-size: 15px; gap: 10px; }
  .angle-box { padding: 12px 14px; }
  .angle-text { font-size: 14.5px; }
  .culture-head { font-size: 17px; }
  .culture-body { font-size: 14.5px; }
  .sharp-take { padding: 20px 16px; }
  .sharp-take p { font-size: 15.5px; }
  .numbers-item { gap: 12px; }
  .brief-footer { padding: 28px 16px 56px; }
  .footer-nav { gap: 14px; }
  .footer-nav a { font-size: 13px; padding: 4px 0; }
  .highlights-card { flex-direction: column; align-items: flex-start; }
  .hl-btn { font-size: 11px; padding: 5px 10px; }
  .upcoming-team { font-size: 13px; }
  .upcoming-logo { width: 26px; height: 26px; }
  .score-logo { width: 28px; height: 28px; }
  .brief-share-bar { flex-direction: column; gap: 12px; }
  .share-buttons { justify-content: center; }
  .brief-hero-inner { padding: 48px 16px 40px; }
  .brief-hero-num { font-size: 80px; top: 12px; right: 8px; }
  .brief-hero-area .brief-title { font-size: 30px; }
}

/* ================================================================
   BRIEF HERO AREA
   ================================================================ */
.brief-hero-area {
  background: linear-gradient(160deg, #090f1c 0%, #0d1525 55%, #0b1220 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.brief-hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(43,111,255,0.22), transparent 65%);
  pointer-events: none;
  animation: briefHeroGlow 10s ease-in-out infinite;
}
@keyframes briefHeroGlow {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) { .brief-hero-area::before { animation: none; } }
.brief-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 52px;
}
.brief-hero-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(90px, 18vw, 150px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 18px;
  right: 12px;
  pointer-events: none;
  user-select: none;
}
.brief-hero-area .brief-pretitle {
  color: rgba(107,159,255,0.9);
}
.brief-hero-area .brief-pretitle-dot {
  background: #6B9FFF;
  box-shadow: 0 0 12px rgba(43,111,255,0.7);
}
.brief-hero-area .brief-title {
  color: #FFFFFF;
  font-size: clamp(30px, 7vw, 52px);
}
.brief-hero-area .brief-deck {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  margin-bottom: 28px;
}
.brief-hero-area .brief-meta {
  color: rgba(255,255,255,0.32);
  border-bottom-color: rgba(255,255,255,0.08);
  margin-bottom: 28px;
  padding-bottom: 24px;
}
.brief-hero-area .brief-meta .sep { color: rgba(255,255,255,0.14); }
.brief-hero-area .section-jump { margin-bottom: 0; }
.brief-hero-area .sj-link {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.12);
}
.brief-hero-area .sj-link:hover {
  background: rgba(43,111,255,0.22);
  color: #fff;
  border-color: rgba(43,111,255,0.45);
  border-bottom-color: rgba(43,111,255,0.45);
}

/* Nav over hero — keep dark to blend */
.brief-hero-area ~ * { }

/* ================================================================
   INLINE SUBSCRIBE CTA — mid-article conversion nudge
   ================================================================ */
.brief-inline-cta {
  background: var(--accent-muted);
  border: 1px solid rgba(43,111,255,0.18);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin: 52px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.bic-inner { flex: 1; min-width: 180px; }
.bic-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.bic-text {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.bic-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 0;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.bic-btn:hover { background: var(--accent-h); border-bottom: 0; transform: translateY(-1px); color: white; }
@media (max-width: 600px) {
  .brief-inline-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   GUYTALK LIVE — cross-link CTA + nav link
   ================================================================ */
.brief-nav-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 600; color: var(--text);
  border-bottom: 0;
}
.brief-nav-live:hover { color: var(--text); border-bottom: 0; }
.brief-live-cta {
  background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.18);
  border-radius: var(--r-lg);
  padding: 18px 22px; margin: 44px 0 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border-bottom: 0;
}
.brief-live-cta:hover { border-bottom: 0; }
.blc-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #DC2626;
  flex-shrink: 0; animation: blcPulse 2s ease-in-out infinite;
}
@keyframes blcPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.8); } }
.blc-inner { flex: 1; min-width: 180px; }
.blc-label {
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #DC2626; margin-bottom: 4px;
}
.blc-text { font-size: 15px; color: var(--text); font-weight: 500; line-height: 1.4; margin: 0; }
.blc-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  background: var(--text); color: white; padding: 10px 18px; border-radius: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 13px;
  border-bottom: 0; transition: transform 0.15s ease; white-space: nowrap;
}
.brief-live-cta:hover .blc-btn { transform: translateY(-1px); }
@media (max-width: 600px) {
  .brief-live-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   PCT BADGE — market day-change pill
   ================================================================ */
.pct-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.pct-badge.up {
  background: rgba(22,163,74,0.13);
  color: var(--green);
}
.pct-badge.dn {
  background: rgba(220,38,38,0.1);
  color: var(--red);
}
.mkt-row { transition: background 0.12s ease; border-radius: 6px; }
.mkt-row:hover { background: var(--surface-2); }

/* ================================================================
   WHAT TO KNOW CARD
   ================================================================ */
/* Remove the detail-list flex-row treatment for ammo items */
.detail-list li.ammo-item { display: block; padding: 10px 0 6px; }
.detail-list li.ammo-item::before { display: none; }
/* Inline dl-label superseded by card header */
.detail-list li.ammo-item > .dl-label { display: none; }

/* Card shell */
ul.ammo-list {
  list-style: none; padding: 0; margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
/* Dark "WHAT TO KNOW" header row */
ul.ammo-list::before {
  content: 'WHAT TO KNOW';
  display: block;
  background: var(--text); color: #fff;
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 16px;
}
/* Fact rows */
ul.ammo-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 16px;
  font-size: 14.5px; line-height: 1.52;
  color: var(--text-2);
  border-top: 1px solid var(--border);
}
/* Bullet dot — explicitly clears width/background set by .detail-list li::before
   so the blue dot renders correctly whether or not the card is inside a detail-list. */
ul.ammo-list li::before {
  content: '•'; flex-shrink: 0;
  color: var(--accent); font-size: 15px; line-height: 1.45;
  width: auto; background: none; border-radius: 0; margin: 0;
}
/* Culture section spacing */
.culture-item ul.ammo-list { margin: 10px 0 6px; }

@media (max-width: 600px) {
  ul.ammo-list::before { padding: 8px 14px; }
  ul.ammo-list li { font-size: 14px; padding: 9px 14px; }
}

/* ── ctx-card: Live-page style sport cards ─────────────────────────────────── */
.ctx-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 16px; }
/* Sport-specific top border accent */
.ctx-sport-soccer { border-top: 3px solid var(--sports); }
.ctx-sport-f1     { border-top: 3px solid #E10600; }
.ctx-sport-golf   { border-top: 3px solid var(--amber); }
.ctx-sport-mlb    { border-top: 3px solid var(--accent); }
.ctx-sport-nba    { border-top: 3px solid var(--accent); }
.ctx-sport-nhl    { border-top: 3px solid #0067B9; }
/* Sport-specific tag color inside the dark header */
.ctx-sport-soccer .ctx-tag { color: #4ADE80; }
.ctx-sport-f1     .ctx-tag { color: #FCA5A5; }
.ctx-sport-golf   .ctx-tag { color: #FCD34D; }
.ctx-sport-mlb    .ctx-tag { color: #93C5FD; }
.ctx-sport-nba    .ctx-tag { color: #93C5FD; }
.ctx-sport-nhl    .ctx-tag { color: #7DD3FC; }
.ctx-head { display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--text); color: #fff; }
.ctx-title { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.ctx-dot { color: var(--red); }
.ctx-tag { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em; }
.ctx-body { padding: 4px 18px 18px; }
.ctx-headline { font-size: 19px; font-weight: 800; margin: 14px 0 4px; line-height: 1.28; color: var(--text); }
.ctx-row { padding: 12px 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 5px; }
.ctx-row:first-child { border-top: none; }
.ctx-label { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.ctx-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.ctx-text { font-size: 14.5px; color: var(--text); line-height: 1.45; }
.ctx-say { background: rgba(220,38,38,0.05); border-radius: 10px; padding: 11px 14px; }
.ctx-say .ctx-text { font-weight: 500; font-style: italic; }
.ctx-keystat { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 9px; padding: 10px 13px; }
.ctx-keystat .ctx-text { font-weight: 600; }
.ctx-pick { display: flex; flex-direction: column; gap: 3px; background: var(--green); border-radius: var(--r); padding: 12px 18px; margin-top: 14px; }
.ctx-pick-label { font-family: 'Inter Tight', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.ctx-pick-text { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; }
/* Player bio list */
.pbio-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.pbio-item { display: flex; flex-direction: column; gap: 1px; }
.pbio-name { font-weight: 700; font-size: 14px; color: var(--text); text-decoration: none; border-bottom: none; }
.pbio-name:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; border-bottom: none; }
.pbio-bio { font-size: 12.5px; color: var(--text-2); line-height: 1.35; }
/* ammo-list inside ctx-row: drop header (already labeled by ctx-label) and borders */
.ctx-row ul.ammo-list::before { display: none; }
.ctx-row ul.ammo-list { border: none; border-radius: 0; }
.ctx-row ul.ammo-list li { padding: 5px 0; border-top: none; font-size: 14px; color: var(--text-2); }
.ctx-row ul.ammo-list li::before { color: var(--red); }
