/* ==========================================================================
   Editorial article system
   Light theme only - the page renders white on any host, light or dark.
   learn.html    = long-form guide + review article
   blocked.html  = optional block interstitial
   ========================================================================== */

:root {
  --ink:            #0b0b0c;
  --ink-2:          #2f3236;
  --muted:          #5f6672;
  --muted-2:        #8d949e;
  --surface:        #ffffff;
  --surface-2:      #f7f8fa;
  --surface-3:      #eef0f4;
  --border:         #e3e5ea;
  --border-strong:  #c9ccd3;
  --dotted:         #c4c8d0;

  --purple:         #6a2ff0;   /* links, outline controls, chevrons */
  --purple-ink:     #5320c4;
  --green:          #a9f07d;   /* price buttons */
  --green-hover:    #93e561;
  --green-ink:      #0d2105;
  --red:            #e01b24;   /* award badge + score */
  --safe:           #12874f;

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 12px;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --col:  min(860px, 100%);

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

body {
  margin: 0; background: var(--surface); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 800; line-height: 1.13; letter-spacing: -.028em; }
p { margin: 0 0 1.15em; }
a { color: inherit; text-decoration: underline; text-decoration-color: var(--purple); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--purple); }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; border-radius: 3px; }

.muted { color: var(--muted); }
.small { font-size: .9375rem; }
.tiny  { font-size: .8125rem; }
.mono  { font-family: var(--mono); font-size: .95em; }
.nowrap { white-space: nowrap; }

/* ==========================================================================
   Article header
   ========================================================================== */
.shell { max-width: 908px; margin-inline: auto; padding-inline: 24px; }

.article-head { padding-top: clamp(2.25rem, 4vw, 3.25rem); }
.page-logo { width: 52px; height: auto; display: block; margin: 0 0 1.4rem; }
.article-head h1 {
  font-size: clamp(2.1rem, 1.2rem + 3.1vw, 3.35rem);
  letter-spacing: -.035em; max-width: 20ch; margin: 0;
}
.article-head .dek { font-size: 1.28rem; line-height: 1.42; color: var(--ink-2); margin: 1.1rem 0 0; max-width: 62ch; }

/* ==========================================================================
   Two-column body
   ========================================================================== */
.article-body { margin-top: 2.75rem; padding-bottom: 4rem; }

/* ==========================================================================
   Main column prose
   ========================================================================== */
.col h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.1rem); margin: 2.75rem 0 1rem; }
.col h3 { font-size: 1.3rem; margin: 2rem 0 .7rem; }
.col h4 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; }
.col > p, .col > ul, .col > ol { font-size: 1.0625rem; }
.col ul, .col ol { padding-left: 1.35rem; margin: 0 0 1.15em; }
.col li { margin-bottom: .5em; }
.col > p:first-child { margin-top: 0; }

