/* ==========================================================================
   Worth the Credit — stylesheet
   One file, no web fonts (fast + good Core Web Vitals). Editorial serif
   headings, system sans body. Light, warm, high-contrast.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  color-scheme: light;

  /* Light theme (default) */
  --ink:        #1c1b2a;
  --ink-soft:   #4c4a5e;
  --ink-faint:  #74718a;
  --paper:      #fbfaf7;
  --surface:    #ffffff;
  --brand:      #3730a3;   /* solid indigo — filled buttons / chips (white text) */
  --brand-dark: #271f73;
  --link:       #3730a3;   /* link text — lightens in dark mode */
  --accent:     #c2680b;   /* stars / highlights */
  --worth:      #15803d;
  --worth-bg:   #e7f4ec;
  --not-worth:  #b4271c;
  --not-bg:     #fbeae8;
  --line:       #e7e3d8;
  --line-soft:  #f0ede4;
  --footer-bg:  #1c1b2a;   /* footer band — stays dark in both themes */
  --shadow: 0 1px 2px rgba(28,27,42,.05), 0 8px 24px rgba(28,27,42,.06);

  --wrap:   1080px;
  --narrow: 720px;
  --radius: 10px;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Dark theme — applied when the reader picks it, or by system preference
   unless they have explicitly chosen light. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --ink:        #e9e8f2;
  --ink-soft:   #bbb9cc;
  --ink-faint:  #8b8aa1;
  --paper:      #141320;
  --surface:    #1e1c2e;
  --brand:      #4f46c9;
  --brand-dark: #635ad8;
  --link:       #a9a2f5;
  --accent:     #e0962f;
  --worth:      #46d989;
  --worth-bg:   #16331f;
  --not-worth:  #f3766b;
  --not-bg:     #3a1c1a;
  --line:       #322f45;
  --line-soft:  #262436;
  --footer-bg:  #0f0e18;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 28px rgba(0,0,0,.55);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink:        #e9e8f2;
    --ink-soft:   #bbb9cc;
    --ink-faint:  #8b8aa1;
    --paper:      #141320;
    --surface:    #1e1c2e;
    --brand:      #4f46c9;
    --brand-dark: #635ad8;
    --link:       #a9a2f5;
    --accent:     #e0962f;
    --worth:      #46d989;
    --worth-bg:   #16331f;
    --not-worth:  #f3766b;
    --not-bg:     #3a1c1a;
    --line:       #322f45;
    --line-soft:  #262436;
    --footer-bg:  #0f0e18;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 28px rgba(0,0,0,.55);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 2.7rem); margin: 0 0 .5rem; }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.85rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.wrap--narrow { max-width: var(--narrow); }
.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: .5rem; left: .5rem; width: auto; height: auto;
  clip: auto; padding: .6rem 1rem; background: var(--brand); color: #fff;
  border-radius: 6px; z-index: 100;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .74rem;
  font-weight: 700; color: var(--accent); margin: 0 0 .4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: .98rem; padding: .7rem 1.3rem; border-radius: 8px;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--link); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--surface); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark {
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  background: var(--brand); color: #fff; width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center; border-radius: 8px; flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.brand__tag  { font-size: .74rem; color: var(--ink-faint); }

.site-header__right { display: flex; align-items: center; gap: .5rem; }

/* Theme toggle */
.theme-toggle {
  display: grid; place-items: center; flex: none;
  width: 2.4rem; height: 2.4rem; padding: 0;
  background: transparent; border: 1px solid var(--line);
  border-radius: 7px; color: var(--ink-soft); cursor: pointer;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--brand); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

.site-nav ul {
  list-style: none; display: flex; gap: .2rem; margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: .45rem .7rem; border-radius: 6px;
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
}
.site-nav a:hover { background: var(--line-soft); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--link); }

