/*
Theme Name: GooPick
Theme URI: https://goopick.com
Description: AI-Powered Global Affiliate Review Theme — 150+ Countries
Author: GooPick
Version: 2.0.0
Text Domain: goopick
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --c-black:   #0D0F14;
  --c-red:     #D85A30;
  --c-red-h:   #C04820;
  --c-blue:    #1A3A8F;
  --c-teal:    #0A8A6A;
  --c-gold:    #D4A020;
  --c-bg:      #F5F4F1;
  --c-white:   #FFFFFF;
  --c-border:  #E4E2DC;
  --c-text:    #1A1810;
  --c-muted:   #6B6860;
  --c-light:   #EEECEA;
  --c-card:    #FAFAF8;
  --f-head:    'Plus Jakarta Sans', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;
  --f-serif:   'Instrument Serif', serif;
  --r:         8px;
  --rl:        12px;
  --rxl:       18px;
  --max:       1280px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --sh:        0 1px 3px rgba(13,15,20,.06), 0 4px 12px rgba(13,15,20,.08);
  --sh-lg:     0 8px 32px rgba(13,15,20,.12), 0 2px 8px rgba(13,15,20,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--f-body); cursor: pointer; }
ul, ol { list-style: none; }

/* ── UTILITY ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.site-topbar {
  background: var(--c-black);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: .02em;
}
.site-topbar a { color: var(--c-gold); font-weight: 600; margin: 0 4px; }
.site-topbar a:hover { color: #fff; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 300;
  transition: box-shadow .2s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(13,15,20,.1); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img, .site-logo svg { height: 38px; width: auto; }
.logo-fallback { display: flex; flex-direction: column; }
.logo-fallback .lw { font-family: var(--f-head); font-size: 22px; font-weight: 800; color: var(--c-text); letter-spacing: -.5px; }
.logo-fallback .lw span { color: var(--c-red); }
.logo-fallback .lt { font-size: 9px; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; }

/* Primary Nav */
.nav-primary { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-primary a {
  font-size: 13px; font-weight: 600; color: var(--c-muted);
  padding: 7px 12px; border-radius: var(--r);
  transition: all .15s; white-space: nowrap;
}
.nav-primary a:hover, .nav-primary a.current { background: var(--c-light); color: var(--c-text); }
.nav-primary a.hot { color: var(--c-red); }
.nav-primary a.new-badge::after { content: 'NEW'; font-size: 9px; background: var(--c-red); color: #fff; padding: 1px 5px; border-radius: 4px; margin-left: 5px; vertical-align: middle; }

/* Header Search */
.header-search { position: relative; flex-shrink: 0; }
.header-search input {
  border: 1.5px solid var(--c-border);
  border-radius: 22px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  width: 200px;
  outline: none;
  background: var(--c-light);
  color: var(--c-text);
  font-family: var(--f-body);
  transition: all .22s var(--ease);
}
.header-search input:focus {
  border-color: var(--c-red);
  background: var(--c-white);
  width: 260px;
  box-shadow: 0 0 0 3px rgba(216,90,48,.1);
}
.header-search input::placeholder { color: var(--c-muted); }
.header-search .s-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--c-muted); font-size: 13px; pointer-events: none; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: .2s; }

/* Mobile Nav */
.nav-mobile {
  display: none;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 10px 0; font-size: 14px; font-weight: 600; color: var(--c-text); border-bottom: 1px solid var(--c-border); }
.nav-mobile a:last-child { border: none; }

/* ══════════════════════════════════════════
   COUNTRY TABS
══════════════════════════════════════════ */
.country-tabs {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.country-tabs::-webkit-scrollbar { display: none; }
.country-tabs-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  min-width: max-content;
}
.ctab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-muted);
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: all .15s;
}
.ctab:hover { color: var(--c-text); }
.ctab.active { color: var(--c-text); border-bottom-color: var(--c-red); }
.ctab .cnt { font-size: 10px; background: var(--c-light); color: var(--c-muted); padding: 1px 6px; border-radius: 8px; font-weight: 500; }
.ctab.active .cnt { background: rgba(216,90,48,.1); color: var(--c-red); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.site-hero {
  background: var(--c-black);
  color: #fff;
  padding: 60px 20px 52px;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(216,90,48,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 80% at 20% 80%, rgba(26,58,143,.15) 0%, transparent 60%);
  pointer-events: none;
}
.site-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold), var(--c-teal));
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(216,90,48,.18);
  border: 1px solid rgba(216,90,48,.35);
  color: #F0997B;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.8px;
  margin-bottom: 14px;
  color: #fff;
}
.hero h1 em { color: var(--c-red); font-style: normal; }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }

