/* BornToRide type system — Be Vietnam Pro (full Vietnamese)
   One family for display, body, and labels across home + post.
*/
:root {
  --font: "Be Vietnam Pro", system-ui, sans-serif;
  --display: var(--font);
  --body: var(--font);
  --mono: var(--font);
}
:root {
  --bg: #e9ecf0;
  --bg-soft: #f3f5f7;
  --surface: #ffffff;
  --ink: #16181c;
  --ink-dim: #5c6370;
  --line: rgba(22, 24, 28, 0.12);
  --accent: #d9a400;
  --accent-ink: #1a1500;
  --accent-hot: #e24a12;
  --chrome: #7a8494;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(217, 164, 0, 0.12), transparent 55%),
    radial-gradient(700px 380px at 0% 55%, rgba(122, 132, 148, 0.14), transparent 50%),
    linear-gradient(180deg, #f6f7f9 0%, var(--bg) 42%, #dde2e8 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem max(1rem, env(safe-area-inset-right)) 0.85rem max(1rem, env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(15, 17, 20, 0.55), transparent);
  color: #f5f6f8;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.site-nav.is-solid {
  background: rgba(243, 245, 247, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 0.7rem;
  height: 1.55rem;
  background: var(--accent);
  box-shadow: 3px 0 0 var(--accent-hot);
  transform: skewX(-12deg);
}

.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: none;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.site-nav.is-solid .nav-cta {
  border-color: var(--line);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}

/* ——— Hero: one composition ——— */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 5.5rem clamp(1rem, 4vw, 3rem) max(1.75rem, env(safe-area-inset-bottom));
  overflow: clip;
  color: #f7f4ec;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.06);
  animation: kenburns 20s var(--ease) forwards;
  filter: saturate(1.05) contrast(1.04);
}

@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.78) 0%, rgba(18, 20, 24, 0.35) 55%, rgba(18, 20, 24, 0.15) 100%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.3) 0%, rgba(18, 20, 24, 0.05) 38%, rgba(18, 20, 24, 0.82) 100%);
}

.home-hero-stripe {
  position: absolute;
  left: 0;
  bottom: 22%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), transparent);
  animation: stripe 1.15s 0.3s var(--ease) forwards;
}

@keyframes stripe {
  to {
    width: min(40vw, 26rem);
  }
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.home-hero-brand {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 11vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--accent);
  animation: rise 0.9s var(--ease) both;
}

.home-hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 5.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #f7f4ec !important;
  animation: rise 0.9s 0.08s var(--ease) both;
}

.home-hero-dek {
  margin: 0.9rem 0 0;
  max-width: 32rem;
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
  animation: rise 0.9s 0.16s var(--ease) both;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: rise 0.9s 0.24s var(--ease) both;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f0b800;
}

.btn-ghost {
  border: 1px solid rgba(247, 244, 236, 0.45);
  color: #f7f4ec;
}

.btn-ghost:hover {
  border-color: #fff;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 4.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head .more {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.15rem;
  transition: color 0.2s;
}

.section-head .more:hover {
  color: var(--ink);
}

/* ——— Latest: editorial list, no cards ——— */
.latest {
  padding: 3rem 0 2.25rem;
}

.story-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.story-row:hover {
  color: var(--accent-hot);
}

.story-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d7dbe2;
}

.story-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.3rem;
}

.story-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  line-height: 1.25;
}

.story-row p {
  margin: 0.4rem 0 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.story-num {
  display: none;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-hot);
}

/* ——— Channels: one job ——— */
.channels {
  padding: 2rem 0 2.25rem;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.channel-rail {
  display: grid;
  gap: 0;
  margin-top: 0.75rem;
  border-top: 2px solid var(--ink);
}

.channel-rail + .kicker,
.channels .kicker.channels-sub {
  margin-top: 1.35rem;
}

.channel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}

.channel:hover {
  color: var(--accent-hot);
  padding-left: 0.35rem;
}

.channel strong {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.22;
}