/* mobile nav toggle (checkbox hack) */
.nav-toggle__btn { display: none; }
@media (max-width: 820px) {
  .nav-toggle__btn {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
    padding: .55rem; border: 1px solid var(--line); border-radius: 7px;
  }
  .nav-toggle__btn span {
    width: 22px; height: 2px; background: var(--ink); display: block;
  }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav ul { flex-direction: column; padding: .5rem 1.25rem 1rem; }
  .site-nav a { padding: .7rem .4rem; font-size: 1.05rem; }
  .nav-toggle:checked ~ .site-header__right .site-nav { display: block; }
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero {
  background: linear-gradient(170deg, #2a2380 0%, #3730a3 60%, #4b3fc7 100%);
  color: #fff; padding-block: clamp(3rem, 2rem + 6vw, 5.5rem);
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero__lead {
  font-size: 1.2rem; color: #dcd9f5; max-width: 52ch; margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero__promise {
  margin-top: 1.8rem; font-size: .92rem; color: #c7c3ee;
  border-left: 3px solid rgba(255,255,255,.35); padding-left: .9rem;
}
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .09em; font-size: .76rem;
  font-weight: 700; color: #c7c3ee; margin: 0 0 .5rem;
}
.band-center { text-align: center; }
.band-center h2 { margin-bottom: .6rem; }

/* ==========================================================================
   Sections & grids
   ========================================================================== */
.section { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem); }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.section__head p { margin: 0; color: var(--ink-soft); }
.section__more { font-weight: 600; text-decoration: none; white-space: nowrap; }

.grid { display: grid; gap: 1.1rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s ease, transform .1s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__link {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit;
}
.card__body { padding: 1.1rem 1.1rem .8rem; flex: 1; }
.card__eyebrow {
  text-transform: uppercase; letter-spacing: .08em; font-size: .68rem;
  font-weight: 700; color: var(--accent); margin: 0 0 .35rem;
}
.card__title { margin: 0 0 .25rem; font-size: 1.15rem; }
.card__byline { margin: 0; font-size: .87rem; color: var(--ink-faint); }
.card__excerpt { margin: .4rem 0 0; font-size: .92rem; color: var(--ink-soft); }
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; padding: .7rem 1.1rem; border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.card__stars { color: var(--accent); font-size: .95rem; letter-spacing: .04em; }
.card__stars b { color: var(--ink); }
.card__date { font-size: .82rem; color: var(--ink-faint); }
.card__verdict {
  font-size: .73rem; font-weight: 700; padding: .2rem .55rem; border-radius: 5px;
  text-transform: uppercase; letter-spacing: .03em;
}

/* ---------- Verdict / worth colours ---------- */
.is-worth      { background: var(--worth-bg); color: var(--worth); }
.is-not-worth  { background: var(--not-bg);   color: var(--not-worth); }

/* ---------- Pillars (homepage) ---------- */
.pillars { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem; text-decoration: none; color: inherit;
  display: block; transition: border-color .15s ease;
}
.pillar:hover { border-color: var(--brand); }
.pillar h3 { margin: .1rem 0 .35rem; }
.pillar p { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.pillar__num {
  font-family: var(--serif); font-size: 1.1rem; color: var(--accent); font-weight: 700;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs { margin: 1.4rem 0 .4rem; }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: .35rem;
  padding: 0; margin: 0; font-size: .85rem; color: var(--ink-faint);
}
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: .35rem; color: var(--line); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); }

/* ==========================================================================
   Review layout
   ========================================================================== */
.review { padding-bottom: 3rem; }
.review__head { margin-top: .5rem; }
.review__byline { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: .3rem; }
.review__meta { font-size: .85rem; color: var(--ink-faint); }
.review__cover {
  float: right; width: 190px; margin: 0 0 1rem 1.5rem; border-radius: 8px;
  box-shadow: var(--shadow);
}
@media (max-width: 540px) {
  .review__cover { float: none; margin: 0 auto 1.3rem; }
}

/* Wrapper added when audibleUrl is set — makes the whole cover clickable
   and routes the click through the affiliate filter. */
.review__cover-link {
  float: right; width: 190px; margin: 0 0 1rem 1.5rem;
  display: block; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .12s ease;
}
.review__cover-link:hover { transform: translateY(-2px); }
.review__cover-link .review__cover {
  float: none; width: 100%; margin: 0;
  display: block; border-radius: 0; box-shadow: none;
}
@media (max-width: 540px) {
  .review__cover-link { float: none; margin: 0 auto 1.3rem; }
}

.verdict-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin: 1.2rem 0 1.5rem;
  padding: 1rem 1.2rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.verdict-bar__rating { display: flex; align-items: baseline; gap: .6rem; }

/* ===================================================================
   Cultivation-tier rating badges (see /ratings/)
   Series ratings use letter tiers; every tier badge is a clickable
   link to the ratings guide page. Colour-coded by tier family.
   =================================================================== */
.tier-badge {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 6px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid transparent;
  transition: filter .15s ease, transform .08s ease;
  white-space: nowrap;
}
.tier-badge:hover { filter: brightness(1.1); color: #fff; }
.tier-badge:active { transform: translateY(1px); }

/* Tier family colours */
.tier-s {
  background: linear-gradient(135deg, #d4af37, #a98412);
  border-color: #8a6a0d;
  box-shadow: 0 0 0 2px rgba(212,175,55,.2);
  font-size: 1.3rem;
}
.tier-a-peak { background: #15803d; }
.tier-a-mid  { background: #16a34a; }
.tier-a-low  { background: #22c55e; }
.tier-b-peak { background: #1d4ed8; }
.tier-b-mid  { background: #2563eb; }
.tier-b-low  { background: #3b82f6; }
.tier-c-peak { background: #c2680b; }
.tier-c-mid  { background: #d97706; }
.tier-c-low  { background: #ea580c; }
.tier-d, .tier-e, .tier-f { background: #b4271c; }

/* Series-guide verdict opener: tier badge + verdict label on one line */
.series-tier {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  margin: 0 0 1.1rem; font-size: 1.08rem;
}
.series-tier strong { font-size: 1.12em; }

/* Smaller tier badge on cards (replaces the old star display) */
.card__tier {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 5px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  color: #fff;
  white-space: nowrap;
}
.card__tier.tier-s {
  background: linear-gradient(135deg, #d4af37, #a98412);
  font-size: 1rem;
}
/* Card tiers inherit family colours from the .tier-* classes above */

/* Narrator grade link — when shown inline in the facts panel.
   The grade itself is a "stars + n/5" hyperlink to /ratings/. */
a.grade {
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .15rem .5rem; border-radius: 4px; margin-left: .25rem;
  text-decoration: none; white-space: nowrap;
}
a.grade:hover { background: var(--brand-dark); color: #fff; }
a.grade small { font-weight: 400; opacity: .85; margin-left: .15rem; }
.stars { color: var(--accent); font-size: 1.45rem; letter-spacing: .05em; }
.verdict-bar__num { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }
.verdict-bar__num span { font-size: .9rem; color: var(--ink-faint); font-weight: 400; }
.verdict-badge {
  font-weight: 700; font-size: .85rem; padding: .4rem .8rem; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* facts table */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .1rem 1.5rem;
  margin: 0 0 1.8rem; padding: 1rem 1.2rem;
  background: var(--line-soft); border-radius: var(--radius);
}
@media (max-width: 540px) { .facts { grid-template-columns: 1fr; } }
.facts > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .4rem 0; border-bottom: 1px solid var(--line);
}
.facts dt { color: var(--ink-faint); font-size: .9rem; }
.facts dd { margin: 0; font-weight: 600; font-size: .92rem; text-align: right; }
.grade {
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .1rem .45rem; border-radius: 4px; margin-left: .25rem;
}

/* comparables / content notes */
.comparables, .content-notes {
  margin: 2rem 0; padding: 1.2rem 1.3rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.comparables h2, .content-notes h2 { margin: 0 0 .6rem; font-size: 1.2rem; }
.comparables ul { margin: 0; padding-left: 1.2rem; }
.comparables li { margin-bottom: .3rem; }
.content-notes p { margin: 0; color: var(--ink-soft); }

/* ==========================================================================
   Prose (markdown body)
   ========================================================================== */
.prose { font-size: 1.075rem; }
.prose > h2 { margin: 2rem 0 .7rem; }
.prose > h3 { margin: 1.6rem 0 .5rem; }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: .4rem; }
.prose blockquote {
  margin: 1.4rem 0; padding: .6rem 0 .6rem 1.2rem;
  border-left: 3px solid var(--accent); color: var(--ink-soft); font-style: italic;
}
.prose a { text-underline-offset: 2px; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.prose code {
  background: var(--line-soft); padding: .1rem .35rem; border-radius: 4px;
  font-size: .9em;
}
.prose img { border-radius: 8px; margin: 1.2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .55rem .7rem; text-align: left; }
.prose th { background: var(--line-soft); }

/* ==========================================================================
   Affiliate CTA
   ========================================================================== */
.cta {
  margin: 2.2rem 0; padding: 1.5rem; border-radius: var(--radius);
  background: linear-gradient(160deg, #2a2380, #3730a3);
  color: #fff;
}
.cta__kicker {
  text-transform: uppercase; letter-spacing: .09em; font-size: .76rem;
  font-weight: 700; color: #c7c3ee; margin: 0 0 .3rem;
}
.cta__lead { font-size: 1.08rem; margin: 0 0 1rem; color: #ecebf9; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1rem; }
.cta .btn--primary { background: #fff; color: #271f73; }
.cta .btn--primary:hover { background: #ecebf9; color: #271f73; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.cta__disclosure { font-size: .78rem; color: #b8b4e4; margin: 0; }

/* ==========================================================================
   Article layout
   ========================================================================== */
.article { padding-bottom: 3rem; }
.article__head { margin-top: .5rem; margin-bottom: 1.6rem; }
.article__lead { font-size: 1.2rem; color: var(--ink-soft); margin: .4rem 0 .6rem; }
.article__meta { font-size: .84rem; color: var(--ink-faint); }

/* Comparative rank badge — used on narrator profile pages to cross-link
   back to the Best LitRPG Narrators ranking. */
.rank-badge {
  margin: 0 0 1.4rem; padding: .75rem 1.1rem;
  background: var(--line-soft); border-left: 3px solid var(--brand);
  border-radius: 6px; font-size: .95rem; color: var(--ink-soft);
}
.rank-badge strong { color: var(--ink); font-size: 1.1em; }
.rank-badge a { font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { margin: 2.4rem 0 1rem; }
.faq h2 { margin-bottom: .8rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: 8px; margin-bottom: .6rem;
  background: var(--surface);
}
.faq__item summary {
  cursor: pointer; padding: .85rem 1rem; font-weight: 600; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; float: right; color: var(--accent); font-weight: 700; }
.faq__item[open] summary::after { content: "–"; }
.faq__answer { padding: 0 1rem 1rem; color: var(--ink-soft); }

/* ==========================================================================
   Listing & taxonomy pages
   ========================================================================== */
.listing { padding-block: clamp(2rem, 1.5rem + 2vw, 3rem); }
.listing__head { margin-bottom: 1.6rem; }
.listing__head h1 { margin-bottom: .3rem; }
.listing__head p { color: var(--ink-soft); margin: 0; }
.empty {
  padding: 2rem; text-align: center; color: var(--ink-faint);
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--surface);
}
.taxo-cloud { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; }
.taxo-cloud a {
  display: inline-block; padding: .35rem .75rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; text-decoration: none;
  font-size: .88rem; font-weight: 600;
}
.taxo-cloud a:hover { border-color: var(--brand); }

.browse {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1.8rem;
}
.browse__row { display: flex; gap: .9rem; align-items: baseline; flex-wrap: wrap; }
.browse__row + .browse__row { margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line-soft); }
.browse__label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink-faint); flex: none; min-width: 6.5rem;
}
.browse .taxo-cloud { margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--footer-bg); color: #c9c7d6; margin-top: 3rem;
  padding-block: 2.8rem 1.6rem;
}
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer a { color: #c9c7d6; }
.site-footer a:hover { color: #fff; }

.newsletter {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.6rem; margin-bottom: 2.2rem;
  text-align: center;
}
.newsletter__title { margin: 0 0 .4rem; }
.newsletter__copy { margin: 0 auto 1rem; max-width: 46ch; color: #b6b3c8; }
.newsletter__form {
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: .5rem;
}
.newsletter__form input {
  padding: .65rem .9rem; border-radius: 7px; border: 1px solid rgba(255,255,255,.2);
  background: #fff; color: #1c1b2a; font-size: .98rem; min-width: 260px;
}
.newsletter__form button {
  padding: .65rem 1.3rem; border-radius: 7px; border: 0; cursor: pointer;
  background: var(--accent); color: #17151f; font-weight: 700; font-size: .98rem;
}
.newsletter__note { font-size: .76rem; color: #807d96; margin: 0; }

.footer-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1.4fr; gap: 2rem;
  padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; } }
.footer-col h3 { font-size: 1rem; margin: 0 0 .6rem; }
.footer-col p  { font-size: .88rem; color: #a9a6bd; margin: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .35rem; }
.footer-col a  { text-decoration: none; font-size: .92rem; }
.footer-disclosure { font-size: .8rem !important; line-height: 1.55; }
.footer-legal { font-size: .8rem; color: #807d96; margin: 1.4rem 0 0; text-align: center; }