/* ── ANIMATED STATS ── */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  animation: fadeUp .6s var(--ease) both;
}
.hstat:nth-child(1) { animation-delay: .1s; }
.hstat:nth-child(2) { animation-delay: .2s; }
.hstat:nth-child(3) { animation-delay: .3s; }
.hstat:nth-child(4) { animation-delay: .4s; }
.hstat:nth-child(5) { animation-delay: .5s; }
.hstat-n {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.5px;
  transition: transform .3s var(--ease);
}
.hstat:hover .hstat-n { transform: scale(1.08); }
.hstat-n.c-red   { color: var(--c-red); }
.hstat-n.c-gold  { color: var(--c-gold); }
.hstat-n.c-teal  { color: #2EC4A0; }
.hstat-l {
  font-size: 10px;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   SEARCH PANEL
══════════════════════════════════════════ */
.search-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rxl);
  padding: 22px;
  backdrop-filter: blur(12px);
  animation: fadeIn .8s var(--ease) .3s both;
}
.sp-head {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sp-detect { font-size: 10px; color: rgba(255,255,255,.28); font-weight: 400; text-transform: none; letter-spacing: 0; }
.sp-row { display: flex; gap: 6px; margin-bottom: 8px; }
.sp-input {
  flex: 1;
  padding: 10px 13px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 14px;
  font-family: var(--f-body);
  outline: none;
  transition: .2s;
  min-width: 0;
}
.sp-input::placeholder { color: rgba(255,255,255,.3); }
.sp-input:focus { border-color: var(--c-red); background: rgba(255,255,255,.11); box-shadow: 0 0 0 3px rgba(216,90,48,.15); }
.sp-go {
  background: var(--c-red);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--r);
  font-size: 14px;
  cursor: pointer;
  transition: .15s;
  flex-shrink: 0;
}
.sp-go:hover { background: var(--c-red-h); transform: scale(1.03); }
.sp-results {
  background: #1A1F2E;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rl);
  overflow: hidden;
  display: none;
  max-height: 260px;
  overflow-y: auto;
}
.sp-results.show { display: block; }
.spr-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; cursor: pointer; transition: .12s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.spr-item:last-child { border: none; }
.spr-item:hover { background: rgba(255,255,255,.06); }
.spr-icon { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; }
.spr-title { font-size: 12px; font-weight: 600; color: #fff; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spr-meta { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 1px; }
.spr-score { font-size: 12px; font-weight: 800; color: #2EC4A0; flex-shrink: 0; }
.spr-empty { padding: 18px 13px; text-align: center; font-size: 12px; color: rgba(255,255,255,.3); }
.sp-quick { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.sp-quick a {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
  padding: 4px 9px; border-radius: 8px; font-size: 11px;
  border: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: .12s;
}
.sp-quick a:hover { background: rgba(255,255,255,.13); color: #fff; }
.sp-spinner {
  display: inline-block; width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,.1); border-top-color: var(--c-red);
  border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; margin-right: 5px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: all .18s var(--ease); font-family: var(--f-body); white-space: nowrap;
}
.btn-red { background: var(--c-red); color: #fff; }
.btn-red:hover { background: var(--c-red-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(216,90,48,.3); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.22); }
.btn-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }
.btn-outline { background: var(--c-white); color: var(--c-text); border: 1.5px solid var(--c-border); }
.btn-outline:hover { border-color: var(--c-red); color: var(--c-red); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 52px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.section-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--c-red); margin-bottom: 5px; }
.section-title { font-family: var(--f-head); font-size: 24px; font-weight: 800; color: var(--c-text); letter-spacing: -.3px; line-height: 1.2; }
.view-all { font-size: 13px; font-weight: 700; color: var(--c-blue); display: flex; align-items: center; gap: 4px; transition: color .15s; }
.view-all:hover { color: var(--c-red); }

/* ══════════════════════════════════════════
   ARTICLE CARDS
══════════════════════════════════════════ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.article-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--rxl);
  overflow: hidden;
  transition: all .22s var(--ease);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.article-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.card-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--c-light); flex-shrink: 0; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.article-card:hover .card-thumb img { transform: scale(1.04); }
.card-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.grad-a { background: linear-gradient(135deg,#0D0F14,#1A3A8F); }
.grad-b { background: linear-gradient(135deg,#0D0F14,#D85A30); }
.grad-c { background: linear-gradient(135deg,#0D0F14,#0A8A6A); }
.grad-d { background: linear-gradient(135deg,#1A1008,#D4A020); }
.card-badge { position: absolute; top: 10px; left: 10px; background: var(--c-red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
.card-badge.new   { background: var(--c-blue); }
.card-badge.top   { background: var(--c-black); }
.card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--c-muted); margin-bottom: 8px; flex-wrap: wrap; }
.score-badge { padding: 2px 7px; border-radius: 4px; font-size: 11px; font-weight: 800; }
.score-ex { background: rgba(10,138,106,.1); color: #0A8A6A; }
.score-gd { background: rgba(26,58,143,.1); color: #1A3A8F; }
.score-ok { background: rgba(212,160,32,.12); color: #9A7000; }
.score-lw { background: rgba(216,90,48,.1); color: var(--c-red); }
.card-title { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--c-text); line-height: 1.35; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; letter-spacing: -.1px; }
.card-excerpt { font-size: 13px; color: var(--c-muted); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--c-border); }
.card-read { font-size: 12px; font-weight: 700; color: var(--c-red); }
.card-time { font-size: 11px; color: var(--c-muted); }

/* Hero layout */
.hero-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 20px; }
.hero-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--rxl); overflow: hidden; display: flex; flex-direction: column; transition: all .2s var(--ease); text-decoration: none; color: inherit; }
.hero-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.hero-card .card-thumb { aspect-ratio: 16/8; }
.hero-card .card-thumb-placeholder { font-size: 72px; }
.hero-card .card-body { padding: 22px 24px; }
.hero-card .card-title { font-size: 20px; }
.side-stack { display: flex; flex-direction: column; gap: 12px; }
.mini-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--rxl); padding: 13px 15px; display: flex; gap: 11px; align-items: flex-start; transition: all .18s var(--ease); text-decoration: none; color: inherit; }
.mini-card:hover { box-shadow: var(--sh); border-color: var(--c-red); transform: translateY(-1px); }
.mini-icon { width: 46px; height: 46px; border-radius: var(--r); background: var(--c-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.mini-title { font-size: 13px; font-weight: 700; color: var(--c-text); line-height: 1.35; margin-bottom: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mini-meta { font-size: 11px; color: var(--c-muted); }

/* ══════════════════════════════════════════
   STAT BAND — ANIMATED
══════════════════════════════════════════ */
.stat-band {
  background: var(--c-black);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(216,90,48,.06) 0%, transparent 70%);
}
.stat-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  text-align: center;
  position: relative;
}
.stat-item {
  animation: fadeUp .6s var(--ease) both;
  padding: 16px 8px;
  border-radius: var(--rl);
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item:nth-child(1) { animation-delay: .05s; }
.stat-item:nth-child(2) { animation-delay: .1s; }
.stat-item:nth-child(3) { animation-delay: .15s; }
.stat-item:nth-child(4) { animation-delay: .2s; }
.stat-item:nth-child(5) { animation-delay: .25s; }
.stat-n {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.8px;
  line-height: 1;
  display: block;
  transition: transform .3s var(--ease);
}
.stat-item:hover .stat-n { transform: scale(1.06); }
.stat-item:nth-child(1) .stat-n { color: #fff; }
.stat-item:nth-child(2) .stat-n { color: var(--c-red); }
.stat-item:nth-child(3) .stat-n { color: var(--c-gold); }
.stat-item:nth-child(4) .stat-n { color: #2EC4A0; }
.stat-item:nth-child(5) .stat-n { color: #7B9FFF; }
.stat-bar {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin: 8px auto 6px;
  opacity: .4;
}
.stat-item:nth-child(1) .stat-bar { background: #fff; }
.stat-item:nth-child(2) .stat-bar { background: var(--c-red); }
.stat-item:nth-child(3) .stat-bar { background: var(--c-gold); }
.stat-item:nth-child(4) .stat-bar { background: #2EC4A0; }
.stat-item:nth-child(5) .stat-bar { background: #7B9FFF; }
.stat-l { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }

/* ══════════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap: 10px; }
.cat-tile {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--rl);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .18s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}
.cat-tile:hover {
  border-color: var(--c-red);
  background: rgba(216,90,48,.04);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.cat-tile.featured { border-color: var(--c-red); background: rgba(216,90,48,.04); }
.cat-icon { font-size: 28px; margin-bottom: 7px; line-height: 1; }
.cat-name { font-size: 12px; font-weight: 700; color: var(--c-text); }
.cat-count { font-size: 10px; color: var(--c-muted); margin-top: 2px; }

/* ══════════════════════════════════════════
   EDITORIAL DARK
══════════════════════════════════════════ */
.editorial-section {
  background: linear-gradient(135deg, #0D0F14, #141820);
  padding: 52px 20px;
  position: relative;
  overflow: hidden;
}
.editorial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,90,48,.4), transparent);
}
.editorial-section .section-title { color: #fff; }
.picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.pick-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rl);
  padding: 14px 15px;
  display: flex; align-items: center; gap: 11px;
  cursor: pointer; transition: all .18s var(--ease);
  text-decoration: none; color: inherit;
}
.pick-card:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); border-color: rgba(216,90,48,.3); }
.pick-rank { font-family: var(--f-head); font-size: 22px; font-weight: 800; color: rgba(255,255,255,.08); min-width: 26px; letter-spacing: -1px; }
.pick-title { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 2px; }
.pick-meta { font-size: 10px; color: rgba(255,255,255,.35); }
.pick-score { background: rgba(10,138,106,.2); border: 1px solid rgba(10,138,106,.35); color: #2EC4A0; font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 4px; margin-left: auto; flex-shrink: 0; }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, #FDF6EE, #F5F4F1);
  border-top: 3px solid var(--c-red);
  padding: 52px 20px;
}
.nl-inner { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nl-badge { display: inline-block; background: var(--c-red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 11px; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.nl-title { font-family: var(--f-head); font-size: 26px; font-weight: 800; color: var(--c-text); margin-bottom: 10px; letter-spacing: -.4px; line-height: 1.2; }
.nl-desc { font-size: 14px; color: var(--c-muted); line-height: 1.75; margin-bottom: 14px; }
.nl-features { list-style: none; }
.nl-features li { font-size: 13px; color: var(--c-text); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.nl-features li::before { content: '✓'; color: var(--c-teal); font-weight: 800; }
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form input { padding: 12px 15px; border: 1.5px solid var(--c-border); border-radius: var(--r); font-size: 14px; font-family: var(--f-body); outline: none; background: var(--c-white); color: var(--c-text); transition: .2s; }
.nl-form input:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(216,90,48,.1); }
.nl-submit { background: var(--c-red); color: #fff; border: none; padding: 13px; border-radius: var(--r); font-size: 14px; font-weight: 700; cursor: pointer; transition: .18s; font-family: var(--f-body); }
.nl-submit:hover { background: var(--c-red-h); }
.nl-note { font-size: 11px; color: var(--c-muted); text-align: center; }

/* ══════════════════════════════════════════
   SINGLE ARTICLE
══════════════════════════════════════════ */
.article-layout { max-width: var(--max); margin: 0 auto; padding: 40px 20px; display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-header { margin-bottom: 28px; }
.article-label { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--c-muted); margin-bottom: 12px; flex-wrap: wrap; }
.article-title { font-family: var(--f-head); font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--c-text); line-height: 1.2; letter-spacing: -.5px; margin-bottom: 14px; }
.article-author { display: flex; gap: 14px; align-items: flex-start; background: var(--c-light); border-radius: var(--rl); padding: 16px 20px; margin-bottom: 24px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--c-black); color: #fff; font-family: var(--f-head); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--c-text); }
.author-role { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.author-cred { font-size: 12px; color: var(--c-teal); margin-top: 4px; }
.quick-answer { background: #EBF0FF; border-left: 4px solid var(--c-blue); border-radius: 0 var(--rl) var(--rl) 0; padding: 18px 22px; margin: 0 0 28px; }
.qa-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-blue); margin-bottom: 8px; }
.qa-text { font-size: 15px; color: var(--c-text); line-height: 1.7; }
.affiliate-disclosure { background: #FFF8E6; border-left: 3px solid var(--c-gold); padding: 10px 16px; font-size: 12px; color: #7A5800; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 24px; }
.article-content h2 { font-family: var(--f-head); font-size: 24px; font-weight: 700; color: var(--c-text); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-border); }
.article-content h3 { font-family: var(--f-head); font-size: 19px; font-weight: 700; color: var(--c-blue); margin: 28px 0 10px; }
.article-content p { margin-bottom: 1.2em; }
.article-content a { color: var(--c-blue); font-weight: 500; }
.article-content a:hover { color: var(--c-red); }
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--rxl); padding: 20px; margin-bottom: 20px; }
.widget-title { font-family: var(--f-head); font-size: 14px; font-weight: 700; color: var(--c-text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-border); }
.toc-list li { padding: 5px 0; border-bottom: 1px solid var(--c-border); }
.toc-list li:last-child { border: none; }
.toc-list a { font-size: 13px; color: var(--c-muted); font-weight: 500; transition: color .15s; display: flex; gap: 8px; align-items: center; }
.toc-list a:hover { color: var(--c-red); }
.toc-list a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--c-border); flex-shrink: 0; }
.affiliate-cta { background: linear-gradient(135deg,#0D0F14,#141820); border-radius: var(--rxl); padding: 20px; text-align: center; margin-bottom: 20px; }
.ac-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.ac-product { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ac-price { font-size: 24px; font-weight: 800; color: #2EC4A0; margin-bottom: 12px; }
.ac-btn { display: block; background: var(--c-red); color: #fff; padding: 12px; border-radius: var(--r); font-size: 14px; font-weight: 700; margin-bottom: 8px; transition: background .18s; }
.ac-btn:hover { background: var(--c-red-h); }
.ac-note { font-size: 10px; color: rgba(255,255,255,.3); }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--rl); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 14px 18px; font-size: 15px; font-weight: 600; color: var(--c-text); cursor: pointer; background: var(--c-light); display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-q:hover { background: var(--c-border); }
.faq-q::after { content: '+'; font-size: 20px; color: var(--c-red); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 14px 18px; font-size: 14px; color: var(--c-text); line-height: 1.75; display: none; background: var(--c-white); border-top: 1px solid var(--c-border); }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: #0D0F14; color: rgba(255,255,255,.45); padding: 52px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.35); max-width: 280px; margin-top: 12px; }
.footer-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 5px 12px; font-size: 11px; color: rgba(255,255,255,.28); margin-top: 14px; }
.site-footer h4 { font-family: var(--f-head); color: rgba(255,255,255,.7); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: rgba(255,255,255,.35); font-size: 13px; transition: color .15s; display: flex; align-items: center; gap: 6px; }
.site-footer ul a:hover { color: rgba(255,255,255,.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 40px; padding: 18px 20px 0; max-width: var(--max); margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.18); }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,.18); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════
   MISC
══════════════════════════════════════════ */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--c-red), var(--c-gold)); z-index: 9999; width: 0; transition: width .1s linear; pointer-events: none; }
#back-to-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--c-black); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; opacity: 0; transform: translateY(8px); transition: all .25s var(--ease); z-index: 99; border: none; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--c-red); }
mark { background: rgba(216,90,48,.15); color: var(--c-red); border-radius: 2px; padding: 0 2px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0; }
.page-num { width: 38px; height: 38px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 1.5px solid var(--c-border); color: var(--c-text); cursor: pointer; transition: all .15s; text-decoration: none; background: var(--c-card); }
.page-num:hover { border-color: var(--c-red); color: var(--c-red); }
.page-num.active { background: var(--c-black); color: #fff; border-color: var(--c-black); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .search-panel { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .side-stack { display: none; }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band-inner { grid-template-columns: repeat(3,1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .nl-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .header-search { display: none; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-band-inner { grid-template-columns: repeat(2,1fr); }
  .picks-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .site-topbar { display: none; }
  .hero-stats { gap: 16px; }
  .hstat-n { font-size: 20px; }
  .stat-n { font-size: 24px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .hero-stats { grid-template-columns: repeat(3,1fr); display: grid; }
  .stat-band-inner { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   LOGO SVG SIZE FIX
══════════════════════════════════════════ */
.site-logo-svg {
  height: 38px;
  width: auto;
  max-width: 160px;
  display: block;
}
.site-logo .custom-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
}
/* Footer logo — white version */
.site-footer .site-logo-svg .wordmark-dark {
  fill: #ffffff;
}
.site-footer .site-logo-svg .tagline-label {
  fill: rgba(255,255,255,.4);
}
.site-footer .site-logo-svg .tagline-sub {
  fill: rgba(255,255,255,.35);
}

/* ══════════════════════════════════════════
   SEARCH FORM OVERRIDE
══════════════════════════════════════════ */
.header-search .search-form { margin: 0; position: relative; }
.header-search .search-field {
  border: 1.5px solid var(--c-border);
  border-radius: 22px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  width: 200px;
  outline: none;
  background: var(--c-light);
  color: var(--c-text);
  font-family: var(--f-body);
  transition: all .22s var(--ease);
}
.header-search .search-field:focus {
  border-color: var(--c-red);
  background: var(--c-white);
  width: 240px;
  box-shadow: 0 0 0 3px rgba(216,90,48,.1);
}
.header-search .search-submit { display: none; }

/* ══════════════════════════════════════════
   MOBILE FIXES
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-logo-svg { height: 32px; max-width: 130px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .hero-inner { padding: 0; }
  .site-hero { padding: 40px 16px 36px; }
  .wrap { padding: 0 16px; }
  .section { padding: 36px 0; }
  .footer-grid { padding: 0 16px; }
  .footer-bottom { padding: 18px 16px 0; }
  .hero h1 { font-size: 24px; letter-spacing: -.3px; }
  .hero-desc { font-size: 14px; }
  .nl-inner { gap: 28px; padding: 0 16px; }
}
@media (max-width: 360px) {
  .site-logo-svg { height: 28px; max-width: 110px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   HERO SINGLE (no right panel)
══════════════════════════════════════════ */
.hero-inner-single {
  max-width: 720px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.hero-inner-single .hero-badge { margin-bottom: 14px; }
.hero-inner-single .hero-desc  { max-width: 560px; }

/* Advertise button style */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s var(--ease);
  font-family: var(--f-body);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); color: #fff; }

/* Nav Advertise link */
.nav-primary .nav-advertise {
  background: var(--c-red);
  color: #fff !important;
  border-radius: var(--r);
  padding: 6px 14px !important;
  font-weight: 700 !important;
  margin-left: 4px;
  transition: background .15s !important;
}
.nav-primary .nav-advertise:hover { background: var(--c-red-h) !important; }

/* ══════════════════════════════════════════
   ADVERTISE BAND
══════════════════════════════════════════ */
.advertise-band {
  background: linear-gradient(135deg, #0D0F14 60%, #1A1F2E);
  padding: 52px 20px;
  position: relative;
  overflow: hidden;
}
.advertise-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold), var(--c-teal));
}
.adv-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.adv-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.adv-title {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.adv-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 16px;
}
.adv-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.adv-features span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.adv-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .adv-inner { grid-template-columns: 1fr; gap: 24px; }
  .adv-title  { font-size: 24px; }
  .adv-cta-wrap { align-items: flex-start; }
}

