/* Kingstown Casinos — editorial. Charcoal + gold + crimson. Two states: MD + TN. */

/* Self-hosted variable fonts. Two families only (was three — Outfit was used for
   the wordmark alone and is now Inter 800). Serving these ourselves removes the
   render-blocking fonts.googleapis.com request and the third-party fingerprint. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f1ea;            /* warm paper */
  --surface: #ffffff;
  --ink: #17140f;           /* warm near-black */
  --muted: #5e594f;
  --line: #e5dfd2;
  --accent: #916515;        /* gold-brown (links / headings accent) */
  --accent-ink: #6f4c0e;
  --gold: #8a660e;          /* Maryland gold */
  --gold-soft: #f7ecd0;
  --crimson: #c0102e;       /* Maryland red — CTA */
  --crimson-ink: #940c23;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --measure: 72ch;
  --wrap: 1140px;
  --space: clamp(2.5rem, 1.8rem + 3vw, 5rem);
  --radius: 12px;
  --shadow: 0 1px 2px rgba(23,20,15,.06), 0 8px 24px rgba(23,20,15,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 84px; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.05rem + 0.25vw, 20px);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-ink); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 100; border-radius: 6px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.8vw, 2.3rem); margin: 1.6em 0 .5em; }
h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); margin: 1.4em 0 .4em; }
h4 { font-size: 1.08rem; margin: 1.2em 0 .35em; }
p { margin: 0 0 1em; }
.prose p, .prose li { max-width: var(--measure); }
.prose ul, .prose ol { max-width: var(--measure); }
.prose h2 { scroll-margin-top: 90px; }

/* ── header / nav ─────────────────────────────────────────────────────────── */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(244,241,234,.94);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-head__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand__mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(150deg, #2a241b 0%, #17140f 100%);
  box-shadow: 0 2px 6px rgba(23,20,15,.22); flex-shrink: 0; }
.brand__mark svg { display: block; }
.brand__wm { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--sans); font-weight: 800; font-size: 1.34rem;
  letter-spacing: -.02em; white-space: nowrap; color: var(--ink); }
.brand__name b { color: var(--gold); font-weight: 800; }
.brand__sub { font-family: var(--sans); font-weight: 700; font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-top: .28rem; }

.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; cursor: pointer; flex-shrink: 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__list { display: flex; align-items: center; gap: clamp(.1rem, .6vw, .8rem); list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__link, .nav__top { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--sans);
  font-size: .94rem; font-weight: 600; color: var(--ink); text-decoration: none; background: none; border: 0;
  cursor: pointer; padding: .6rem .55rem; line-height: 1; white-space: nowrap; }
.nav__link:hover, .nav__top:hover { color: var(--accent); }
.nav__caret { width: .55em; height: .55em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px); margin-left: .15rem; opacity: .65;
  transition: transform 150ms ease; }
.nav__grp-toggle:checked ~ .nav__top .nav__caret { transform: rotate(-135deg) translate(-1px,-1px); }
.nav__sub { position: absolute; top: 100%; left: 0; min-width: 248px; max-height: 70vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  padding: .4rem; margin: 0; list-style: none; display: none; z-index: 60; }
/* Click, never hover — one behaviour at every width. Hover-to-open made desktop
   and mobile differ, and on a touch screen a tap counts as hover, so a group
   sprang open and then would not close. */
.nav__grp-toggle:checked ~ .nav__sub { display: block; }
.nav__sub a { display: block; padding: .5rem .7rem; font-size: .9rem; font-weight: 500; color: var(--ink);
  text-decoration: none; border-radius: 7px; white-space: nowrap; }
.nav__sub a:hover { background: var(--gold-soft); color: var(--accent-ink); }
/* Subcategory header — a label, not a link, and closed until clicked. Same at
   every width, like the category above it. */
.nav__grp { display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; padding: .5rem .7rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--line); margin-top: .3rem;
  cursor: pointer; user-select: none; border-radius: 7px; }
.nav__grp:hover { color: var(--accent-ink); background: var(--gold-soft); }
.nav__grp-wrap:first-child > .nav__grp { border-top: 0; margin-top: 0; }
.nav__sub2 { display: none; margin: 0; padding: 0 0 .2rem; list-style: none; }
.nav__sub2-toggle:checked ~ .nav__sub2 { display: block; }
.nav__sub2 a { display: block; padding: .45rem .7rem .45rem 1.25rem; font-size: .88rem;
  font-weight: 500; color: var(--ink); text-decoration: none; border-radius: 7px;
  white-space: nowrap; }
