/* BSM Review Desk — chassis stylesheet
   Tokens (T2 skin roll): light mode · Sora display + Inter body · teal-700 on
   warm-gray-50 · 8px radius · soft shadows · boxed toplist rows · 1px neutral
   borders · hairline dividers. */

:root {
  --bg: #fafaf9;            /* warm-gray-50 */
  --surface: #ffffff;
  --accent: #0f766e;        /* teal-700 */
  --accent-dark: #115e59;   /* teal-800 */
  --accent-light: #f0fdfa;  /* teal-50 */
  --accent-chip: #ccfbf1;   /* teal-100 */
  --text: #1c1917;          /* stone-900 */
  --muted: #57534e;         /* stone-600 */
  --border: #e7e5e4;        /* stone-200, 1px neutral borders */
  --hairline: #efedec;
  --amber-bg: #fef3c7;
  --amber-text: #92400e;
  --radius: 8px;
  --shadow-soft: 0 1px 3px rgba(28, 25, 23, 0.06), 0 4px 14px rgba(28, 25, 23, 0.05);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--text); }
h1 { font-size: 2.1rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 0.9rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin: 1.6rem 0 0.6rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem 1.4rem; }
li { margin-bottom: 0.35rem; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.1rem; }
.content-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.1rem; }

/* ---------- Navbar (sticky, <=64px) ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.navbar-brand img { height: 40px; width: auto; display: block; }
.navbar-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }
.nav-close { display: none; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1001;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; border-radius: 2px; }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .navbar { height: 60px; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--surface);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 4.2rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; padding: 0.8rem 0; width: 100%; border-bottom: 1px solid var(--hairline); }
  .nav-close {
    display: block; position: absolute; top: 0.6rem; right: 0.8rem;
    width: 44px; height: 44px;
    background: none; border: none; font-size: 1.7rem; color: var(--text); cursor: pointer;
  }
  @media (prefers-reduced-motion: reduce) { .nav-links { transition: none; } }
}

/* ---------- Hero ---------- */
.hero { padding: 2.2rem 0 1.4rem; background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%); border-bottom: 1px solid var(--hairline); }
.hero .breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.7rem; }
.hero .breadcrumb a { color: var(--muted); text-decoration: none; }
.hero h1 { margin-bottom: 0.7rem; }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 46em; }
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  font-size: 0.88rem; color: var(--muted); margin: 0.9rem 0 0.4rem;
}
.byline img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.byline a { color: var(--text); font-weight: 600; text-decoration: none; }
.byline .dot::before { content: "\00B7"; margin: 0 0.15rem; }
.last-updated { font-weight: 600; color: var(--accent-dark); }
.hero-cta-row { margin-top: 1rem; }
.btn {
  display: inline-block;
  background: linear-gradient(180deg, #14b8a6 0%, var(--accent) 100%);
  color: #ffffff; font-weight: 700; font-family: var(--font-display);
  text-decoration: none; text-align: center;
  padding: 0.7rem 1.6rem; border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.28);
  border: none; cursor: pointer; font-size: 0.98rem;
}
.btn:hover { background: linear-gradient(180deg, #0d9488 0%, var(--accent-dark) 100%); color: #fff; }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(15, 118, 110, 0.22); }

@media (max-width: 767px) {
  h1 { font-size: 1.6rem; }
  .hero { padding: 1.4rem 0 1rem; }
  .hero-sub { font-size: 0.97rem; }
  .btn { display: block; width: 100%; }
}

/* ---------- Sections ---------- */
.section { padding: 0.4rem 0 0.6rem; }
.section + .section { border-top: 1px solid var(--hairline); }
.lead { color: var(--muted); }

/* ---------- Toplist (boxed rows; desktop table -> mobile card) ---------- */
.toplist-section .table-wrapper { overflow-x: auto; }
.toplist-table { width: 100%; border-collapse: separate; border-spacing: 0 0.6rem; }
.toplist-table thead th {
  text-align: left; padding: 0.45rem 0.9rem;
  color: var(--muted); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.toplist-row td {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.85rem 0.9rem; vertical-align: middle;
}
.toplist-row td:first-child { border-left: 1px solid var(--border); border-radius: var(--radius) 0 0 var(--radius); }
.toplist-row td:last-child { border-right: 1px solid var(--border); border-radius: 0 var(--radius) var(--radius) 0; }
.toplist-row { box-shadow: var(--shadow-soft); }
.toplist-row.highlight-row td { border-color: var(--accent); }
.col-rank { width: 44px; font-weight: 800; font-size: 1.05rem; font-family: var(--font-display); }
.col-logo-cell { min-width: 220px; }
.toplist-logo-wrap { display: flex; align-items: center; gap: 0.8rem; }
.toplist-logo {
  width: 90px; height: 48px; object-fit: contain;
  background: #fff; padding: 4px 7px; border-radius: 6px; border: 1px solid var(--border);
}
/* Logo chip — for brands whose only real wordmark is white/near-white and
   therefore illegible on our light page (Jack.com 1.56:1, Rolletto 0.98:1
   against --bg). ONLY the small logo box goes dark; the page stays light. */
.toplist-logo.logo-chip,
.hero-brand-logo.logo-chip,
.review-card-logo.logo-chip {
  background: #333840;
  border-color: #333840;
}
.toplist-brand { display: flex; flex-direction: column; line-height: 1.3; }
.toplist-brand strong { font-size: 0.98rem; }
.toplist-descriptor { font-size: 0.78rem; color: var(--muted); max-width: 16ch; }
.toplist-chip {
  display: inline-block; background: var(--accent-chip); color: var(--accent-dark);
  font-size: 0.74rem; font-weight: 700; padding: 0.12rem 0.5rem; border-radius: 4px; margin-top: 0.2rem;
}
.toplist-bonus {
  display: inline-block; background: var(--amber-bg); color: var(--amber-text);
  font-weight: 800; font-size: 0.95rem; padding: 0.3rem 0.65rem; border-radius: 4px;
  cursor: default; pointer-events: none; box-shadow: none;
}
.toplist-rating { font-weight: 700; color: var(--accent-dark); }
/* display:block is load-bearing — as an inline <span> the width/height below are
   ignored and the Layer-11 score bar never paints. */
.score-bar { display: block; width: 74px; height: 5px; background: var(--hairline); border-radius: 3px; margin-top: 0.3rem; overflow: hidden; }
.score-bar-fill { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.col-cta { width: 165px; text-align: right; }
.col-cta .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; white-space: nowrap; }
.toplist-terms { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }
.toplist-pending {
  background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; color: var(--muted); font-size: 0.95rem; margin: 0.6rem 0;
}

@media (max-width: 768px) {
  .toplist-table { border-spacing: 0; }
  .toplist-table thead { display: none; }
  .toplist-table, .toplist-table tbody, .toplist-table tr, .toplist-table td { display: block; width: 100%; }
  .toplist-row { margin-bottom: 0.75rem; }
  .toplist-row td, .toplist-row td:first-child, .toplist-row td:last-child {
    border: none; border-radius: 0; padding: 0.3rem 0.85rem; text-align: center;
  }
  .toplist-row {
    display: block;
    background: var(--surface);
    border: 1.5px solid var(--accent); border-radius: 14px;
    padding: 0.7rem 0.2rem 0.85rem;
    box-shadow: var(--shadow-soft);
  }
  .toplist-logo-wrap { flex-direction: column; gap: 0.4rem; }
  .toplist-logo { width: 120px; height: 60px; }
  .toplist-descriptor { max-width: none; }
  .score-bar { margin: 0.3rem auto 0; }
  .col-cta { width: 100%; text-align: center; }
  .col-cta .btn { display: block; width: 100%; }
}

/* Mobile fold budget (affiliate-list-placement §3 / mobile-toplist-card
   §Compactness). With 15 real rows the first card's CTA landed at 1130px in a
   390x844 viewport. Tightened in the order the skill prescribes: collapse the
   hero first, then the toplist H2 + lead, then the card itself. The toplist
   always renders in full — only the chrome around it shrinks. */
@media (max-width: 767px) {
  /* 1. Hero. The "Get Started" button only scrolls to the list that now starts
        immediately below it, so on mobile it costs a CTA-height of fold for
        nothing. Desktop keeps it. */
  .hero-cta-row { display: none; }
  .hero { padding: 1rem 0 0.7rem; }
  .hero h1 { font-size: 1.42rem; margin-bottom: 0.5rem; }
  .hero-sub { font-size: 0.92rem; line-height: 1.5; margin-bottom: 0; }
  .byline { font-size: 0.8rem; gap: 0.4rem; margin: 0.6rem 0 0.35rem; }
  .byline img { width: 30px; height: 30px; }

  /* 2. Toplist H2 + lead. */
  .toplist-section h2 { font-size: 1.14rem; margin: 0.72rem 0 0.4rem; }
  .toplist-section .toplist-lead { font-size: 0.82rem; line-height: 1.45; margin-bottom: 0.4rem; }
  .hero .breadcrumb { font-size: 0.78rem; margin-bottom: 0.35rem; }
  .section { padding: 0.2rem 0 0.4rem; }
  .hero h1 { font-size: 1.34rem; }
  .hero-sub { font-size: 0.88rem; }

  /* 3. The card. The rank moves out of its own stacked row into a chip in the
        card's top-left corner — it was costing ~30px of fold to say "1". */
  .toplist-row { padding: 0.45rem 0.2rem 0.55rem; position: relative; }
  .toplist-row td, .toplist-row td:first-child, .toplist-row td:last-child { padding: 0.15rem 0.8rem; }
  .toplist-row .col-rank {
    position: absolute; top: 0.4rem; left: 0.55rem;
    width: auto; padding: 0; font-size: 0.82rem; color: var(--muted);
  }
  .toplist-row .col-rank strong::before { content: "#"; }
  .toplist-logo { width: 96px; height: 48px; }
  .toplist-logo-wrap { gap: 0.25rem; }
  .toplist-brand strong { font-size: 0.94rem; }
  .toplist-chip { font-size: 0.7rem; padding: 0.1rem 0.45rem; margin-top: 0.12rem; }
  .toplist-bonus { font-size: 0.88rem; padding: 0.22rem 0.5rem; }
  .toplist-rating { font-size: 0.9rem; }
  .score-bar { margin: 0.2rem auto 0; height: 4px; }
}

/* ---------- Stat strip (under toplist) ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
  margin: 1.1rem 0;
}
.stat-strip .stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 0.85rem 0.9rem; text-align: center;
}
.stat .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--accent-dark); display: block; }
.stat .stat-label { font-size: 0.8rem; color: var(--muted); }
@media (max-width: 600px) { .stat-strip { grid-template-columns: 1fr; } }

/* ---------- Data tables ---------- */
.table-wrapper { overflow-x: auto; margin: 1rem 0; }
.data-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  font-size: 0.93rem;
}
.data-table th {
  text-align: left; background: var(--accent-light); color: var(--accent-dark);
  padding: 0.65rem 0.85rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}
.data-table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }

/* ---------- Payout-speed bars ---------- */
.speed-bars { margin: 1.1rem 0; }
.speed-bar-row { display: grid; grid-template-columns: 130px 1fr 110px; align-items: center; gap: 0.7rem; margin-bottom: 0.55rem; font-size: 0.9rem; }
.speed-bar-label { font-weight: 600; }
.speed-bar-track { background: var(--hairline); border-radius: 4px; height: 12px; overflow: hidden; }
.speed-bar-fill { display: block; height: 100%; background: linear-gradient(90deg, #14b8a6, var(--accent)); border-radius: 4px; }
.speed-bar-value { color: var(--muted); font-size: 0.84rem; text-align: right; }
@media (max-width: 600px) {
  .speed-bar-row { grid-template-columns: 105px 1fr 90px; gap: 0.45rem; font-size: 0.83rem; }
}

/* ---------- Sign-up step timeline ---------- */
.step-timeline { list-style: none; margin: 1.1rem 0; padding: 0; counter-reset: step; }
.step-timeline li {
  position: relative; padding: 0 0 1.2rem 3rem; counter-increment: step;
  border-left: 1px solid var(--border); margin-left: 1.05rem;
}
.step-timeline li:last-child { border-left-color: transparent; padding-bottom: 0.2rem; }
.step-timeline li::before {
  content: counter(step);
  position: absolute; left: -1.05rem; top: 0;
  width: 2.1rem; height: 2.1rem; line-height: 2.1rem; text-align: center;
  background: var(--accent); color: #fff; font-weight: 700; font-family: var(--font-display);
  border-radius: 50%; font-size: 0.95rem;
}
.step-timeline strong { display: block; margin-bottom: 0.15rem; }

/* ---------- Pros / cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.1rem 0; }
.pros-cons > div {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.1rem; box-shadow: var(--shadow-soft);
}
.pros-cons h3 { margin-top: 0; font-size: 1rem; }
.pros-cons ul { margin-left: 0; list-style: none; }
.pros-cons li { padding-left: 1.5rem; position: relative; font-size: 0.94rem; }
.pros li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 0.85em; height: 0.85em;
  background: var(--accent); border-radius: 50%;
  clip-path: polygon(14% 44%, 0 62%, 41% 100%, 100% 16%, 84% 4%, 39% 71%); }
.cons li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 0.85em; height: 0.85em;
  background: #b45309; border-radius: 50%;
  clip-path: polygon(20% 8%, 8% 20%, 38% 50%, 8% 80%, 20% 92%, 50% 62%, 80% 92%, 92% 80%, 62% 50%, 92% 20%, 80% 8%, 50% 38%); }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* ---------- Terminology grid ---------- */
.term-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; margin: 1.1rem 0; }
.term-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 0.95rem 1.05rem; font-size: 0.93rem;
}
.term-card h3 { margin-top: 0; font-size: 0.98rem; color: var(--accent-dark); }

/* ---------- Callouts ---------- */
.callout {
  background: var(--accent-light); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 0.95rem 1.15rem; margin: 1.1rem 0; font-size: 0.95rem;
}
.callout-rg {
  background: #fffbeb; border-left-color: #b45309;
}
.callout strong { font-family: var(--font-display); }

/* ---------- Payment icon row ---------- */
.pay-icons { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0.9rem 0 1.1rem; }
.pay-icon {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 0.3rem 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
.pay-icon svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 1rem 1.15rem; margin-bottom: 0.8rem; }
.faq-item h3 { margin: 0 0 0.45rem; font-size: 1.02rem; }
.faq-item p:last-child { margin-bottom: 0; }

/* ---------- Author cards ---------- */
.author-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 1.1rem 1.2rem; margin: 1rem 0;
}
.author-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.author-card h3 { margin-top: 0; }
.author-card .role { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 0.4rem; }
@media (max-width: 600px) { .author-card { flex-direction: column; align-items: center; text-align: center; } }

