/* ==========================================================================
   Celebrity Snacks — shared site stylesheet
   Visual language reproduced from the domain's own 2025 identity:
   near-black base, crimson->orange signature gradient, golden chip accents,
   retro snack-packaging energy with heavy keylines.
   Every page (money page, homepage mirror, EEAT, utility) links THIS file.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root{
  /* surfaces (legacy --color-content-bg family) */
  --bg:#0E1012;
  --bg-alt:#161616;
  --bg-card:#1B1E22;
  --bg-raise:#22272D;
  --bg-sunk:#0A0C0E;

  /* ink */
  --ink:#FFFFFF;
  --body:#BABBCA;
  --faded:rgba(255,255,255,.50);
  --rule:rgba(255,255,255,.10);
  --rule-hi:rgba(255,255,255,.18);

  /* brand accents (legacy --color-content-primary / -secondary) */
  --crimson:#DF1238;
  --crimson-deep:#BD0000;
  --orange:#FF6A3F;
  --gold:#FFC81F;
  --gold-deep:#E0A700;
  --cream:#F6E7C8;

  /* the signature move, lifted verbatim from the legacy theme */
  --grad:linear-gradient(300deg,#DF1238,#FF6A3F);
  --grad-flat:linear-gradient(90deg,#DF1238,#FF6A3F);
  --overlay:linear-gradient(180deg,rgba(14,16,18,.55),#0E1012);

  /* ---- RESERVED CTA COLOUR -------------------------------------------
     Rule 19: appears on ACTION BUTTONS ONLY. Never on headings, ranks,
     bonuses, ribbons, links, borders or icons.
     Electric cyan-blue: complement of the warm crimson/orange/gold palette.
     Diverged deliberately from every sibling property -
       forgottenmanproductions #24e0c0 (teal) | drspar #6D4AF0 (violet)
       pressjuiceco #e2542f | creatinginspiration #ff7a00 (both warm)
     Contrast: 8.54:1 on --bg. Ink is DARK - white on cyan fails at 2.23:1.
     -------------------------------------------------------------------- */
  --cta:#2BB8FF;
  --cta-dark:#0E93D8;
  --cta-ink:#05161F;
  --cta-glow:rgba(43,184,255,.34);

  /* type (legacy Google Fonts pairing) */
  --display:"Jost",system-ui,sans-serif;
  --text:"Plus Jakarta Sans",system-ui,sans-serif;

  --keyline:2.5px;          /* the retro outline weight from the logo */
  --r:14px;                 /* card radius */
  --wrap:1140px;
}

/* ---------- 2. Reset / base --------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--body);
  font:400 17px/1.65 var(--text);
  overflow-x:hidden;
}
h1,h2,h3,h4{font-family:var(--display);color:var(--ink);font-weight:600;line-height:1.15;margin:0 0 .5em}
h1{font-size:clamp(1.75rem,4.4vw,2.9rem);letter-spacing:-.015em}
h2{font-size:clamp(1.4rem,3vw,2rem);letter-spacing:-.01em}
h3{font-size:clamp(1.12rem,2.2vw,1.4rem)}
p{margin:0 0 1.05em}
a{color:var(--gold);text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:var(--orange)}
img{max-width:100%;height:auto;display:block}
.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:20px}
@media(max-width:560px){.wrap{padding-inline:16px}}
/* NB: never add `padding` SHORTHAND to a class that also carries .wrap */

/* ---------- 3. THE MOTIF KIT -------------------------------------------
   Everything here is derived from the logo's own vocabulary so the site
   reads as one system: chip rim notches, dashed inner ring, crumb scatter,
   bite crescent, heavy keyline.
   ---------------------------------------------------------------------- */

/* 3a. Chip-notch band — the repeating signature. Reads as the milled edge
       of a poker chip. Used as section dividers and card top-edges. */
.notch-band{
  height:12px;width:100%;
  background:
    repeating-linear-gradient(90deg,
      var(--cream) 0 16px, transparent 16px 40px);
  opacity:.85;
}
.notch-band--grad{
  background:
    repeating-linear-gradient(90deg,
      rgba(246,231,200,.95) 0 16px, transparent 16px 40px),
    var(--grad-flat);
  opacity:1;
}
.notch-band--thin{height:7px;background:
  repeating-linear-gradient(90deg,var(--cream) 0 10px,transparent 10px 26px);opacity:.55}

/* 3b. Dashed chip ring — for rank medallions and circular badges */
.chip-ring{
  position:relative;display:grid;place-items:center;
  width:54px;aspect-ratio:1;border-radius:50%;
  background:var(--gold);
  border:var(--keyline) solid #000;
  font:600 1.15rem/1 var(--display);color:#111;
  box-shadow:0 3px 0 rgba(0,0,0,.55);
}
.chip-ring::before{                     /* the dashed inner ring */
  content:"";position:absolute;inset:6px;border-radius:50%;
  border:2px dashed rgba(0,0,0,.42);
}
.chip-ring::after{                      /* four rim notches */
  content:"";position:absolute;inset:-1px;border-radius:50%;
  background:
    conic-gradient(from 0deg,
      var(--cream) 0 7deg,transparent 7deg 83deg,
      var(--cream) 83deg 97deg,transparent 97deg 173deg,
      var(--cream) 173deg 187deg,transparent 187deg 263deg,
      var(--cream) 263deg 277deg,transparent 277deg 360deg);
  -webkit-mask:radial-gradient(circle,transparent 0 60%,#000 61% 100%);
          mask:radial-gradient(circle,transparent 0 60%,#000 61% 100%);
  pointer-events:none;
}

/* 3c. Crumb scatter — the flying flakes from the logo's bitten edge.
       Decorative only; kept low-contrast so it never fights content. */
.crumbs{
  position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:
    radial-gradient(circle,var(--gold) 46%,transparent 47%),
    radial-gradient(circle,var(--orange) 46%,transparent 47%),
    radial-gradient(circle,var(--gold) 46%,transparent 47%);
  background-size:7px 7px,5px 5px,4px 4px;
  background-position:12% 22%,78% 16%,54% 82%;
  background-repeat:no-repeat;
}

/* 3d. Bite crescent — the brand's cut-out. A chip-sized circle bitten out
       of a card's top-right corner. This is the shape signature. */
.bitten{
  -webkit-mask:radial-gradient(circle 34px at calc(100% - 16px) -6px,transparent 0 100%,#000 101%);
          mask:radial-gradient(circle 34px at calc(100% - 16px) -6px,transparent 0 100%,#000 101%);
}

/* 3e. Snack-packet tile — a very low-opacity repeating chip/crumb field.
       The legacy site's packaging had a houndstooth; this is its quiet
       descendant, used behind full-bleed sections only. */
.packet-field{position:relative;isolation:isolate}
.packet-field::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;opacity:.055;
  background-image:
    radial-gradient(circle at 50% 50%,var(--gold) 0 4px,transparent 5px),
    radial-gradient(circle at 50% 50%,var(--crimson) 0 3px,transparent 4px);
  background-size:52px 52px,52px 52px;
  background-position:0 0,26px 26px;
}

/* 3f. Keylined surface — the unifying heavy outline from the logo art */
.keyed{border:var(--keyline) solid #000;box-shadow:0 4px 0 rgba(0,0,0,.5)}

/* ---------- 4. Masthead ------------------------------------------------- */
/* Non-sticky by deliberate choice (rule 7). */
.masthead{background:var(--bg-alt);border-bottom:1px solid var(--rule);position:static}
.masthead__in{display:flex;align-items:center;gap:18px;min-height:76px}
.masthead__logo{flex:0 0 auto}
.masthead__logo img{width:214px;max-width:46vw}
@media(max-width:560px){.masthead__logo img{width:170px}}
.nav{margin-left:auto;display:flex;align-items:center;gap:22px}
.nav a{color:#ccc;font:500 .95rem/1 var(--text);text-decoration:none}
.nav a:hover{color:var(--crimson)}
.burger{display:none;margin-left:auto;background:none;border:0;padding:8px;cursor:pointer}
.burger span{display:block;width:26px;height:3px;background:var(--ink);border-radius:2px}
.burger span+span{margin-top:5px}

@media(max-width:900px){
  .burger{display:block}
  .nav{
    position:absolute;left:0;right:0;top:100%;z-index:40;
    display:none;flex-direction:column;align-items:stretch;gap:0;
    background:var(--bg-alt);border-bottom:2px solid var(--rule);
  }
  .masthead{position:relative}
  .nav.is-open{display:flex}
  .nav a{padding:15px 20px;border-top:1px solid var(--rule)}
}

/* ---------- 5. THE CTA -------------------------------------------------
   Bespoke design: a chip-milled, keylined, hard-shadowed "press" button.
   The notch ticks along the bottom edge echo a poker chip's milled rim,
   and the button physically depresses on :active.
   ---------------------------------------------------------------------- */
.cta{
  --_shadow:5px;
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  gap:.5em;padding:15px 26px;
  font:600 1rem/1 var(--display);letter-spacing:.02em;text-align:center;
  color:var(--cta-ink);background:var(--cta);
  border:var(--keyline) solid #000;border-radius:11px;
  text-decoration:none;cursor:pointer;overflow:hidden;
  box-shadow:0 var(--_shadow) 0 var(--cta-dark),0 calc(var(--_shadow) + 2px) 0 #000;
  transition:transform .09s ease,box-shadow .09s ease,background .15s ease;
}
.cta::after{                       /* milled rim ticks along the bottom */
  content:"";position:absolute;left:0;right:0;bottom:0;height:5px;
  background:repeating-linear-gradient(90deg,
    rgba(0,0,0,.30) 0 5px,transparent 5px 12px);
}
.cta:hover{background:#48C4FF}
.cta:active{
  transform:translateY(var(--_shadow));
  box-shadow:0 0 0 var(--cta-dark),0 2px 0 #000;
}
.cta:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
.cta--full{width:100%}
.cta--lg{padding:18px 32px;font-size:1.08rem;--_shadow:6px}
.cta--sm{padding:11px 18px;font-size:.9rem;--_shadow:4px}

/* Ghost CTA — the ONLY non-cyan action treatment, for secondary in-page
   navigation (e.g. "See the top 15"). Not an affiliate action. */
.ghost{
  display:inline-flex;align-items:center;gap:.5em;
  padding:13px 22px;border:2px solid var(--rule-hi);border-radius:11px;
  color:var(--ink);background:transparent;text-decoration:none;
  font:600 .97rem/1 var(--display);
}
.ghost:hover{border-color:var(--gold);color:var(--gold)}

/* ---------- 6. TOPLIST CARD -------------------------------------------
   Bespoke layout, built so the SAME markup reflows between viewports with
   no content hidden either way (rule 2).

   Desktop  -> 5 columns: rank | brand | rating | BONUS (widest) | action
   Mobile   -> stacked, centred, explicit source order:
               rank+brand -> rating -> BONUS -> pills -> full-width CTA
   Bonus block is the visual anchor in both: gold, oversized, keylined.
   ---------------------------------------------------------------------- */
.toplist{display:grid;gap:16px;margin:0;padding:0;list-style:none}

.tcard{
  position:relative;
  background:var(--bg-card);
  border:var(--keyline) solid #000;border-radius:var(--r);
  box-shadow:0 5px 0 rgba(0,0,0,.55);
  overflow:hidden;
}
.tcard__notch{                     /* chip-notch band across the card top */
  height:8px;
  background:repeating-linear-gradient(90deg,var(--cream) 0 14px,transparent 14px 36px),
             var(--grad-flat);
}
/* Explicit grid AREAS at all three tiers — no source-order hacks, and the
   same six blocks are present in every view (rule 2). */
.tcard__grid{
  display:grid;align-items:center;gap:14px 18px;padding:18px 20px;
  grid-template-columns:62px minmax(140px,1.05fr) 88px minmax(200px,1fr) 170px;
  grid-template-areas:
    "rank brand rating bonus act"
    "rank strip strip strip act";
}
.tcard__rank{grid-area:rank}
.tcard__brand{grid-area:brand}
.tcard__rating{grid-area:rating}
.bonus{grid-area:bonus}
.tcard__strip{grid-area:strip}
.tcard__act{grid-area:act}
.tcard--top{box-shadow:0 5px 0 rgba(0,0,0,.55),0 0 0 3px var(--gold)}

/* ribbon — sits INSIDE the card, never above a heading */
.tcard__ribbon{
  position:absolute;top:8px;right:0;z-index:3;
  padding:5px 13px 5px 15px;
  font:600 .66rem/1 var(--display);letter-spacing:.13em;text-transform:uppercase;
  color:#fff;background:var(--grad-flat);
  border:2px solid #000;border-right:0;border-radius:8px 0 0 8px;
}
/* cards carrying a ribbon reserve clearance so it never sits over the logo */
.tcard--ribboned .tcard__grid{padding-top:24px}

.tcard__brand{display:flex;align-items:center;gap:14px;min-width:0}
.tcard__chip{                      /* white logo chip - every logo must be visible on it */
  flex:0 0 auto;width:96px;height:60px;
  display:grid;place-items:center;padding:7px;
  background:#fff;border:2px solid #000;border-radius:10px;
}
.tcard__chip img{max-height:100%;width:auto;object-fit:contain}
.tcard__name{display:block;font:600 1.08rem/1.25 var(--display);color:var(--ink)}
.tcard__meta{display:block;font-size:.8rem;line-height:1.35;color:var(--faded);margin-top:4px}
.tcard__id{min-width:0}

.tcard__rating{text-align:center;line-height:1}
.tcard__score{font:600 1.5rem/1 var(--display);color:var(--ink)}
.tcard__stars{color:var(--gold);font-size:.88rem;letter-spacing:.06em;margin-top:4px}

/* ---- the bonus block: THE eye-catcher (rule 6) ---------------------- */
.bonus{
  padding:12px 16px;border-radius:12px;text-align:center;
  background:var(--bg-sunk);border:2px solid rgba(255,200,31,.30);
}
.bonus__label{
  font:600 .64rem/1 var(--display);letter-spacing:.15em;text-transform:uppercase;
  color:var(--faded);
}
.bonus__amt{
  display:block;margin-top:6px;
  font:600 clamp(1.3rem,2.4vw,1.72rem)/1.08 var(--display);
  color:var(--gold);            /* gold: 12.29:1 on base. crimson is AA-large only */
  letter-spacing:-.01em;
}
.bonus__note{display:block;margin-top:5px;font-size:.79rem;color:var(--body);line-height:1.35}
.bonus__code{display:block;margin-top:6px;font-size:.79rem;color:var(--faded)}
.bonus__code b{color:var(--cream);font-weight:600;letter-spacing:.06em}

.tcard__strip{border-top:1px solid var(--rule);padding-top:11px}
.tcard__pills{display:flex;flex-wrap:wrap;gap:6px}
.pill{
  font:500 .72rem/1 var(--text);padding:5px 9px;border-radius:999px;
  color:var(--body);background:rgba(255,255,255,.06);border:1px solid var(--rule);
}
.tcard__act{display:flex;flex-direction:column;gap:8px;align-items:stretch;min-width:150px}
.tcard__terms{font-size:.68rem;color:var(--faded);text-align:center}

/* ---- responsive reflow: identical content, restacked via areas ---- */
/* tablet: rank stays beside the brand, everything else goes full width */
@media(max-width:940px){
  .tcard__grid{
    grid-template-columns:62px 1fr;
    grid-template-areas:
      "rank   brand"
      "rating rating"
      "bonus  bonus"
      "strip  strip"
      "act    act";
    gap:14px 16px;padding:16px;
  }
  .tcard__rating{display:flex;align-items:center;justify-content:center;gap:10px}
  .tcard__stars{margin-top:0}
  .tcard__act{min-width:0}
}
/* mobile: rank pairs with the brand on one identity row to keep the card
   short enough that the BONUS stays near the fold; everything below is
   centred full-width, CTA last, pills directly under the bonus. */
@media(max-width:600px){
  .tcard__grid{
    grid-template-columns:52px 1fr;
    grid-template-areas:
      "rank   brand"
      "rating rating"
      "bonus  bonus"
      "strip  strip"
      "act    act";
    gap:12px 12px;padding:14px;
  }
  .tcard--ribboned .tcard__grid{padding-top:32px}
  .tcard__rank{justify-self:center}
  .chip-ring{width:46px;font-size:1.02rem}
  .tcard__brand{gap:11px;text-align:left}
  .tcard__chip{width:104px;height:56px}
  .tcard__name{font-size:1.02rem}
  .tcard__meta{font-size:.76rem}
  .bonus,.tcard__strip,.tcard__act{width:100%}
  .tcard__rating{justify-content:center}
  .tcard__pills{justify-content:center}
  .bonus__amt{font-size:1.6rem}
}
/* very narrow: the identity row would crowd, so stack chip above the name */
@media(max-width:400px){
  .tcard__brand{flex-direction:column;align-items:center;gap:8px;text-align:center}
}

/* ---------- 7. Sections, tables, FAQ ----------------------------------- */
.sec{padding:44px 0}
.sec--alt{background:var(--bg-alt)}
.sec__lead{max-width:62ch;color:var(--body)}

.tbl-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
table{width:100%;border-collapse:collapse;font-size:.93rem;min-width:560px}
th,td{padding:11px 13px;text-align:left;border-bottom:1px solid var(--rule)}
th{font:600 .78rem/1.2 var(--display);letter-spacing:.08em;text-transform:uppercase;color:var(--faded);background:var(--bg-sunk)}

.faq{border:2px solid var(--rule);border-radius:12px;background:var(--bg-card);margin-bottom:10px}
.faq>summary{
  cursor:pointer;list-style:none;padding:15px 48px 15px 18px;position:relative;
  font:600 1.02rem/1.35 var(--display);color:var(--ink);
}
.faq>summary::-webkit-details-marker{display:none}
.faq>summary::after{
  content:"";position:absolute;right:16px;top:50%;width:14px;height:14px;
  margin-top:-7px;
  background:
    linear-gradient(var(--gold),var(--gold)) center/14px 2.5px no-repeat,
    linear-gradient(var(--gold),var(--gold)) center/2.5px 14px no-repeat;
  transition:transform .18s ease;
}
.faq[open]>summary::after{transform:rotate(45deg)}
.faq__body{padding:0 18px 16px}

/* ---------- 8. Byline (structured, not a compressed dot-run) ----------- */
.byline{display:flex;align-items:center;gap:13px;margin:18px 0 0}
.byline img{width:46px;height:46px;border-radius:50%;border:2px solid var(--rule-hi);flex:0 0 auto}
.byline__who{font:600 .95rem/1.3 var(--display);color:var(--ink)}
.byline__who a{color:var(--ink);text-decoration:none}
.byline__who a:hover{color:var(--gold)}
.byline__role{font-size:.82rem;color:var(--faded);margin-top:2px}
.byline__meta{display:flex;flex-wrap:wrap;gap:6px 14px;margin-top:5px;font-size:.78rem;color:var(--faded)}

/* ---------- 9. Footer + disclosure ------------------------------------- */
.foot{background:var(--bg-sunk);border-top:1px solid var(--rule);padding:36px 0 26px;margin-top:48px}
.foot a{color:var(--body);text-decoration:none}
.foot a:hover{color:var(--gold)}
.foot__cols{display:grid;gap:26px;grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}
.foot__h{font:600 .76rem/1 var(--display);letter-spacing:.13em;text-transform:uppercase;color:var(--faded);margin-bottom:12px}
.foot__list{list-style:none;margin:0;padding:0;display:grid;gap:8px;font-size:.9rem}
/* affiliate / #ad disclosure lives at the BOTTOM of the page (rule 5) */
.disclosure{margin-top:26px;padding-top:18px;border-top:1px solid var(--rule);font-size:.8rem;color:var(--faded)}

/* ---------- 10. Utilities ---------------------------------------------- */
.skip{position:absolute;left:-9999px}
.skip:focus{left:12px;top:12px;z-index:99;background:var(--gold);color:#111;padding:9px 14px;border-radius:8px}
@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}

/* ---------- 11. Mobile hero compaction --------------------------------
   Rule 1 is achieved by COMPACTING for both views, never by hiding
   content on mobile. Only spacing and type scale change here.
   -------------------------------------------------------------------- */
@media(max-width:600px){
  .sec{padding:30px 0}
  .hero{padding-top:22px!important;padding-bottom:16px!important}
  .hero h1{font-size:1.72rem;line-height:1.14;margin-bottom:.35em}
  .hero .sec__lead{font-size:.99rem;line-height:1.5;margin-bottom:10px}
  .byline{gap:11px;margin-top:14px}
  .byline img{width:40px;height:40px}
  .byline__meta{gap:3px 11px;font-size:.74rem;margin-top:4px}
  .byline__role{font-size:.78rem}
}

/* small phones: shave chrome only (no content removed) so the bonus block
   still lands inside a 640px viewport */
@media(max-width:400px){
  .masthead__in{min-height:64px}
  .hero{padding-top:18px!important;padding-bottom:12px!important}
  .hero h1{font-size:1.6rem}
  .hero .ghost{padding:11px 18px;font-size:.92rem}
  .hero p:last-child{margin-top:12px!important;margin-bottom:0}
  #toplist{padding-top:18px!important}
  #toplist>.wrap>h2{font-size:1.3rem;margin-bottom:.4em}
  .tcard__grid{padding:12px;gap:10px 10px}
  .tcard--ribboned .tcard__grid{padding-top:30px}
  .bonus{padding:10px 12px}
}

/* author box label: deliberately NOT a heading, so the page's last-3-H2
   fingerprint stays verdict -> methodology -> FAQ (tavern.ca already runs
   FAQ -> methodology -> About the Reviewer) */
.authorbox__h{
  font:600 .74rem/1 var(--display);letter-spacing:.15em;text-transform:uppercase;
  color:var(--faded);margin:0 0 4px;
}

/* money-page hero: final compaction so the first card's BONUS block (the money
   element, rule 6) sits inside a 700px mobile viewport. Spacing only. */
@media(max-width:600px){
  .hero{padding-top:14px!important;padding-bottom:10px!important}
  .hero h1{font-size:1.54rem;margin-bottom:.3em}
  .hero .sec__lead{font-size:.95rem;line-height:1.45;margin-bottom:8px}
  .hero .byline{margin-top:11px}
  .hero p:last-child{margin-top:10px!important}
  #toplist{padding-top:16px!important}
  #toplist>.wrap>h2{font-size:1.26rem;margin-bottom:.35em}
}

/* mobile identity row: the 52px rank column pushed the logo chip right of centre.
   Float the rank medallion into the card corner so brand/rating/bonus/CTA all
   centre on the true card axis. Also shortens the card slightly. */
@media(max-width:600px){
  .tcard__grid{
    grid-template-columns:1fr;
    grid-template-areas:"brand" "rating" "bonus" "strip" "act";
    justify-items:center;text-align:center;
  }
  .tcard__rank{position:absolute;top:16px;left:12px;z-index:2;grid-area:unset}
  .tcard--ribboned .tcard__grid{padding-top:30px}
  .tcard__brand{flex-direction:row;align-items:center;gap:12px;text-align:left}
}
@media(max-width:400px){
  .tcard__brand{flex-direction:column;align-items:center;gap:8px;text-align:center}
}

/* ---------- 12. Review strengths / weaknesses -------------------------
   Operator note: make these stylized and distinct from each other.
   Kept strictly inside the brand palette (gold = strength, crimson = watch-for)
   so no new hue enters the system, and the list markers reuse the chip motif
   rather than generic ticks and crosses. NEVER the reserved CTA cyan.
   -------------------------------------------------------------------- */
.rev{
  display:grid;gap:14px;grid-template-columns:1fr 1fr;
  margin:16px 0 14px;
}
.rev__col{
  position:relative;padding:14px 16px 14px 17px;
  background:var(--bg-sunk);border:2px solid var(--rule);border-radius:12px;
}
.rev__col::before{                       /* accent spine down the left edge */
  content:"";position:absolute;left:0;top:12px;bottom:12px;width:4px;
  border-radius:0 4px 4px 0;
}
.rev__col--pro::before{background:var(--gold)}
.rev__col--con::before{background:var(--crimson)}
.rev__col--pro{border-color:rgba(255,200,31,.28)}
.rev__col--con{border-color:rgba(223,18,56,.30)}

.rev__h{
  display:block;margin-bottom:9px;
  font:600 .68rem/1 var(--display);letter-spacing:.15em;text-transform:uppercase;
}
.rev__h--pro{color:var(--gold)}
.rev__h--con{color:#FF6B84}                /* lightened crimson: AA on --bg-sunk */

.rev__list{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.rev__list li{
  position:relative;padding-left:24px;font-size:.92rem;line-height:1.45;
}
.rev__list li::before{                     /* chip-motif marker, not a tick */
  content:"";position:absolute;left:0;top:.34em;
  width:14px;height:14px;border-radius:50%;
  border:2px solid currentColor;
}
.rev__list li::after{                      /* the sign inside the chip */
  position:absolute;left:0;width:14px;top:.34em;height:14px;
  font:600 .68rem/14px var(--display);text-align:center;
}
.rev__col--pro .rev__list li{color:var(--cream)}
.rev__col--pro .rev__list li::before{border-color:rgba(255,200,31,.55)}
.rev__col--pro .rev__list li::after{content:"+";color:var(--gold)}
.rev__col--con .rev__list li{color:var(--body)}
.rev__col--con .rev__list li::before{border-color:rgba(255,107,132,.55)}
.rev__col--con .rev__list li::after{content:"\2013";color:#FF6B84}

.rev__meta{
  font-size:.82rem;color:var(--faded);padding-top:10px;
  border-top:1px solid var(--rule);
}
@media(max-width:720px){ .rev{grid-template-columns:1fr} }

/* ---------- 13. Mobile toplist: brand logo ABOVE the name -------------
   Operator note: logo and name side by side reads odd on mobile. Stack the
   chip above the name at every width below the desktop grid, not just <=400.
   -------------------------------------------------------------------- */
@media(max-width:940px){
  .tcard__brand{flex-direction:column;align-items:center;gap:9px;text-align:center}
  .tcard__id{text-align:center}
}