.channel span {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

.channel-rail.site-cats .channel strong {
  font-size: clamp(1.05rem, 3vw, 1.3rem);
}

/* ——— Spotlight feature ——— */
.spotlight {
  padding: 3.5rem 0 4rem;
}

.spotlight-stage {
  position: relative;
  overflow: clip;
  min-height: clamp(22rem, 58vw, 34rem);
  color: #f7f4ec;
}

.spotlight-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.spotlight-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 14, 18, 0.9) 0%,
    rgba(12, 14, 18, 0.72) 38%,
    rgba(12, 14, 18, 0.28) 68%,
    rgba(12, 14, 18, 0.12) 100%
  );
}

.spotlight-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  max-width: 36rem;
  color: #f7f4ec;
}

.spotlight-copy h2 {
  margin: 0.35rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 4.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.2;
  color: #f7f4ec !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.spotlight-copy p {
  margin: 0 0 1.2rem;
  color: rgba(247, 244, 236, 0.88) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: #dfe3e9;
}

.footer-brand p,
.footer-note {
  margin: 0.4rem 0 0;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .story-row {
    grid-template-columns: 11rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.4rem;
  }

  .story-row img {
    aspect-ratio: 4 / 3;
  }

  .story-row p {
    max-width: 36rem;
  }

  .story-num {
    display: block;
  }

  .story-row h3 {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.15;
  }

  .channel-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 1.5rem;
    border-top: 0;
  }

  .channel-rail.site-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .channel {
    display: grid;
    gap: 0.2rem;
    padding: 0.85rem 0 0;
    border-top: 2px solid var(--ink);
    border-bottom: 0;
    align-content: start;
  }

  .channel:hover {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

@media (min-width: 1080px) {
  .story-row {
    grid-template-columns: 14rem minmax(0, 1fr) 3rem;
  }

  .channel-rail.site-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-hero-media img,
  .home-hero-stripe,
  .home-hero-brand,
  .home-hero-title,
  .home-hero-dek,
  .home-hero-actions,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .home-hero-stripe {
    width: min(40vw, 26rem);
  }
}
:root {
  --bg: #e9ecf0;
  --bg-soft: #f3f5f7;
  --surface: #ffffff;
  --ink: #16181c;
  --ink-dim: #5c6370;
  --line: rgba(22, 24, 28, 0.12);
  --accent: #d9a400;
  --accent-ink: #1a1500;
  --accent-hot: #e24a12;
  --chrome: #7a8494;
  --asphalt: #23272e;
  --max: 72rem;
  --article: 50.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(217, 164, 0, 0.12), transparent 55%),
    radial-gradient(700px 380px at 0% 40%, rgba(122, 132, 148, 0.14), transparent 50%),
    linear-gradient(180deg, #f6f7f9 0%, var(--bg) 38%, #dde2e8 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 60;
  background: transparent;
}

.progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(15, 17, 20, 0.55), transparent);
  color: #f5f6f8;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s;
}

.site-nav.is-solid {
  background: rgba(243, 245, 247, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 0.7rem;
  height: 1.55rem;
  background: var(--accent);
  box-shadow: 3px 0 0 var(--accent-hot);
  transform: skewX(-12deg);
}

.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: none;
  gap: 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.site-nav.is-solid .nav-cta {
  border-color: var(--line);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 6.5rem clamp(1rem, 4vw, 3rem) 2.5rem;
  overflow: clip;
  color: #f7f4ec;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  transform: scale(1.08);
  animation: kenburns 18s var(--ease) forwards;
  filter: saturate(1.06) contrast(1.04);
}

@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.72) 0%, rgba(18, 20, 24, 0.28) 52%, rgba(18, 20, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.28) 0%, rgba(18, 20, 24, 0.08) 40%, rgba(18, 20, 24, 0.78) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-stripe {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), transparent);
  animation: stripe 1.2s 0.35s var(--ease) forwards;
}

@keyframes stripe {
  to {
    width: min(42vw, 28rem);
  }
}

.hero-copy,
.hero-meta {
  position: relative;
  z-index: 1;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 11vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--accent);
  animation: rise 0.9s var(--ease) both;
}

.hero-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(2.1rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.14;
  color: #f7f4ec !important;
  animation: rise 0.9s 0.08s var(--ease) both;
}

.hero-title span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px #f7f4ec;
}

