

:root {
  
  --felt-950: #061E15;
  --felt-900: #08281C;   
  --felt-800: #0D3B2A;   
  --felt-700: #14503A;   
  --felt-600: #1E6B4E;

  
  --red:      #C8102E;   
  --red-lit:  #E23A50;
  --gold:     #D9A93C;   
  --gold-dim: #8A6B22;

  
  --cream:    #F7F4EC;
  --cream-2:  #EFEADD;
  --cream-3:  #DED7C6;
  --ink:      #0B1A13;

  
  --bg:        var(--felt-900);
  --bg-raised: var(--felt-800);
  --line:      var(--felt-700);
  --text:      #F2F5F1;
  --text-2:    #BFD2C7;
  --text-3:    #86A392;
  --panel:     var(--felt-800);
  --panel-text: #F2F5F1;
  --shadow:    0 1px 0 rgba(255,255,255,.04), 0 12px 32px rgba(0,0,0,.45);

  --display: Antonio, "Antonio Fallback", "Segoe UI", system-ui, sans-serif;
  --body:    Chivo, "Segoe UI", system-ui, sans-serif;

  --r:   14px;          
  --r-s: 9px;
  --measure: 36rem;
  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: var(--cream);
    --bg-raised: #FFFFFF;
    --line: var(--cream-3);
    --text: var(--ink);
    --text-2: #3B4E44;
    --text-3: #5F7367;   
    --panel: var(--felt-800);      
    --panel-text: #F2F5F1;
    --shadow: 0 1px 0 rgba(0,0,0,.02), 0 10px 26px rgba(11,26,19,.10);
    color-scheme: light;
  }
}
:root[data-theme="light"] {
  --bg: var(--cream);
  --bg-raised: #FFFFFF;
  --line: var(--cream-3);
  --text: var(--ink);
  --text-2: #3B4E44;
  --text-3: #5F7367;   
  --panel: var(--felt-800);
  --panel-text: #F2F5F1;
  --shadow: 0 1px 0 rgba(0,0,0,.02), 0 10px 26px rgba(11,26,19,.10);
  color-scheme: light;
}


* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 1.0625rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -.02em; }
a { color: inherit; }
img, svg { max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.wrap { max-width: 76rem; margin: 0 auto; padding: 0 1.25rem; }
.skip { position: absolute; left: -9999px; background: var(--red); color: #fff; padding: .6em 1em; z-index: 60; }
.skip:focus { left: .5rem; top: .5rem; }


.hdr {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 1.4rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -.02em; }
.brand svg { width: 30px; height: 39px; }
.brand span { color: var(--text-3); font-weight: 600; }
.nav { display: flex; gap: .2rem; margin-left: auto; flex-wrap: wrap; }
.nav a {
  text-decoration: none; font-size: .9375rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: 99px; color: var(--text-2);
}
.nav :where(a):hover { background: var(--bg-raised); color: var(--text); }
.nav a[aria-current] { background: var(--red); color: #fff; }
.iconbtn {
  background: none; border: 1px solid var(--line); color: var(--text-2);
  width: 38px; height: 38px; border-radius: 99px; cursor: pointer; display: grid; place-items: center;
}
.iconbtn:hover { color: var(--text); border-color: var(--text-3); }
.iconbtn svg { width: 18px; height: 18px; }


.hs { position: relative; display: flex; align-items: center; }
.hs__l { position: absolute; left: -9999px; }
.hs svg { position: absolute; left: .65rem; color: var(--text-3); pointer-events: none; }
.hs__i {
  font: inherit; font-size: .875rem; width: 11rem; padding: .5rem .7rem .5rem 2.1rem;
  border: 1px solid var(--line); border-radius: 99px;
  background: var(--bg-raised); color: var(--text);
}
.hs__i::placeholder { color: var(--text-3); }
.hs__i:focus { outline: 2px solid var(--gold); outline-offset: 1px; width: 13rem; }
.btn--rnd { padding: .55em 1em; font-size: .875rem; white-space: nowrap; }
@media (max-width: 74rem) { .hs__i { width: 8rem; } }


.claims {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem;
  border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.6rem;
}
.claims > div { display: grid; grid-template-columns: 1.4rem 1fr; gap: .1rem .6rem; }
.claims svg { color: var(--gold); grid-row: span 2; margin-top: .15rem; }

.claims b { font-family: var(--display); font-size: .9375rem; color: var(--text); }
.claims span { font-size: .8125rem; color: var(--text-2); line-height: 1.45; }
@media (max-width: 62rem) { .claims { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 34rem) { .claims { grid-template-columns: 1fr; } }


.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: .9375rem; letter-spacing: .01em;
  padding: .78em 1.35em; border-radius: 99px; border: 0; text-decoration: none;
}
a.btn--primary, .btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-lit); }
a.btn--gold, .btn--gold { background: var(--gold); color: #24170A; }
.btn--gold:hover { background: #E8BC55; }
a.btn--ghost, .btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--text-3); }


.hero {
  position: relative; overflow: hidden; border-radius: var(--r);
  background:
    radial-gradient(120% 90% at 78% 18%, var(--felt-600) 0%, transparent 55%),
    linear-gradient(160deg, var(--felt-800), var(--felt-950));
  
  background-color: var(--felt-800);
  border: 1px solid var(--felt-700);
  margin: 1.6rem 0 2.6rem; box-shadow: var(--shadow);
}
.hero__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 2rem; padding: clamp(1.8rem, 4vw, 3.6rem); }