/* Table of contents */
.toc { border: 1px solid var(--border-strong); border-radius: var(--r-lg); margin-bottom: 2rem; }
.toc > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.15rem; font-weight: 700; font-size: 1.02rem;
}
.toc > summary::-webkit-details-marker { display: none; }
.toc > summary .chev { margin-left: auto; transition: transform .2s ease; }
.toc[open] > summary .chev { transform: rotate(180deg); }
.toc ol { margin: 0; padding: 0 1.15rem 1.1rem 2.6rem; columns: 2; column-gap: 2rem; font-size: .9375rem; }
.toc li { margin-bottom: .4rem; break-inside: avoid; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* Figures */
figure { margin: 1.75rem 0; }
.ph-img {
  aspect-ratio: 16 / 9; border-radius: var(--r); display: grid; place-items: center;
  color: rgba(255,255,255,.82); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  background: linear-gradient(120deg, #1b2ec9, #7a1fd6 38%, #d61f7a 68%, #ff8a3d);
}
.ph-img[data-tone="2"] { background: linear-gradient(120deg, #0a7d5a, #12a3c9 45%, #6a2ff0); }
.ph-img[data-tone="3"] { background: linear-gradient(120deg, #b31212, #d97706 50%, #6a2ff0); }
figcaption { font-size: .75rem; color: var(--muted); margin-top: .5rem; }

/* Callout */
.callout { background: var(--surface-2); border-left: 3px solid var(--purple); border-radius: 0 var(--r) var(--r) 0; padding: 1.15rem 1.35rem; margin: 1.75rem 0; }
.callout h4 { margin-top: 0; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }

/* Dotted rule with a centered label (EXPAND PROS & CONS / JUMP TO DETAILS) */
.rule-label {
  display: flex; align-items: center; gap: 1rem; width: 100%;
  background: none; border: 0; font: inherit; padding: .55rem 0; cursor: pointer;
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.rule-label::before, .rule-label::after { content: ""; flex: 1; border-top: 2px dotted var(--dotted); }
.rule-label span { display: inline-flex; align-items: center; gap: .4rem; }
.rule-label svg { width: 13px; height: 13px; transition: transform .18s ease; }
.rule-label[aria-expanded="true"] svg { transform: rotate(180deg); }
a.rule-label { text-decoration: none; }

/* ==========================================================================
   Compact picks list ("Our Picks")
   ========================================================================== */
.picks { border-top: 2px dotted var(--dotted); margin-top: 1.25rem; }
.pick { border-bottom: 2px dotted var(--dotted); }
.pick__row { display: grid; grid-template-columns: 122px minmax(0,1fr) 300px; gap: 1.5rem; align-items: center; padding: 1.15rem 0; }
.logo-tile {
  aspect-ratio: 16 / 10; border-radius: var(--r-sm); display: grid; place-items: center; overflow: hidden;
  background: #1a56db; color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: -.02em; text-align: center; padding: .4rem;
}
.logo-tile img { width: 100%; height: 100%; object-fit: contain; }
.badge {
  display: inline-flex; align-items: center; gap: .35rem; background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .42rem .2rem .2rem; border-radius: 2px;
}
.badge__mark { display: grid; place-items: center; width: 15px; height: 15px; background: #fff; color: var(--red); border-radius: 2px; font-size: .6rem; font-weight: 900; }
.badge-alt { background: var(--purple); }
.badge-alt .badge__mark { color: var(--purple); }
.pick__cat {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 .45rem;
}
.pick__best { font-size: .9375rem; color: var(--muted); margin: .45rem 0 .1rem; }
.pick__name { font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; margin: 0; }
.btn-buy {
  display: block; width: 100%; text-align: center; text-decoration: none;
  background: var(--green); color: var(--green-ink); font-weight: 700; font-size: 1rem;
  padding: .8rem 1rem; border-radius: var(--r-sm); border: 1px solid color-mix(in srgb, var(--green-ink) 12%, var(--green));
}
.btn-buy:hover { background: var(--green-hover); color: var(--green-ink); }
.pick__note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: .4rem; }
.pick__detail { padding-bottom: 1.35rem; }
@media (max-width: 760px) {
  .pick__row { grid-template-columns: 96px minmax(0,1fr); gap: 1rem; }
  .pick__cta { grid-column: 1 / -1; }
}

/* Pros & cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.pros-cons h4 { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 .6rem; }
.pros-cons .pros h4 { color: var(--safe); }
.pros-cons .cons h4 { color: var(--red); }
.pros-cons ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; align-content: start; }
.pros-cons li { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: .6rem; font-size: .9375rem; line-height: 1.45; }
.pros-cons li::before {
  content: "+"; width: 19px; height: 19px; margin-top: .12rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 800; line-height: 1;
  border: 1.6px solid var(--safe); color: var(--safe);
}
.pros-cons .cons li::before { content: "−"; border-color: var(--red); color: var(--red); }
@media (max-width: 620px) { .pros-cons { grid-template-columns: 1fr; } }

.featured-head { display: flex; align-items: center; gap: 1rem; padding-top: 1.1rem; }
.featured-head b { font-size: .875rem; font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.featured-head .what { font-size: .8125rem; color: var(--muted); display: inline-flex; align-items: center; gap: .3rem; }
.featured-head::after { content: ""; flex: 1; border-top: 2px dotted var(--dotted); }

/* ==========================================================================
   Full detail cards ("Best antivirus software of 2026")
   ========================================================================== */
.detail {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  padding: 1.75rem; margin-bottom: 1.75rem; background: var(--surface);
}
.detail__top { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 1.75rem; align-items: start; }
.detail__media { position: relative; }
.detail__media .ph-img { aspect-ratio: 16 / 10; }
.zoom {
  position: absolute; top: 10px; left: 10px; width: 32px; height: 32px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.92); color: #111; display: grid; place-items: center; border: 0; cursor: pointer;
}
.detail__credit { display: flex; align-items: center; gap: 1rem; margin-top: .55rem; font-size: .75rem; color: var(--muted); }
.dots-nav { margin-left: auto; display: flex; align-items: center; gap: .5rem; color: var(--muted-2); }
.dots-nav i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); display: block; }
.dots-nav i.on { background: var(--purple); }
.detail__name { font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem); margin: .5rem 0 .6rem; }
.detail__best { font-size: 1.0625rem; color: var(--muted); margin: .6rem 0 0; }
.score { display: inline-flex; align-items: baseline; gap: .5rem; color: var(--red); font-family: var(--serif); font-weight: 700; }
.score b { font-size: 1.75rem; letter-spacing: -.02em; }
.score span { font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; border-bottom: 2px solid currentColor; }
.detail h3 { font-size: 1.35rem; margin: 0; }
.detail__stars { margin: .35rem 0 0; }
.detail__stars .stars { display: inline-flex; gap: 3px; }
.detail__stars .stars svg { width: 21px; height: 21px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 .35rem; }
.chev-btn {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center; cursor: pointer;
  border: 1.5px solid var(--purple); border-radius: var(--r-sm); background: transparent; color: var(--purple);
}
.chev-btn svg { width: 15px; height: 15px; transition: transform .2s ease; }
.chev-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.detail__sep { border: 0; border-top: 2px dotted var(--dotted); margin: 1.35rem 0; }
.get-it { text-align: center; }
.get-it > span { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.get-it .btn-buy { max-width: 330px; margin-inline: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.spec-table th, .spec-table td { text-align: left; padding: .6rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table th { width: 40%; color: var(--muted); font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
@media (max-width: 720px) { .detail { padding: 1.25rem; } .detail__top { grid-template-columns: 1fr; } }

/* ==========================================================================
   Timeline / checklist / FAQ
   ========================================================================== */
.timeline { list-style: none; margin: 1.5rem 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; background: var(--border); }
.timeline li { position: relative; padding: 0 0 1.25rem 2.4rem; margin: 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border-strong); }
.timeline li[data-state="blocked"]::before { background: var(--safe); border-color: var(--safe); }
.timeline li[data-state="threat"]::before  { background: var(--red); border-color: var(--red); }
.timeline strong { display: block; }
.timeline span { color: var(--muted); font-size: .9375rem; }

.checklist { list-style: none; counter-reset: c; margin: 1.5rem 0; padding: 0; display: grid; gap: .75rem; }
.checklist li { counter-increment: c; position: relative; padding: .95rem 1.1rem .95rem 3.2rem; border: 1px solid var(--border); border-radius: var(--r); margin: 0; }
.checklist li::before {
  content: counter(c); position: absolute; left: 1rem; top: 1rem; width: 25px; height: 25px; border-radius: 50%;
  display: grid; place-items: center; background: color-mix(in srgb, var(--red) 12%, transparent); color: var(--red); font-weight: 800; font-size: .8rem;
}
.checklist strong { display: block; }
.checklist p { margin: .15rem 0 0; font-size: .9375rem; color: var(--muted); }

details.faq { border-bottom: 1px solid var(--border); }
details.faq summary { cursor: pointer; list-style: none; padding: 1rem 2.25rem 1rem 0; position: relative; font-weight: 700; font-size: 1.05rem; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--purple); line-height: 1; }
details.faq[open] summary::after { content: "−"; }
details.faq p { color: var(--ink-2); font-size: 1rem; }

/* ==========================================================================
   Closing CTA + footer
   ========================================================================== */

/* ==========================================================================
   blocked.html interstitial
   ========================================================================== */
.block-page { min-height: 100dvh; display: grid; place-items: center; padding: 2rem 1.25rem; background: var(--surface-2); }
.block-card { width: min(640px,100%); background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.10); overflow: hidden; }
.block-card__top { padding: 2.4rem 2.2rem 1.8rem; text-align: center; }
.shield { width: 72px; height: 72px; margin: 0 auto 1.3rem; border-radius: 20px; display: grid; place-items: center; color: var(--red); background: color-mix(in srgb, var(--red) 10%, transparent); }
.shield svg { width: 36px; height: 36px; }
.block-card h1 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem); margin: .8rem 0 .5rem; }
.block-card p { color: var(--ink-2); max-width: 44ch; margin-inline: auto; }
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .28rem .7rem; border-radius: 99px; font-size: .78rem; font-weight: 700; background: color-mix(in srgb, var(--red) 10%, transparent); color: var(--red); }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.block-card__domain { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .9rem; padding: .55rem .9rem; margin: 1.1rem 0 0; background: var(--surface-3); border: 1px solid var(--border); border-radius: var(--r); word-break: break-all; text-align: left; }
.block-card__domain s { color: var(--red); }
.block-actions { display: grid; gap: .6rem; margin-top: 1.6rem; }
.btn-primary { background: var(--purple); color: #fff; border: 0; border-radius: var(--r-sm); padding: .95rem 1.4rem; font: inherit; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-primary:hover { background: var(--purple-ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: .95rem 1.4rem; font: inherit; font-weight: 650; cursor: pointer; }
.btn-ghost:hover { background: var(--surface-2); }
.block-card__meta { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); background: var(--surface-2); }
.block-card__meta div { padding: .9rem 1rem; text-align: center; border-left: 1px solid var(--border); }
.block-card__meta div:first-child { border-left: 0; }
.block-card__meta dt { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; margin-bottom: .2rem; }
.block-card__meta dd { margin: 0; font-size: .875rem; font-weight: 700; }
.block-foot { text-align: center; margin-top: 1.1rem; }
.block-foot a { color: var(--muted); font-size: .8125rem; }
@media (max-width: 460px) { .block-card__meta { grid-template-columns: 1fr; } .block-card__meta div { border-left: 0; border-top: 1px solid var(--border); } .block-card__meta div:first-child { border-top: 0; } }

/* ==========================================================================
   Ranked list template (virus-removal.html)
   Numbered comparison cards: logo | copy + features | score + CTA
   ========================================================================== */
.shell-wide { max-width: 1300px; }
.rank-head { text-align: center; padding-top: clamp(2rem, 4vw, 3rem); }
.rank-head .page-logo { margin-inline: auto; }
.rank-head__updated { font-size: .875rem; font-weight: 700; color: var(--ink); margin: 0 0 1.5rem; }
.rank-head h1 {
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.4rem);
  letter-spacing: -.035em; margin: 0 0 1rem; text-wrap: balance;
}
.rank-head p { color: var(--ink-2); font-size: 1.05rem; max-width: 46ch; margin: 0 auto; text-wrap: balance; }