.hero-dek {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: rgba(247, 244, 236, 0.82);
  font-size: 1.05rem;
  animation: rise 0.9s 0.16s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: rise 0.9s 0.24s var(--ease) both;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f0b800;
}

.btn-ghost {
  border: 1px solid rgba(247, 244, 236, 0.45);
  color: #f7f4ec;
}

.btn-ghost:hover {
  border-color: #fff;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 236, 0.22);
  max-width: 42rem;
  animation: rise 0.9s 0.32s var(--ease) both;
}

@media (min-width: 560px) {
  .hero-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-meta span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.62);
  margin-bottom: 0.25rem;
}

.hero-meta strong {
  font-size: 0.95rem;
  font-weight: 600;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
}

.toc,
body.btr-chrome .btr-toc {
  display: block !important;
  margin: 0 0 0.5rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid var(--line);
}

.toc-label {
  margin: 0 0 0.4rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.toc a {
  display: block;
  padding: 0.15rem 0;
  border-left: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-dim);
  font-size: 0.85rem;
  line-height: 1.3;
  transition: color 0.2s, border-color 0.2s;
}

.toc a:hover,
.toc a.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent-hot);
}

.article {
  width: min(100%, var(--article));
  margin-inline: auto;
}

#story,
#related,
#top,
.entry-content h2[id] {
  scroll-margin-top: 5.5rem;
}

.toc a {
  cursor: pointer;
}

.article h2 {
  margin: 2.6rem 0 0.9rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.2;
  color: var(--ink);
}

.article p {
  margin: 0 0 1.15rem;
  color: #3a404b;
}

.lede {
  font-size: 1.22rem;
  line-height: 1.65;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  background: linear-gradient(90deg, rgba(217, 164, 0, 0.1), transparent 70%);
}

.pull {
  margin: 2.4rem 0;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 3px solid var(--accent-hot);
  background: linear-gradient(90deg, rgba(226, 74, 18, 0.07), transparent 80%);
}

.pull p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-transform: none;
  color: var(--ink) !important;
}

.pull cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.bleed-photo {
  margin: 2.5rem calc(50% - 50vw) 2.2rem;
  width: 100vw;
}

.bleed-photo img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.04);
}