.hero__eyebrow {
  display: inline-flex; align-items: flex-start; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.hero__eyebrow svg { flex: none; margin-top: .22em; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #F6FAF7; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { color: #C7DACE; font-size: 1.125rem; margin: 1.1rem 0 1.8rem; max-width: 30rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__art { position: relative; min-height: 18rem; }
.hero__stats { display: flex; gap: 1.8rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__stats div { min-width: 5rem; }
.hero__stats b { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.hero__stats span { font-size: .8125rem; color: #9FBBAB; }
@media (max-width: 54rem) { .hero__in { grid-template-columns: 1fr; } .hero__art { min-height: 14rem; } }


.fan { position: absolute; inset: 0; display: grid; place-items: center; }
.fan svg { width: min(100%, 30rem); height: auto; overflow: visible; }

.hubcopy { border-top: 1px solid var(--line); margin-top: 2.6rem; padding-top: 1.8rem; }

.doc--wide { grid-template-columns: minmax(0, 1fr) 19rem; }

.doc--wide .reg__m, .doc--wide .reg__w, .doc--wide .reg th { white-space: nowrap; }
@media (max-width: 68rem) { .doc--wide { grid-template-columns: 1fr; } }
.hubcopy .prose { max-width: 46rem; }
.hubcopy .prose p, .hubcopy .prose li { max-width: var(--measure); }
.archive__plain { padding-top: .6rem; }

.archive .doc > article > .pager { margin-top: 1.8rem; }

.crumbs { margin: 1.6rem 0 .9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin: 0; padding: 0; font-size: .8125rem; }
.crumbs li { color: var(--text-3); }
.crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--text-3); }
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--red); text-decoration: underline; }


.catrow {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .4rem;
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.1rem .6rem; margin: -3.4rem 0 1rem; position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.catrow__i {
  display: grid; justify-items: center; gap: .3rem; text-align: center;
  padding: .7rem .4rem; border-radius: var(--r-s); text-decoration: none; color: inherit;
}
.catrow__i:hover { background: color-mix(in srgb, var(--red) 8%, transparent); }
.catrow__i svg { color: var(--ic, var(--red)); }
.catrow__i b { font-family: var(--display); font-size: .9375rem; }
.catrow__i span { font-size: .75rem; color: var(--text-3); }
@media (max-width: 60rem) {
  .catrow { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.4rem; }
}
@media (max-width: 34rem) { .catrow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }



.acards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
@media (max-width: 62rem) { .acards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) { .acards { grid-template-columns: 1fr; } }
.acard {
  position: relative; display: flex; flex-direction: column; text-decoration: none;
  color: inherit; background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: border-color .18s, transform .18s;
}
.acard:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.acard__img { display: block; aspect-ratio: 16 / 9; background: var(--felt-900); }
.acard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acard__cat {
  position: absolute; top: .8rem; left: .8rem; background: var(--red); color: #FFFFFF;
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: 5px;
}
.acard__b { padding: 1rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.acard__b h2 { font-size: 1.0625rem; line-height: 1.25; }
.acard__b p { margin: 0; font-size: .875rem; color: var(--text-2); flex: 1; }
.acard__b time { font-size: .75rem; color: var(--text-3); }
@media (prefers-reduced-motion: reduce) {
  .acard { transition: none; } .acard:hover { transform: none; }
}


.sec { margin: 3.2rem 0; }
.sec__head { display: flex; align-items: flex-end; gap: 1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.sec__head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.sec__head p { margin: .35rem 0 0; color: var(--text-2); font-size: .9375rem; max-width: 40rem; }
.sec__more { margin-left: auto; font-size: .875rem; font-weight: 600; color: var(--text-2); text-decoration: none; white-space: nowrap; }
.sec__more:hover { color: var(--text); }


.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr)); gap: 1rem; }
@media (min-width: 62rem) { .tiles { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.tile {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.2rem 1rem 1rem; text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  transition: transform .18s ease, border-color .18s ease;
}
.tile:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.tile__card { width: 62px; height: 86px; }
.tile b { font-family: var(--display); font-size: 1.0625rem; }
.tile span { font-size: .75rem; color: var(--text-3); }
@media (prefers-reduced-motion: reduce) { .tile { transition: none; } .tile:hover { transform: none; } }


.rulecards { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; }
.rulecard {
  background: var(--cream); color: var(--ink); border-radius: var(--r);
  padding: 1.3rem; text-decoration: none; display: block; box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.rulecard--gold { border-top-color: var(--gold); }
.rulecard--green { border-top-color: var(--felt-600); }
.rulecard h3 { font-size: 1.1875rem; margin-bottom: .45rem; }
.rulecard p { margin: 0; font-size: .9375rem; color: #40534A; }
.rulecard__meta { margin-top: .9rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }


.arts { display: grid; gap: .2rem; }
.art {
  display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 1rem; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid var(--line); text-decoration: none;
}
.art:hover h3 { color: var(--gold); }
.art__thumb { width: 5.5rem; height: 3.6rem; border-radius: var(--r-s); overflow: hidden; background: var(--felt-800); display: grid; place-items: center; }
.art__thumb svg { width: 34px; height: 47px; }
.art h3 { font-size: 1.0625rem; font-weight: 600; }
.art p { margin: .15rem 0 0; font-size: .8125rem; color: var(--text-3); }
.art__cat { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (max-width: 34rem) { .art { grid-template-columns: 3.6rem 1fr; } .art__cat { display: none; } }


.tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1.2rem; }
.tool {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.4rem; display: flex; flex-direction: column;
}
.tool h3 { font-size: 1.1875rem; margin-bottom: .3rem; }
.tool > p { margin: 0 0 1.1rem; font-size: .875rem; color: var(--text-2); }
.tool__foot { margin-top: auto; padding-top: 1rem; }


.quiz__q { font-family: var(--display); font-weight: 600; font-size: 1.0625rem; margin: 0 0 .9rem; }
.quiz__opts { display: grid; gap: .45rem; margin: 0 0 1rem; }
.quiz__opt {
  display: flex; align-items: center; gap: .6rem; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--r-s); padding: .65rem .8rem;
  background: none; color: var(--text); text-align: left; font-size: .9375rem;
}
.quiz__opt:hover { border-color: var(--text-3); }
.quiz__opt[data-state="right"] { border-color: var(--felt-600); background: color-mix(in srgb, var(--felt-600) 22%, transparent); }
.quiz__opt[data-state="wrong"] { border-color: var(--red); background: color-mix(in srgb, var(--red) 16%, transparent); }
.quiz__opt i { width: 1.4rem; height: 1.4rem; border-radius: 99px; border: 1px solid var(--line); display: grid; place-items: center; font-size: .6875rem; font-style: normal; color: var(--text-3); flex: none; }
.quiz__score { font-size: .8125rem; color: var(--text-3); }


.tool > p.odds__big, .odds__big { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; color: var(--felt-600); line-height: 1; }
:root[data-theme="dark"] .tool > p.odds__big { color: #4BD08F; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tool > p.odds__big { color: #4BD08F; }
}
.odds__row { display: flex; align-items: center; gap: .8rem; margin: .7rem 0; }
.odds__row label { font-size: .8125rem; color: var(--text-2); width: 7.5rem; flex: none; }
.odds__row output { font-size: .8125rem; color: var(--text-3); width: 2.5rem; text-align: right; font-variant-numeric: tabular-nums; }
input[type="range"] { flex: 1; accent-color: var(--red); }


.hands { list-style: none; margin: 0; padding: 0; counter-reset: h; }
.hands li { counter-increment: h; display: flex; align-items: center; gap: .7rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.hands li::before { content: counter(h) "."; font-family: var(--display); font-weight: 700; color: var(--text-3); width: 1.4rem; flex: none; font-size: .875rem; }
.hands b { font-size: .9375rem; font-weight: 600; }
.hands .mini { display: flex; gap: 2px; margin-left: auto; }
.hands .mini svg { width: 20px; height: 28px; }


.doc { display: grid; grid-template-columns: minmax(0, 1fr) 18rem; gap: 2.6rem; padding: 2rem 0 0; align-items: start; }
.doc h1 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
.doc__lead { font-size: 1.1875rem; color: var(--text-2); margin: 1rem 0 1.8rem; }
.doc h2 { font-size: 1.4rem; margin: 2.2rem 0 .8rem; }
.doc h3 { font-size: 1.125rem; margin: 1.6rem 0 .5rem; }
.doc p { margin: 0 0 1rem; max-width: var(--measure); }
.doc p.credit { font-size: .8125rem; color: var(--text-3); margin-top: 1.6rem; }
.doc ol.steps { counter-reset: s; list-style: none; margin: 0 0 1.6rem; padding: 0; }
.doc ol.steps li { counter-increment: s; display: grid; grid-template-columns: 2.2rem 1fr; gap: .9rem; padding: .7rem 0; }
.doc ol.steps li::before {
  content: counter(s); width: 2.2rem; height: 2.2rem; border-radius: 99px;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: .9375rem;
}
.rail { position: sticky; top: 4.6rem; display: grid; gap: 1.2rem; }
.rail__box { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem; }
.rail__box--img { padding: 0; overflow: hidden; line-height: 0; }
.rail__box--img img { width: 100%; height: auto; display: block; border-radius: var(--r); }
.rail__box h2 { font-size: .75rem; font-family: var(--body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin: 0 0 .7rem; }
.rail ol, .rail ul { list-style: none; margin: 0; padding: 0; font-size: .9375rem; }
.rail li { padding: .32rem 0; }
.rail :where(a) { text-decoration: none; color: var(--text-2); }
.rail :where(a):hover { color: var(--gold); }
@media (max-width: 62rem) { .doc { grid-template-columns: 1fr; } .rail { position: static; } }


.factstrip { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; margin: 0 0 2rem; }
.factstrip div { background: var(--bg-raised); padding: .9rem 1rem; }
.factstrip dt { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.factstrip dd { margin: .2rem 0 0; font-family: var(--display); font-weight: 700; font-size: 1.125rem; }


.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.tbl { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 26rem; }
.tbl th, .tbl td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); }
.tbl thead th { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); font-weight: 700; background: var(--bg-raised); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.tbl .card-ico { width: 22px; height: 30px; vertical-align: -.55em; margin-right: .4rem; }
@media (max-width: 34rem) {
  .tbl { min-width: 0; }
  .tbl thead { display: none; }
  .tbl tbody tr { display: block; border-bottom: 1px solid var(--line); padding: .6rem .9rem; }
  .tbl tbody td { display: inline; border: 0; padding: 0; }
  .tbl tbody td:first-child { display: block; font-weight: 600; margin-bottom: .2rem; }
  .tbl tbody td:not(:first-child) { font-size: .8125rem; color: var(--text-3); }
  .tbl tbody td:not(:first-child):not(:last-child)::after { content: " · "; }
  .tbl td:last-child { text-align: left; }
  .tbl td:last-child::before { content: " · "; }
}


.badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr)); gap: .9rem; }
.badge {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1rem .8rem; text-align: center;
}
.badge[data-earned="false"] { opacity: .38; }
.badge svg { width: 34px; height: 34px; color: var(--gold); }
.badge b { display: block; font-family: var(--display); font-size: .9375rem; margin-top: .5rem; }
.badge span { font-size: .75rem; color: var(--text-3); }


.cta {
  border-radius: var(--r); padding: clamp(1.6rem, 4vw, 2.6rem);
  background: linear-gradient(150deg, var(--felt-800), var(--felt-950));
  background-color: var(--felt-800);   
  border: 1px solid var(--felt-700); color: #F2F5F1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); gap: 1.6rem; align-items: center;
}
.cta h2 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
.cta p { margin: .5rem 0 0; color: #C0D5C8; font-size: .9375rem; }
.cta form { display: flex; gap: .5rem; flex-wrap: wrap; }
.cta input {
  flex: 1 1 11rem; min-width: 0; background: rgba(255,255,255,.07); color: #fff;
  border: 1px solid var(--felt-700); border-radius: 99px; padding: .75em 1.1em; font: inherit; font-size: .9375rem;
}
.cta input::placeholder { color: #8FAF9D; }
@media (max-width: 48rem) { .cta { grid-template-columns: 1fr; } }


.ftr { border-top: 1px solid var(--line); margin-top: 3.4rem; padding: 2.4rem 0 3rem; }
.ftr__grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 1.8rem; }
.ftr h3 { font-size: .75rem; font-family: var(--body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .7rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; font-size: .9375rem; }
.ftr li { padding: .28rem 0; }
.ftr :where(a) { color: var(--text-2); text-decoration: none; }
.ftr :where(a):hover { color: var(--text); }
.ftr__rg { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .8125rem; color: var(--text-3); max-width: 52rem; }
.ftr__rg b { color: var(--text-2); }

.ftr__rg a { text-decoration: underline; text-underline-offset: .18em; color: var(--text-2); }
.ftr__rg a:hover { color: var(--text); }
@media (max-width: 52rem) { .ftr__grid { grid-template-columns: 1fr 1fr; } }



.hero .btn--ghost,
.cta .btn--ghost { color: #F2F5F1; border-color: rgba(255, 255, 255, .30); }
.hero .btn--ghost:hover,
.cta .btn--ghost:hover { border-color: rgba(255, 255, 255, .62); background: rgba(255, 255, 255, .07); }



.lead-img { margin: 0 0 1.6rem; }
.lead-img img {
  width: 100%; height: auto; border-radius: var(--r); display: block;
  background: var(--bg-raised);
}
.art__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }


.dia {
  margin: 1.8rem 0;
  padding: 1.1rem 1.1rem .7rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.dia svg { display: block; width: 100%; height: auto; }
.dia__cap {
  margin: .7rem 0 0;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--text-3);
}
.dia .d-card { fill: var(--bg); stroke: var(--line); stroke-width: 2; }
.dia .d-card--up { fill: var(--cream); stroke: var(--cream-3); }
.dia .d-card--hit { fill: var(--gold); stroke: var(--gold-dim); }
.dia .d-rule { stroke: var(--text-3); stroke-width: 2; fill: none; }
.dia .d-t { fill: var(--text); font-family: var(--body); font-size: 15px; }
.dia .d-t--s { fill: var(--text-3); font-size: 13px; }
.dia .d-t--dark { fill: var(--ink); font-family: var(--body); font-size: 15px; }
.dia .d-t--num { fill: var(--ink); font-family: var(--display); font-size: 19px; font-weight: 700; }
.dia .d-t--gold { fill: var(--gold); font-family: var(--display); font-size: 15px; font-weight: 700; }

.pager {
  display: flex; flex-wrap: wrap; gap: .4rem; margin: 2.2rem 0 .5rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.pager a {
  min-width: 2.5rem; padding: .5rem .7rem; text-align: center;
  border: 1px solid var(--line); border-radius: var(--r-s);
  background: var(--bg-raised); color: var(--text-2); text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: .9375rem;
}
.pager a:hover { border-color: var(--gold-dim); color: var(--text); }
.pager a[aria-current="page"] {
  background: var(--red); border-color: var(--red); color: #FFFFFF;
}


.fd-none { color: var(--text-2); margin: 1.2rem 0 0; }
.quiz__opt.is-on { background: var(--red); border-color: var(--red); color: #FFFFFF; }
.tile[hidden] { display: none; }

.rail__box--toc { padding: 1rem .4rem 1rem 1rem; }
.toc h2 {
  font-size: .75rem; font-family: var(--body); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin: 0 0 .6rem;
}
.toc ol { list-style: none; margin: 0; padding: 0; max-height: 60vh; overflow-y: auto; }
.toc li { margin: 0; }
.toc a {
  display: grid; grid-template-columns: 1.5rem 1fr; gap: .15rem; align-items: baseline;
  padding: .32rem .4rem; border-radius: 6px; text-decoration: none;
  font-size: .8125rem; line-height: 1.35; color: var(--text-2);
}
.toc a span { color: var(--text-3); font-variant-numeric: tabular-nums; }
.toc a:hover { background: color-mix(in srgb, var(--red) 8%, transparent); color: var(--text); }
.doc h2 .sec-n { color: var(--red); font-variant-numeric: tabular-nums; }

.doc h2[id] { scroll-margin-top: 5rem; }


.faqs { display: grid; gap: .5rem; margin: 1rem 0 1.6rem; }
.faq {
  border: 1px solid var(--line); border-radius: var(--r-s);
  background: var(--bg-raised); padding: 0 1rem;
}
.faq > summary {
  cursor: pointer; padding: .85rem 0; font-family: var(--display);
  font-weight: 600; font-size: 1.0625rem; list-style: none;
  display: flex; align-items: baseline; gap: .6rem;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::before {
  content: "+"; font-family: var(--display); font-weight: 700;
  color: var(--red); width: 1rem; flex: none; text-align: center;
}
.faq[open] > summary::before { content: "\2013"; }
.faq > summary:hover { color: var(--red); }

.faq > summary > .faq__q {
  font: inherit; margin: 0; letter-spacing: inherit; color: inherit; display: inline;
}
.faq__a { padding: 0 0 .9rem 1.6rem; }
.faq__a p { margin: 0; }


@media (max-width: 64rem) {
  .hdr__in { flex-wrap: wrap; gap: .5rem 1rem; }
  .brand { order: 1; }
  .btn--rnd { order: 2; margin-left: auto; padding: .5rem .62rem; }
  .btn--rnd .btn__t { display: none; }
  .iconbtn { order: 3; }
  
  .nav {
    order: 4; width: 100%; margin-left: 0; flex-wrap: wrap;
    row-gap: .25rem; padding-bottom: .1rem;
  }
  .nav a { padding: .45rem .62rem; white-space: nowrap; }
  .hs { order: 5; width: 100%; }
  .hs__i, .hs__i:focus { width: 100%; }
}





.verdict {
  margin: 2.4rem 0 0; padding: 1.3rem 1.4rem; border-radius: var(--r);
  background: var(--bg-raised); border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .3rem 1.4rem;
  align-items: start;
}
.verdict__kicker {
  grid-column: 1; margin: 0; font-size: .6875rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
.verdict__h { grid-column: 1; font-size: 1.125rem; margin: 0; }
.verdict__score {
  grid-column: 2; grid-row: 1 / span 2; margin: 0; text-align: right; line-height: 1;
}
.verdict__score b {
  display: block; font-family: var(--display); font-weight: 700; font-size: 2rem;
  color: var(--felt-600);
}
.verdict__score span { font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.verdict__body { grid-column: 1 / -1; margin: .5rem 0 0; color: var(--text-2); font-size: .9375rem; }
@media (max-width: 34rem) {
  .verdict { grid-template-columns: 1fr; }
  .verdict__score { grid-column: 1; grid-row: auto; text-align: left; display: flex; gap: .4rem; align-items: baseline; }
  .verdict__score b { display: inline; font-size: 1.6rem; }
}