/* ---------- Review pages ---------- */
.hero-brand { margin-bottom: 0.8rem; }
.hero-brand-logo {
  height: 72px; width: auto; max-width: 220px; object-fit: contain;
  background: #fff; padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border);
  display: block;
}
@media (max-width: 767px) { .hero-brand-logo { height: 52px; max-width: 160px; } }
.verdict-card {
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.25rem; margin: 1.1rem 0;
}
.verdict-card h2 { margin-top: 0; }
.verdict-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem; margin: 0.75rem 0 0.9rem; font-size: 0.88rem; }
.verdict-meta div { display: flex; flex-direction: column; }
.verdict-meta .label { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.verdict-meta .value { font-weight: 700; font-family: var(--font-display); }
.tested-badge {
  display: inline-block; background: var(--accent-chip); color: var(--accent-dark);
  font-size: 0.76rem; font-weight: 700; padding: 0.18rem 0.55rem; border-radius: 4px;
}
.op-shot { margin: 1.1rem 0; }
.op-shot img { border: 1px solid var(--border); border-radius: var(--radius); display: block; width: 100%; height: auto; }
.op-shot figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.shot-pending {
  background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--muted); font-size: 0.86rem; margin: 1.1rem 0;
}

/* ---------- Reviews index cards ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.9rem; margin: 1.2rem 0; }
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 1rem 1.05rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.review-card-logo {
  width: 96px; height: 50px; object-fit: contain;
  background: #fff; padding: 4px 7px; border-radius: 6px; border: 1px solid var(--border);
}
.review-card h3 { margin: 0; font-size: 1.02rem; }
.review-card h3 a { text-decoration: none; }
.review-card .review-card-score { font-weight: 700; color: var(--accent-dark); font-size: 0.9rem; }
.review-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.review-card .review-card-foot { margin-top: auto; font-size: 0.84rem; }

/* ---------- Age / RG strip ---------- */
.age-strip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted);
}
.age-badge {
  display: inline-block; background: var(--text); color: #fff; font-weight: 800;
  border-radius: 50%; width: 34px; height: 34px; line-height: 34px; text-align: center; font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 3rem; background: var(--surface); border-top: 1px solid var(--border);
  padding: 2.4rem 0 1.6rem; font-size: 0.9rem; color: var(--muted);
}
.footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.6rem; }
.footer-cols h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.7rem; color: var(--text); }
.footer-cols ul { list-style: none; margin: 0; }
.footer-cols li { margin-bottom: 0.45rem; }
.footer-cols a { color: var(--muted); text-decoration: none; }
.footer-cols a:hover { color: var(--accent); }
.footer-brand { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.02rem; margin-bottom: 0.5rem; display: block; }
.footer-bottom { border-top: 1px solid var(--hairline); margin-top: 1.8rem; padding-top: 1.2rem; font-size: 0.8rem; }
@media (max-width: 767px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }

/* HUB-TOP3-SHOTS-V1 — top-3 operator lobbies, 3-up desktop / stacked mobile */
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.shot-grid .op-shot { margin: 0; }
.shot-grid .op-shot img { aspect-ratio: auto; }
@media (max-width: 860px) { .shot-grid { grid-template-columns: 1fr; } }