.bleed-photo figcaption {
  width: min(100% - 2rem, var(--article));
  margin: 0.7rem auto 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.kicker {
  margin: 0 0 0.45rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.kicker.light {
  color: var(--accent);
}

.section-head p:last-child {
  color: var(--ink-dim);
  max-width: 36rem;
}

.colors {
  margin: 3rem 0 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.swatch-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 1.4rem 0 1.1rem;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.swatch i {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c) 55%, var(--c2, var(--c)) 55%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.swatch span {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.swatch.is-active,
.swatch:hover {
  border-color: var(--accent-hot);
  box-shadow: 0 8px 24px rgba(22, 24, 28, 0.06);
}

.color-stage {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  background: #d7dbe2;
}

.color-stage img {
  width: 100%;
  height: clamp(16rem, 48vw, 26rem);
  object-fit: cover;
  transition: opacity 0.45s var(--ease), transform 0.7s var(--ease);
}

.color-stage.is-switching img {
  opacity: 0.35;
  transform: scale(1.03);
}

.color-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(18, 20, 24, 0.88));
  color: #f7f4ec;
}

.color-code {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.color-copy h3 {
  margin: 0.35rem 0 0.25rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  line-height: 1.2;
}

.color-copy p:last-child {
  margin: 0;
  color: rgba(247, 244, 236, 0.75);
  font-size: 0.95rem;
}

.specs {
  margin: 2.5rem 0;
  padding: 3rem 0;
  background:
    linear-gradient(135deg, rgba(217, 164, 0, 0.08), transparent 40%),
    linear-gradient(180deg, #f8f9fb, #eef1f5);
  border-block: 1px solid var(--line);
}

.specs-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.specs-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.specs .kicker.light {
  color: var(--accent-hot);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1rem;
  margin: 1.8rem 0 0;
}

.spec-grid > div {
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
}

.spec-grid dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.spec-grid dd {
  margin: 0.3rem 0 0.2rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.spec-grid small {
  margin-left: 0.25rem;
  font-size: 0.45em;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
}

.spec-grid p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.specs-note {
  margin: 1.8rem 0 0;
  max-width: 42rem;
  color: var(--ink-dim);
}

.continuum {
  padding-bottom: 1rem;
}

.life-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.life-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.life-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.life-list strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.life-list span {
  color: var(--ink-dim);
}

.verdict {
  margin-top: 2.8rem;
}

.verdict-split {
  display: grid;
  gap: 1.4rem;
  margin-top: 1rem;
}

.verdict-split > div {
  padding: 1.2rem 0;
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
}

.verdict-split h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.verdict-split p {
  margin: 0;
}

.closing {
  margin: 2rem 0 0 !important;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.25;
  color: var(--ink) !important;
}

.related {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.related-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.related h2 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.related-rail {
  display: grid;
  gap: 0;
}

.related-item {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s;
}

.related-item:last-child {
  border-bottom: 1px solid var(--line);
}

.related-item:hover {
  color: var(--accent-hot);
}

.related-cat {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.related-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.related-item span:last-child {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: #dfe3e9;
}

.footer-brand p,
.footer-note {
  margin: 0.4rem 0 0;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .swatch-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .verdict-split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .related-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .related-item,
  .related-item:last-child {
    border: 0;
    padding: 0;
    border-top: 2px solid var(--ink);
    padding-top: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 2.5rem;
    padding-top: 4rem;
  }

  .toc,
  body.btr-chrome .btr-toc {
    display: block !important;
    position: sticky;
    top: 5.5rem;
    align-self: start;
    margin: 0;
    padding: 0;
    border-bottom: 0;
    z-index: 5;
  }

  .toc ol {
    display: grid;
    gap: 0.2rem;
  }

  .toc a {
    padding: 0.2rem 0 0.2rem 0.7rem;
    border-bottom: 0;
    border-left: 2px solid transparent;
  }

  .toc a:hover,
  .toc a.is-active {
    border-bottom-color: transparent;
    border-left-color: var(--accent-hot);
  }

  .toc-spacer {
    display: block;
  }

  .article {
    margin-inline: 0;
  }

  .bleed-photo {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    width: calc(50vw + 50%);
  }

  .bleed-photo figcaption {
    margin-left: 0;
  }
}

@media (min-width: 1080px) {
  .layout {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 3rem;
    padding-top: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-stripe,
  .hero-brand,
  .hero-title,
  .hero-dek,
  .hero-actions,
  .hero-meta,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-stripe {
    width: min(42vw, 28rem);
  }
}
/* Category archive — Salt & Chrome, shared with home/post */

.cat-hero {
  position: relative;
  min-height: min(72svh, 34rem);
  display: grid;
  align-content: end;
  padding: 5.5rem clamp(1rem, 4vw, 3rem) 2rem;
  overflow: clip;
  color: #f7f4ec;
}

.cat-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cat-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(1.04) contrast(1.03);
}

.cat-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.78) 0%, rgba(18, 20, 24, 0.35) 55%, rgba(18, 20, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.35) 0%, rgba(18, 20, 24, 0.1) 40%, rgba(18, 20, 24, 0.85) 100%);
}

.cat-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.cat-crumb {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.7);
}

.cat-crumb a:hover {
  color: var(--accent);
}

.cat-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #f7f4ec !important;
}

.cat-hero-copy .dek {
  margin: 0.85rem 0 0;
  color: rgba(247, 244, 236, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}

.cat-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 244, 236, 0.22);
}

.cat-stats span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.6);
  margin-bottom: 0.2rem;
}

.cat-stats strong {
  font-size: 1rem;
  font-weight: 700;
}

.cat-body {
  padding: 2.5rem 0 3.5rem;
}

.cat-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cat-children {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cat-chip:hover,
.cat-chip.is-active {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
  background: rgba(226, 74, 18, 0.06);
}

.cat-list {
  border-top: 2px solid var(--ink);
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.cat-row:hover {
  color: var(--accent-hot);
}

.cat-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d7dbe2;
}

.cat-row-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.3rem;
}