.rank-list { display: grid; gap: 1.1rem; padding: clamp(2rem, 4vw, 3rem) 0 4rem; }

.rank {
  position: relative;
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
  padding: 1.6rem 1.6rem 1.6rem 3.4rem;
}
.rank__num {
  position: absolute; top: 1.15rem; left: 1.1rem;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-3); color: var(--muted);
  font-size: .875rem; font-weight: 600; font-variant-numeric: tabular-nums;
}
.rank__grid {
  display: grid; grid-template-columns: 200px minmax(0, 1fr) 230px;
  gap: 1.75rem; align-items: center;
}
.rank__logo { display: grid; place-items: center; padding: .5rem; }
.rank__logo img { max-height: 96px; width: auto; }
.rank__mark {
  width: 100%; max-width: 168px; aspect-ratio: 5 / 3; border-radius: 10px;
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 1rem; letter-spacing: -.01em; text-align: center; padding: .5rem;
}
.rank__body { border-left: 1px solid var(--border); padding-left: 1.75rem; }

.rank__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.tag {
  display: inline-block; padding: .38rem .6rem; border-radius: 6px;
  font-size: .8125rem; font-weight: 700; line-height: 1.2;
}
.tag-dark { background: var(--ink); color: var(--surface); }
.tag-deal { background: #fde9a4; color: #3f2d05; }

.rank__desc { font-size: .9375rem; line-height: 1.55; color: var(--ink-2); margin: 0 0 .9rem; }
.rank__desc b { color: var(--ink); font-weight: 700; }

.rank__features {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem;
}
.rank__features li {
  display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: .55rem;
  align-items: start; font-size: .9375rem; line-height: 1.4; margin: 0;
}
.rank__features svg { width: 17px; height: 17px; margin-top: .12rem; color: #16a34a; }
@media (max-width: 620px) { .rank__features { grid-template-columns: 1fr; } }

.rank__aside { display: grid; gap: .7rem; }
.scorebox { background: var(--surface-3); border-radius: 10px; padding: 1.15rem .75rem; display: grid; place-items: center; }
.scorebox .stars { display: flex; gap: 3px; }
.scorebox .stars svg { width: 24px; height: 24px; }
.scorebox__num {
  font-size: 2.4rem; line-height: 1; font-weight: 500; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; margin-bottom: .5rem;
}
.stars { display: flex; justify-content: center; gap: 2px; margin-bottom: .4rem; }
.stars svg { width: 17px; height: 17px; }
.scorebox__word { font-size: .875rem; color: var(--muted); }

.btn-visit {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--ink); color: var(--surface); text-decoration: none;
  border-radius: 8px; padding: .95rem 1rem; font-weight: 600; font-size: 1rem;
}
.btn-visit:hover { background: #2c2c30; color: var(--surface); }
.btn-visit svg { width: 17px; height: 17px; }

@media (max-width: 940px) {
  .rank__grid { grid-template-columns: 150px minmax(0, 1fr); gap: 1.25rem; }
  .rank__aside { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (max-width: 620px) {
  .rank { padding: 3.1rem 1.1rem 1.25rem; }
  .rank__num { top: 1.1rem; left: 1.1rem; }
  .rank__grid { grid-template-columns: minmax(0, 1fr); }
  .rank__body { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.1rem; }
  .rank__aside { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Touch targets
   The chevron and zoom controls are deliberately small, so the hit area is
   expanded with a pseudo-element instead of inflating the visible control.
   ========================================================================== */
.chev-btn, .zoom, .btn-buy, .btn-visit, .rule-label, summary { touch-action: manipulation; }

.chev-btn, .zoom { position: relative; }
.chev-btn::after, .zoom::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%, -50%);
}

@media (pointer: coarse), (max-width: 620px) {
  /* full-width control, so only the height needs to reach the 44px minimum */
  .rule-label { padding-block: .95rem; }
  details.faq summary { padding-block: 1.15rem; }
  .toc > summary { padding-block: 1.15rem; }
}

/* ==========================================================================
   Small-screen refinements
   ========================================================================== */
@media (max-width: 420px) {
  body { font-size: 16px; }
  .shell { padding-inline: 18px; }
  .pick__row { grid-template-columns: 76px minmax(0, 1fr); gap: .85rem; }
  .pick__name { font-size: 1.15rem; }
  .detail { padding: 1.1rem; }
  .detail__name { font-size: 1.45rem; }
  .rank { padding: 3rem .95rem 1.15rem; }
  .rank__mark { max-width: 140px; }
  .rank-head h1 { font-size: 2rem; }
}

/* ==========================================================================
   Brand logo tiles (real wordmark logos on white)
   ========================================================================== */
.logo-tile--brand {
  background: #fff !important;
  border: 1px solid var(--border);
  display: grid; place-items: center; padding: .5rem .6rem;
}
.logo-tile--brand svg, .logo-tile--brand img { width: 100%; height: auto; max-height: 46px; }
.logo-tile--detail { aspect-ratio: 16 / 10; border-radius: var(--r); }
.logo-tile--detail svg, .logo-tile--detail img { max-height: 80px; }
.rank__mark--brand {
  background: #fff; border: 1px solid var(--border); padding: .5rem .7rem;
  display: grid; place-items: center;
}
.rank__mark--brand svg, .rank__mark--brand img { width: 100%; height: auto; max-height: 62px; }