/* ══════════════════════════════════════════
   HERO PANEL — Search + Trending
══════════════════════════════════════════ */
.hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px;
  animation: fadeIn .8s var(--ease) .3s both;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.panel-detect { font-weight: 400; font-size: 10px; color: rgba(255,255,255,.25); text-transform: none; letter-spacing: 0; }
.panel-search-row { display: flex; gap: 6px; margin-bottom: 8px; }
.panel-input {
  flex: 1;
  padding: 9px 12px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-family: var(--f-body);
  outline: none;
  transition: .2s;
  min-width: 0;
}
.panel-input::placeholder { color: rgba(255,255,255,.3); }
.panel-input:focus { border-color: var(--c-red); background: rgba(255,255,255,.1); }
.panel-go {
  background: var(--c-red);
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
  font-family: var(--f-body);
  flex-shrink: 0;
}
.panel-go:hover { background: var(--c-red-h); }
.panel-quick-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.panel-quick-tags a {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  transition: .12s;
  text-decoration: none;
}
.panel-quick-tags a:hover { background: rgba(255,255,255,.13); color: #fff; }
.panel-divider { height: 1px; background: rgba(255,255,255,.07); margin: 10px 0; }
.panel-trending-label { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.trending-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border-radius: 7px;
  padding: 7px 9px;
  margin-bottom: 5px;
  text-decoration: none;
  transition: .14s;
}
.trending-item:hover { background: rgba(255,255,255,.09); }
.trending-item:last-child { margin-bottom: 0; }
.tr-rank { font-size: 11px; color: rgba(255,255,255,.2); font-weight: 500; min-width: 18px; }
.tr-title { font-size: 11px; color: #fff; flex: 1; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.tr-flag { font-size: 13px; flex-shrink: 0; }
.tr-score { font-size: 11px; font-weight: 700; color: #2EC4A0; flex-shrink: 0; }
.sp-results {
  background: rgba(10,12,20,.95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 6px;
}
.sp-results.show { display: block; }
.spr-item { display: flex; align-items: center; gap: 8px; padding: 9px 11px; cursor: pointer; transition: .12s; border-bottom: 1px solid rgba(255,255,255,.04); text-decoration: none; }
.spr-item:last-child { border: none; }
.spr-item:hover { background: rgba(255,255,255,.05); }
.spr-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.spr-title { font-size: 12px; font-weight: 600; color: #fff; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spr-meta { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 1px; }
.spr-score { font-size: 12px; font-weight: 700; color: #2EC4A0; flex-shrink: 0; }
.spr-empty { padding: 16px; text-align: center; font-size: 12px; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════
   ADVERTISE BAND — REDESIGNED
══════════════════════════════════════════ */
.advertise-band {
  background: #0D0F14;
  padding: 0 0 48px;
  margin-top: 0;
}
.adv-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold), var(--c-teal));
  margin-bottom: 48px;
}
.advertise-band .adv-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.adv-reach-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.adv-reach-label span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.advertise-band .adv-title {
  font-family: var(--f-head);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.advertise-band .adv-title em { color: var(--c-red); font-style: normal; }
.advertise-band .adv-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 18px;
}
.adv-packages {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.adv-pkg {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: .18s;
}
.adv-pkg:hover { background: rgba(255,255,255,.09); border-color: rgba(216,90,48,.35); }
.adv-pkg .pkg-icon { font-size: 18px; margin-bottom: 6px; }
.adv-pkg .pkg-name { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.adv-pkg .pkg-price { font-size: 10px; color: rgba(255,255,255,.35); }
.adv-stats-row { display: flex; gap: 24px; }
.adv-sn { font-size: 20px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.adv-sl { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; display: block; }
.adv-divider { width: 1px; height: 100px; background: rgba(255,255,255,.07); align-self: center; flex-shrink: 0; }
.advertise-band .adv-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 190px;
  flex-shrink: 0;
}
.adv-note { font-size: 11px; color: rgba(255,255,255,.25); text-align: center; margin-top: 2px; }
@media (max-width: 900px) {
  .advertise-band .adv-inner { grid-template-columns: 1fr; gap: 24px; }
  .adv-divider { display: none; }
  .advertise-band .adv-cta-wrap { flex-direction: row; flex-wrap: wrap; }
  .adv-packages { grid-template-columns: repeat(2,1fr); }
}