.cat-row h2 {
  margin: 0;
  font-size: clamp(1.1rem, 3.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.cat-row .excerpt {
  margin: 0.4rem 0 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cat-num {
  display: none;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-hot);
}

.hub-grid {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.hub-card {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}

.hub-card:hover {
  color: var(--accent-hot);
  padding-left: 0.35rem;
}

.hub-card .parent {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hub-card strong {
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  text-transform: uppercase;
}

.hub-card p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
  line-height: 1.4;
  max-width: 36rem;
}

.hub-card .count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-hot);
}

.site-nav.is-solid {
  background: rgba(243, 245, 247, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem max(1rem, env(safe-area-inset-right)) 0.85rem max(1rem, env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(15, 17, 20, 0.55), transparent);
  color: #f5f6f8;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 0.7rem;
  height: 1.55rem;
  background: var(--accent);
  box-shadow: 3px 0 0 var(--accent-hot);
  transform: skewX(-12deg);
}

.brand-word {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: none;
  gap: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav.is-solid .nav-cta {
  border-color: var(--line);
}

.wrap {
  width: min(100% - 2rem, var(--max, 72rem));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.section-title {
  margin: 0;
  font-size: clamp(1.4rem, 4.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(247, 244, 236, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f7f4ec;
  margin-top: 1.1rem;
}

.btn-ghost-light:hover {
  border-color: #fff;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: #dfe3e9;
}

.footer-note {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.footer-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.cat-page {
  margin: 0;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(217, 164, 0, 0.1), transparent 55%),
    linear-gradient(180deg, #f6f7f9 0%, #e9ecf0 50%, #dde2e8 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

body.cat-page a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.65s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .cat-toolbar {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .cat-row {
    grid-template-columns: 12rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.35rem;
  }

  .cat-row img {
    aspect-ratio: 4 / 3;
  }

  .cat-num {
    display: block;
  }

  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

@media (min-width: 1080px) {
  .hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cat-row {
    grid-template-columns: 14rem minmax(0, 1fr) 3rem;
  }
}

/* WP integration */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}
body.btr-chrome {
  margin: 0 !important;
  padding: 0 !important;
}
body.btr-chrome #wpadminbar { z-index: 100000; }
.btr-chrome .alignnone,
.btr-chrome .aligncenter,
.btr-chrome .alignleft,
.btr-chrome .alignright { max-width: 100%; height: auto; }
.btr-chrome .wp-caption { max-width: 100%; }
.article .wp-block-image img,
.article img { border-radius: 0; }

.article .entry-content > *:first-child { margin-top: 0; }
.article .entry-content {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.article .entry-content p {
  margin: 0 0 1.15rem;
  color: #3a404b;
  text-align: justify;
  text-justify: inter-word;
}
.article .entry-content h2,
.article .entry-content h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.article .entry-content h2 { margin: 2.2rem 0 0.9rem; font-size: clamp(1.45rem, 4vw, 2.15rem); }
.article .entry-content h3 { margin: 1.6rem 0 0.7rem; font-size: 1.2rem; }
.article .entry-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 0 1.2rem 1.15rem;
  border-left: 3px solid var(--accent-hot);
}
.article .entry-content ul, .article .entry-content ol { color: #3a404b; padding-left: 1.2rem; }
.article .entry-content img { height: auto; margin: 1.2rem 0; }

/* Force light text on dark heroes (override Newspaper h1/h2 black) */
body.btr-chrome .home-hero,
body.btr-chrome .home-hero .home-hero-title,
body.btr-chrome .home-hero h1,
body.btr-chrome .hero,
body.btr-chrome .hero .hero-title,
body.btr-chrome .hero h1,
body.btr-chrome .cat-hero,
body.btr-chrome .cat-hero-copy h1,
body.btr-chrome .cat-hero h1 {
  color: #f7f4ec !important;
}
body.btr-chrome .hero .hero-title,
body.btr-chrome .hero h1,
body.btr-chrome .cat-hero-copy h1,
body.btr-chrome .cat-hero h1 {
  line-height: 1.14 !important;
}
body.btr-chrome .home-hero-brand,
body.btr-chrome .hero-brand {
  color: var(--accent, #d9a400) !important;
}
body.btr-chrome .home-hero-dek,
body.btr-chrome .hero-dek,
body.btr-chrome .cat-hero-copy .dek {
  color: rgba(247, 244, 236, 0.85) !important;
}