.nav__sub2 a:hover { background: var(--gold-soft); color: var(--accent-ink); }
.nav__caret--sm { width: .45em; height: .45em; opacity: .55; flex: none; }
.nav__sub2-toggle:checked ~ .nav__grp .nav__caret--sm {
  transform: rotate(-135deg) translate(-1px,-1px); }
/* The hub/parent page of a group, first in the list. The four group headers are
   labels rather than links, so these are the only way into a hub from the nav —
   they are weighted to read as the parent of what follows. */
.nav__hub > a { font-weight: 700; color: var(--ink); }
.nav__hub + li:not(.nav__grp):not(.nav__hub) > a { padding-top: .5rem; }
.nav__hub:not(:first-child) { border-top: 1px solid var(--line); margin-top: .3rem;
  padding-top: .3rem; }
/* The header toggles a hidden checkbox instead of being an anchor — same on
   desktop and mobile. */
.nav__top { cursor: pointer; user-select: none; }

@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-top: 1px solid var(--line); box-shadow: var(--shadow); padding: .4rem 0 .8rem;
    max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-toggle:checked ~ .nav { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { display: block; border-top: 1px solid var(--line); }
  .nav__item:first-child { border-top: 0; }
  .nav__link, .nav__top { display: flex; width: 100%; justify-content: flex-start;
    padding: .85rem clamp(1rem, 5vw, 2rem); font-size: 1.02rem; }
  /* Same collapse behaviour as desktop; only the panel becomes full-width and
     in-flow instead of an absolutely-positioned dropdown. */
  .nav__sub { position: static; box-shadow: none; border: 0; border-radius: 0;
    max-height: none; padding: 0 0 .4rem; }
  .nav__top { justify-content: space-between; }
  .nav__sub a { padding: .55rem clamp(1.8rem, 8vw, 3rem); font-size: .95rem; }
  .nav__grp { padding: .5rem clamp(1.8rem, 8vw, 3rem) .2rem; }
  .nav__hub > a { padding-left: clamp(1.8rem, 8vw, 3rem); }
  /* Second level sits deeper than the first. `.nav__sub a` above has the same
     specificity and comes later in the file, so without this the nesting reads
     flat on mobile. */
  .nav__sub2 a { padding-left: calc(clamp(1.8rem, 8vw, 3rem) + .9rem); }
}

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: clamp(.8rem, .5rem + 1.2vw, 1.5rem) 0 .7rem; }
/* toplist sits directly under the hero — keep it tight so the first cards are above the fold */
#toplist { padding-top: .2rem; }
#toplist > h2 { margin: .1em 0 .3em; font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem); }
#toplist .tl { margin-top: .8rem; }
/* brand-site screenshots in reviews + homepage cards */
.rev__shot { display: block; width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line);
  margin: .9rem 0 1rem; background: var(--bg); }
.rhero + .rev__shot { margin-top: 0; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 700; color: var(--gold); margin: 0 0 .55rem; }
.hero h1 { margin: 0 0 .35em; }
.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.28rem); color: var(--muted); max-width: 66ch; margin: 0; }
.hero__updated { font-size: .82rem; color: var(--muted); margin-top: .8rem; }
.byline { display: flex; align-items: center; gap: .55rem; }
.byline__av { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.hero__updated a { color: var(--accent); }
/* Hero is deliberately SHORT. A full-width 1400x781 hero ate 590px of an 1100px
   viewport and pushed the toplist below the fold on desktop — the offer module has
   to be visible without scrolling, on mobile and desktop both. Cropping to a wide
   band keeps the image without costing the fold. */
.guide-hero { display: block; width: 100%; border-radius: 14px; margin: .4rem 0 1.4rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 21 / 8; max-height: 280px; object-fit: cover; object-position: center left; }
@media (max-width: 760px) {
  .guide-hero { aspect-ratio: 16 / 9; max-height: 190px; object-position: center left; }
}
.section { padding: .5rem 0; }
.section.prose { padding-block: 1rem; }

/* ── toplist ──────────────────────────────────────────────────────────────── */
.tl { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 14px; }
.tl__row { display: grid; grid-template-columns: 52px 160px 1fr auto; align-items: center; gap: 1.25rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.35rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.tl__row:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(23,20,15,.1), 0 16px 36px rgba(23,20,15,.12); }
.tl__row--top { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
.tl__rank { font-family: var(--serif); font-size: 1.85rem; font-weight: 700; color: var(--gold); text-align: center; }
.tl__logo { display: grid; place-items: center; }
.tl__img { max-width: 150px; max-height: 66px; width: auto; height: auto; object-fit: contain; }
.tl__brand { font-family: var(--serif); font-weight: 700; font-size: 1.28rem; margin: 0 0 .1rem; }
.tl__rate { font-size: .82rem; color: var(--muted); margin: 0 0 .35rem; }
.tl__stars { color: var(--gold); letter-spacing: .05em; }
.tl__bonus { font-family: var(--serif); color: var(--accent); font-weight: 700; font-size: 1.3rem; line-height: 1.18; margin: 0 0 .5rem; }
.tl__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .4rem; }
.tl__chip { font-size: .78rem; background: var(--gold-soft); color: var(--accent-ink); border-radius: 999px; padding: .2rem .6rem; }
.tl__chip--code { background: var(--ink); color: var(--gold-soft); }
.tl__pay { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin-bottom: .5rem; }
.tl__pay-label { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-right: .1rem; }
.tl__chip--pay { background: var(--surface); color: var(--accent-ink); border: 1px solid var(--line); font-weight: 500; }
.tl__chip--more { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 700; padding: .2rem .5rem; }
.tl__review { font-size: .85rem; font-weight: 600; }
.tl__cta { display: flex; flex-direction: column; align-items: stretch; gap: .35rem; text-align: center; }
.tl__btn { display: inline-block; background: var(--crimson); color: #fff; font-weight: 700; font-size: 1rem;
  text-decoration: none; padding: .85rem 1.6rem; border-radius: 8px; white-space: nowrap; transition: background .15s ease; }
.tl__btn:hover { background: var(--crimson-ink); color: #fff; }
.tl__terms { font-size: .72rem; color: var(--muted); }

/* inline CTA block (inside prose) */
.cta-block { background: var(--gold-soft); border: 1px solid #ecd9b6; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin: 1.4rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cta-block__txt { margin: 0; font-weight: 600; max-width: none; }
.cta-block .tl__btn { flex-shrink: 0; }

/* ── tables / pros-cons / steps / callout ─────────────────────────────────── */
.cmp { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp th, .cmp td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); }
.cmp thead th { background: var(--ink); color: var(--gold-soft); font-family: var(--sans); font-weight: 600; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr:nth-child(even) { background: #faf7f0; }
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
.cmp-wrap .cmp { margin: 0; }
.steps { padding-left: 1.2rem; }
.steps li { margin-bottom: .6rem; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0; }
.proscons h3 { margin-top: 0; }
.pros, .cons { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.pros { border-top: 3px solid #1f7a44; }
.cons { border-top: 3px solid var(--crimson); }
.pros ul, .cons ul { margin: 0; padding-left: 1.1rem; }
.callout { background: var(--gold-soft); border: 1px solid #ecd9b6; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin: 1.2rem 0; }
.callout p { max-width: none; margin: 0; }

/* ── homepage mini-review cards ───────────────────────────────────────────── */
.rev { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); margin: 1.25rem 0; scroll-margin-top: 90px; }
.rev__head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .4rem; }
.rev__rank { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.1rem; }
.rev__logo { max-width: 134px; max-height: 56px; width: auto; height: auto; object-fit: contain; }
.rev h3 { margin: 0; }
.rev__rate { font-size: .85rem; color: var(--muted); margin: 0 0 .4rem; }
.rev__offer { font-family: var(--serif); color: var(--accent); font-weight: 700; font-size: 1.2rem; margin: .3rem 0 .5rem; }
.rev__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 .7rem; }
.rev p { max-width: var(--measure); }
.rev__cta { margin-top: .6rem; }

/* ── review page hero ─────────────────────────────────────────────────────── */
.rhero { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.4rem 1.6rem; margin: 1rem 0 1.5rem; display: grid;
  grid-template-columns: 150px 1fr auto; gap: 1.5rem; align-items: center; }
.rhero__logo { max-width: 160px; max-height: 80px; width: auto; height: auto; object-fit: contain; justify-self: start; }
.rhero__rate { display: flex; align-items: baseline; gap: .5rem; margin: .2rem 0 .5rem; }
.rhero__score { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.rhero__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .06em; }
.rhero__offer { font-family: var(--serif); color: var(--accent); font-weight: 700; font-size: 1.25rem; margin: 0 0 .5rem; }
.rhero__meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.rhero__cta { display: flex; flex-direction: column; gap: .4rem; text-align: center; }

/* ── faq ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .6rem; }
.faq summary { cursor: pointer; padding: .9rem 1.2rem; font-weight: 600; font-family: var(--serif); font-size: 1.15rem; }
.faq summary::marker { color: var(--gold); }
.faq__a { padding: 0 1.2rem 1rem; color: var(--muted); }
.faq__a p { max-width: var(--measure); margin: 0 0 .6rem; }

/* ── author ───────────────────────────────────────────────────────────────── */
.author-card { display: grid; grid-template-columns: 92px 1fr; gap: 1.25rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.author-card__avatar { width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
  background: var(--gold-soft); border: 2px solid var(--gold); }
.author-card h2, .author-card h3 { margin: 0 0 .1em; }
.author-role { color: var(--gold); font-weight: 700; font-size: .9rem; margin: 0 0 .6rem; }
.author-card p { max-width: var(--measure); }
.author-card__creds { font-size: .85rem; color: var(--muted); padding-left: 1.1rem; margin: .5rem 0 0; }
.author-card__creds a { color: var(--accent); }

/* ── footer ───────────────────────────────────────────────────────────────── */
.site-foot { margin-top: var(--space); background: var(--ink); color: #c9c2b4; }
.site-foot a { color: #ded7c8; text-decoration: none; }
.site-foot a:hover { color: var(--gold); }
.site-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: var(--space) 0 2rem; }
.foot-col__h { font-family: var(--serif); font-size: 1.18rem; color: #fff; margin: 0 0 .8rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .4rem; font-size: .92rem; }
.foot-col p { font-size: .9rem; color: #a59f92; max-width: none; }
.site-foot__rg { border-top: 1px solid #2e2a20; padding: 1.5rem 0 2.5rem; font-size: .85rem; color: #968f81; }
.site-foot__rg a { text-decoration: underline; }
.site-foot__legal { margin-top: .8rem; }

@media (max-width: 980px) {
  .nav { width: 100%; }
  .rhero { grid-template-columns: 1fr; text-align: left; }
  .rhero__cta .tl__btn { width: 100%; }
}
@media (max-width: 820px) {
  .tl__row { grid-template-columns: 44px 1fr; grid-template-areas: "rank logo" "main main" "cta cta"; row-gap: .9rem; padding: 1.1rem 1.15rem; }
  .tl__rank { grid-area: rank; font-size: 2rem; }
  .tl__logo { grid-area: logo; justify-self: start; }
  .tl__img { max-height: 66px; }
  .tl__main { grid-area: main; }
  .tl__cta { grid-area: cta; }
  .tl__btn { width: 100%; padding: 1rem; font-size: 1.1rem; }
  .tl__brand { font-family: var(--sans); font-weight: 800; font-size: 1.5rem; margin-bottom: .35rem; letter-spacing: -.01em; }
  .tl__bonus { font-family: var(--sans); font-weight: 800; font-size: 1.2rem; line-height: 1.3;
    color: #fff; background: var(--accent); padding: .55rem .75rem; border-radius: 8px; display: block; margin-bottom: .6rem; }
  .tl__chip { font-size: .85rem; padding: .25rem .65rem; }
  .proscons { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cmp { display: block; overflow-x: auto; white-space: nowrap; }
  .author-card { grid-template-columns: 1fr; }
}

/* ── legal / prose pages ──────────────────────────────────────────────────── */
.legal-prose ul, .prose ul { padding-left: 1.2rem; margin: 0 0 1em; }
.legal-prose li { margin-bottom: .4rem; }
/* content figures + logo strips */
.cfig { margin: 1.9rem 0; max-width: none; }
/* width:auto + max-width:100% instead of width:100%: a figure narrower than the
   1076px content box is then centred at its own size instead of being stretched.
   Render QA on 2026-07-30 measured six captures upscaled (an 800px screenshot drawn
   at 1076), which is soft on screen and violates the never-upscale rule. Wide images
   are unaffected - max-width still fills the box. */
.cfig img { width: auto; max-width: 100%; margin-inline: auto; height: auto; display: block; border-radius: 10px;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--surface); }
.cfig figcaption { margin-top: .6rem; font-size: .86rem; color: var(--muted); line-height: 1.5;
  padding-left: .85rem; border-left: 3px solid var(--gold); }
.logostrip { list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: .7rem 1rem; margin: 1.6rem 0; padding: 1rem 1.1rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px; }
.logostrip li { display: flex; align-items: center; }
.logostrip--provider img { height: 46px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1) contrast(1.05); opacity: .78; transition: filter .18s ease, opacity .18s ease; }
.logostrip--provider li:hover img { filter: none; opacity: 1; }
.logostrip--pay { background: var(--ink); border-color: var(--ink); }
.logostrip--pay img { height: 26px; width: auto; max-width: 80px; object-fit: contain; }

/* state fact panel — /maryland/, /tennessee/ */
.statefacts { background: var(--ink); color: var(--gold-soft); border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.2rem; }
.statefacts h2 { color: #fff; font-size: 1.4rem; margin: 0 0 1.1rem; }
.statefacts__dl { display: grid; gap: 1rem 1.6rem; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.statefacts__dl > div { border-left: 3px solid var(--gold); padding-left: .85rem; }
.statefacts__dl dt { font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin: 0 0 .3rem; }
.statefacts__dl dd { margin: 0; font-family: var(--serif); font-size: 1.14rem; line-height: 1.3;
  color: #fff; }
.statefacts__dl dd a { color: var(--gold-soft); }
.statecross { margin-top: 2rem; padding: .9rem 1.1rem; background: var(--gold-soft);
  border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; font-size: .96rem; }

/* hub grids — /guides/ and /reviews/ */
.hubgrid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); }
.hubcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s ease, border-color .18s ease; }
.hubcard:hover { transform: translateY(-3px); border-color: var(--gold);
  box-shadow: 0 2px 4px rgba(23,20,15,.07), 0 14px 34px rgba(23,20,15,.13); }
.hubcard__h { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; line-height: 1.24;
  margin: 0 0 .5rem; }
.hubcard__h a { color: var(--ink); text-decoration: none; }
.hubcard:hover .hubcard__h a { color: var(--accent-ink); }
.hubcard__p { color: var(--muted); font-size: .94rem; line-height: 1.55; margin: 0 0 .9rem; flex: 1; }
.hubcard__more { margin: 0; font-size: .88rem; font-weight: 600; letter-spacing: .01em; }
.hubcard__more a { color: var(--accent); text-decoration: none; }
.hubcard:hover .hubcard__more a { text-decoration: underline; }

.legal-prose code, .prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em; background: var(--gold-soft); border-radius: 5px; padding: .1em .4em; }

@media (min-width: 821px) and (max-width: 1024px) {
  .site-foot__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── cookie consent ───────────────────────────────────────────────────────── */
.cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(23,20,15,.14); }
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner { display: flex; align-items: center; gap: 1.2rem; padding-block: 1rem; flex-wrap: wrap; }
.cookie-consent__text { margin: 0; font-size: .9rem; color: var(--ink); flex: 1 1 320px; max-width: none; }
.cookie-consent__btns { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookie-btn { font-family: var(--sans); font-weight: 700; font-size: .9rem; cursor: pointer; border-radius: 8px;
  padding: .6rem 1.1rem; border: 1px solid var(--ink); transition: background .15s ease, color .15s ease; }
.cookie-btn--accept { background: var(--ink); color: #fff; }
.cookie-btn--accept:hover { background: #000; }
.cookie-btn--deny { background: transparent; color: var(--ink); }
.cookie-btn--deny:hover { background: var(--gold-soft); }
.cookie-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (max-width: 560px) { .cookie-consent__btns { width: 100%; } .cookie-btn { flex: 1; } }
