/* The 36th — editorial system. Serif display, real photography, hairlines, restraint. */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400..600&family=Newsreader:ital,opsz,wght@0,6..72,400..600;1,6..72,400..500&family=Bodoni+Moda:ital,wght@0,700;1,500&family=Barlow+Semi+Condensed:wght@200;700;800&display=swap");

:root {
  --bg: #e8e5de;
  --bg-2: #e1ddd4;
  --paper: #dbd6cc;
  --ink: #211d16;
  --muted: #645f56;
  --faint: #928c81;
  --line: rgba(33, 29, 22, 0.16);
  --line-2: rgba(33, 29, 22, 0.08);
  --accent: #2f6bed;
  --accent-ink: #1e50d6;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --read: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --max: 1120px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--read);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.tabular {
  font-variant-numeric: tabular-nums;
}
.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Masthead */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(232, 229, 222, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand img {
  height: 30px;
  width: auto;
}
.markers {
  display: flex;
  align-items: center;
}
.markers a {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  margin-left: 30px;
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
.markers a:hover {
  color: var(--ink);
}
.markers a.active {
  color: var(--ink);
}
.markers a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
}
.soon {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: 1px;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 104px 0 68px;
  border-bottom: 1px solid var(--line);
}
.hero .kicker {
  display: block;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(58px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero .lede {
  font-family: var(--read);
  font-size: clamp(19px, 2.3vw, 24px);
  color: var(--muted);
  max-width: 600px;
  margin-top: 30px;
  line-height: 1.5;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.primary:hover {
  background: #4a76f5;
}
.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn.ghost:hover {
  border-color: var(--muted);
}

/* Sections */
section.block {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}
.sec-eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
h2.sec {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.sec-intro {
  color: var(--muted);
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
}

/* Roster */
.filters {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 44px 0 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
}
.chip:hover {
  color: var(--ink);
}
.chip.on {
  color: var(--ink);
}
.chip.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
}
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 30px;
  margin-top: 44px;
}
.entry {
  display: block;
}
.entry .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.entry .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(30%) contrast(1.02);
  transition:
    filter 0.35s ease,
    transform 0.6s ease;
}
.entry:hover .frame img {
  filter: none;
  transform: scale(1.035);
}
.entry .noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--faint);
  letter-spacing: -0.02em;
}
.entry .rk {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.entry .en {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-top: 18px;
  line-height: 1.12;
}
.entry:hover .en {
  color: var(--accent-ink);
}
.entry .er {
  font-family: var(--read);
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px;
}
.entry .ec {
  font-family: var(--sans);
  color: var(--faint);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
}
.placeholder-note {
  margin-top: 44px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--faint);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

/* Profile */
.backlink {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 30px;
}
.backlink:hover {
  color: var(--accent-ink);
}
.profile {
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.profile .p-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--line);
  background: var(--paper);
  filter: grayscale(15%);
}
.profile .p-noimg {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 72px;
  color: var(--faint);
  background: var(--paper);
  border: 1px solid var(--line);
}
.p-rank {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.p-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 62px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 10px 0 8px;
}
.p-title {
  font-family: var(--read);
  font-size: 20px;
  color: var(--muted);
}
.p-cat {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 5px 11px;
}
.p-bio {
  font-family: var(--read);
  font-size: 19px;
  line-height: 1.68;
  color: var(--ink);
  margin-top: 30px;
  max-width: 620px;
}
.p-bio p + p {
  margin-top: 18px;
}
.p-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.p-section h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.p-section p {
  color: var(--muted);
}
.p-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 60px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.p-nav a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--muted);
}
.p-nav a:hover {
  color: var(--accent-ink);
}
/* prev/next moved to the top row next to the back link */
.p-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.p-top .p-nav {
  margin: 0;
  padding: 0;
  border-top: 0;
  width: auto;
  gap: 24px;
}

/* Vote */
.vote-card {
  margin-top: 40px;
  max-width: 620px;
}
.vote-opts {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}
.vote-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.15s;
}
.vote-opt:hover {
  padding-left: 8px;
}
.vote-opt input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.vote-opt .vo-av {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--faint);
  width: 24px;
  flex: none;
}
.vote-opt .vo-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  display: flex;
  flex-direction: column;
}
.vote-opt .vo-name small {
  font-family: var(--read);
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}
.vote-opt:has(input:checked) .vo-name {
  color: var(--accent-ink);
}
.vote-form {
  display: grid;
  gap: 14px;
}
.vf-label {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: -4px;
}
.vf-row {
  display: flex;
  gap: 14px;
}
.vote-form input[type="text"],
.vote-form input[type="email"] {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 2px;
  color: var(--ink);
  font-family: var(--read);
  font-size: 17px;
}
.vote-form input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.vote-form input::placeholder {
  color: var(--faint);
}
.vf-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  margin-top: 6px;
}
.vf-check input {
  accent-color: var(--accent);
}
.vf-msg {
  color: #e0736f;
  font-family: var(--sans);
  font-size: 13.5px;
  min-height: 4px;
}
.vf-note {
  color: var(--faint);
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 4px;
}
.vote-form .btn.primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.vote-success {
  padding: 24px 0;
  max-width: 620px;
}
.vote-success h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
}
.vote-success p {
  color: var(--muted);
  margin-top: 10px;
  font-family: var(--read);
  font-size: 18px;
}

/* Article */
.article {
  max-width: 680px;
}
.article h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.article .stand {
  font-family: var(--read);
  font-size: 20px;
  color: var(--muted);
  margin-top: 18px;
}
.article h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.article p {
  font-family: var(--read);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 14px 0;
}
.article p.muted {
  color: var(--muted);
}
.article .updated {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 8px;
}
/* reveal (dark) theme: keep article text readable on the charcoal ground */
body.reveal-mode .article h1 {
  color: #fff;
}
body.reveal-mode .article h2 {
  color: var(--rv-orange);
}
body.reveal-mode .article p {
  color: var(--rv-ink);
}
body.reveal-mode .article .stand,
body.reveal-mode .article p.muted,
body.reveal-mode .article .updated {
  color: var(--rv-mut);
}
body.reveal-mode .article a {
  color: var(--rv-orange);
}

/* Results */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  max-width: 660px;
}
.results-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--read);
  vertical-align: middle;
}
.results-table .r-rank {
  font-family: var(--serif);
  color: var(--faint);
  width: 30px;
}
.results-table .r-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
}
.results-table .r-bar span {
  display: block;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
  min-width: 2px;
}
.results-table .r-count {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--sans);
}
.results-total {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 14px;
  margin-top: 22px;
}

/* Footer */
footer.site {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 44px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand img {
  height: 26px;
  margin-bottom: 18px;
}
.foot-brand p {
  color: var(--muted);
  font-family: var(--read);
  font-size: 15px;
  max-width: 320px;
}
.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-family: var(--read);
  color: var(--ink);
  font-size: 15px;
  padding: 5px 0;
}
.foot-col a:hover {
  color: var(--accent-ink);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: var(--sans);
  font-size: 12.5px;
}
.foot-bottom a {
  color: var(--muted);
}
.foot-bottom a:hover {
  color: var(--ink);
}
.socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .roster {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  .profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile .p-photo,
  .profile .p-noimg {
    max-width: 300px;
  }
}
@media (max-width: 620px) {
  .markers {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .roster {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
  }
  .vf-row {
    flex-direction: column;
  }
}

/* share */
.share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.share-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.sb {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 7px 13px;
  background: none;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.sb:hover {
  color: var(--ink);
  border-color: var(--muted);
}
/* countdown */
.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 46px;
}
.cd-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cd-lead {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.countdown {
  display: flex;
  gap: 22px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-l {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 6px;
}
.cd-vote {
  margin: 34px 0 10px;
}
/* watch */
.embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 6px;
  border: 1px solid var(--line);
}
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.watch-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted);
  font-family: var(--read);
  font-size: 16px;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.watch-card:hover {
  border-color: var(--muted);
  color: var(--ink);
}
.wc-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  flex: none;
}

/* centered hero (homepage) */
.hero .wrap {
  text-align: center;
}
.hero .lede {
  margin-left: auto;
  margin-right: auto;
}
.hero .cta-row {
  justify-content: center;
}
.hero-meta {
  justify-content: center;
}
.hero-meta .share {
  justify-content: center;
}
.hero-meta .cd-wrap {
  align-items: center;
}

/* site-wide centered content */
.block > .wrap {
  text-align: center;
}
.sec-intro {
  margin-left: auto;
  margin-right: auto;
}
.filters {
  justify-content: center;
}
.placeholder-note {
}
/* profile: centered single column */
.profile {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.profile .p-photo,
.profile .p-noimg {
  max-width: 300px;
}
.p-bio,
.p-section {
  margin-left: auto;
  margin-right: auto;
}
.p-nav {
  justify-content: center;
}
.profile .share {
  justify-content: center;
}
/* article pages centered */
.article {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* keep the vote form fields left-aligned for usability (header still centers) */
.vote-card {
  text-align: left;
}

/* hero logo + prominent profile number */
.hero-logo {
  display: block;
  height: 66px;
  width: auto;
  margin: 0 auto 30px;
}
.p-rank {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 4px;
}

/* real ILTV logo (navy transparent) */
.hero-logo {
  height: 66px;
}

/* ---- The 36 reveal (Gome design): charcoal #1a1a1a + orange #ee7707, gated behind SHOW_LIST ---- */
:root {
  --rv-orange: #ee7707;
  --rv-bg: #1a1a1a;
  --rv-ink: #f2f2f2;
  --rv-mut: #c9c9c9;
  --rv-line: rgba(255, 255, 255, 0.22);
}

/* whole site flips to dark magazine mode on reveal */
body.reveal-mode {
  background: var(--rv-bg);
  color: var(--rv-ink);
}
body.reveal-mode header.site {
  background: var(--rv-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body.reveal-mode .markers a,
body.reveal-mode .menu-btn {
  color: var(--rv-mut);
}
body.reveal-mode .markers a:hover {
  color: #fff;
}
body.reveal-mode footer.site {
  background: var(--rv-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--rv-mut);
}
body.reveal-mode footer.site a,
body.reveal-mode .foot-col a,
body.reveal-mode .foot-brand p,
body.reveal-mode .foot-signup p,
body.reveal-mode .socials a {
  color: var(--rv-mut);
}
body.reveal-mode .foot-col h4 {
  color: #fff;
}

.reveal {
  background: var(--rv-bg);
  color: var(--rv-ink);
  padding: 6px 0 104px;
}
.reveal-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.reveal-title {
  font-family: "Bodoni Moda", var(--serif);
  font-weight: 700;
  font-size: clamp(96px, 17vw, 220px);
  line-height: 0.8;
  letter-spacing: -0.005em;
  color: var(--rv-orange);
  margin: 20px 0 0;
  white-space: nowrap;
}
.reveal-title em {
  font-style: italic;
  font-weight: 500;
}
.reveal-sub {
  font-family: var(--read);
  font-weight: 500;
  color: var(--rv-ink);
  font-size: 20px;
  max-width: 520px;
  margin: 30px 0 36px 14px;
  line-height: 1.4;
}
.reveal-sub b {
  color: var(--rv-orange);
  font-weight: 600;
}
.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.rentry {
  display: block;
  text-decoration: none;
  color: inherit;
  border-left: 1px solid var(--rv-line);
  padding-left: 16px;
}
.rframe {
  aspect-ratio: 220 / 240;
  overflow: hidden;
  background: #101010;
  border-bottom: 1px solid var(--rv-line);
}
.rframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.rentry:hover .rframe img {
  transform: scale(1.03);
}
.rnoimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bodoni Moda", var(--serif);
  font-size: clamp(40px, 7vw, 64px);
  color: #3a3a3a;
}
.rmeta {
  padding-top: 14px;
}
.rno {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.rpc {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rv-bg);
  background: var(--rv-orange);
  padding: 2px 8px;
  border-radius: 2px;
}
.rname {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--rv-orange);
  margin-top: 8px;
  line-height: 1.04;
}
.rtitle {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 200;
  font-size: 20px;
  color: var(--rv-ink);
  margin-top: 4px;
  line-height: 1.15;
}
.reveal-hon {
  margin-top: 82px;
  padding-top: 46px;
  border-top: 1px solid var(--rv-line);
}
.hon-grid {
  max-width: 620px;
}
.reveal-hon .hon-h,
.reveal-hon h3 {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rv-orange);
  margin: 0 0 18px;
}
.hon-item {
  margin-bottom: 16px;
}
.hon-name {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
}
.hon-title {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 200;
  font-size: 18px;
  color: var(--rv-mut);
  margin-top: 2px;
}
.zl {
  color: var(--rv-orange);
  font-weight: 700;
  font-size: 0.8em;
}

/* profile page in reveal mode */
body.reveal-mode .backlink {
  color: var(--rv-orange);
}
body.reveal-mode .p-photo,
body.reveal-mode .p-noimg {
  border-bottom: 1px solid var(--rv-line);
}
body.reveal-mode .p-rank {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
body.reveal-mode .p-name {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 25px;
  color: var(--rv-orange);
}
body.reveal-mode .p-title {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 200;
  font-size: 20px;
  color: var(--rv-ink);
}
body.reveal-mode .p-cat {
  color: var(--rv-mut);
  border-color: var(--rv-line);
}
body.reveal-mode .p-bio p,
body.reveal-mode .p-section p {
  font-family: var(--read);
  font-weight: 500;
  font-size: 16px;
  color: var(--rv-ink);
  text-align: justify;
}
body.reveal-mode .p-section h3 {
  color: var(--rv-orange);
}
body.reveal-mode .p-nav {
  border-color: var(--rv-line);
}
body.reveal-mode .p-nav a {
  color: var(--rv-mut);
}
body.reveal-mode .watch-card {
  color: var(--rv-ink);
  border-color: var(--rv-line);
}
body.reveal-mode .share-lbl {
  color: var(--rv-mut);
}
body.reveal-mode .sb {
  color: var(--rv-ink);
  border-color: var(--rv-line);
}

@media (max-width: 900px) {
  .rgrid {
    grid-template-columns: 1fr 1fr;
  }
  .reveal-inner {
    padding: 0 28px;
  }
}
@media (max-width: 600px) {
  .rgrid {
    grid-template-columns: 1fr;
  }
  .reveal-inner {
    padding: 0 18px;
  }
  .reveal-hon {
    grid-template-columns: 1fr;
  }
  .reveal-title {
    font-size: 22vw;
  }
}

/* ---- The 36 reveal: long-form editorial bio ---- */
.p-tagline {
  font-family: "Bodoni Moda", var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--rv-orange);
  margin: 24px 0 24px;
  line-height: 1.2;
  text-align: center;
}
.p-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.p-body p {
  font-family: var(--read);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.75;
  color: var(--rv-ink);
  margin: 0 0 16px;
}
.p-quote {
  margin: 26px 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--rv-orange);
}
.p-quote p {
  font-family: "Bodoni Moda", var(--serif);
  font-style: italic;
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 10px;
}
.p-quote cite {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rv-mut);
}
.p-closer {
  font-family: "Barlow Semi Condensed", var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--rv-orange);
  margin-top: 24px;
}

/* Newsletter signup in the footer right column - dark/orange reveal language, works in both modes */
.foot-signup {
  max-width: 420px;
  min-width: 280px;
  flex: 1;
}
.foot-signup h4 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 6px;
}
.foot-signup p {
  font-family: var(--read);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 380px;
}
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
}
.nl-form input {
  flex: 1;
  min-width: 0;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  font-family: "Newsreader", Georgia, serif;
}
.nl-form input::placeholder {
  color: #8a8a8a;
}
.nl-form input:focus {
  outline: none;
  border-color: #ee7707;
}
.nl-form button {
  background: #ee7707;
  color: #141414;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Barlow Semi Condensed", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 22px;
  border-radius: 10px;
}
.nl-form button:hover {
  background: #ff8412;
}
.nl-form button:disabled {
  opacity: 0.6;
  cursor: default;
}
.nl-msg {
  font-family: "Newsreader", Georgia, serif;
  font-size: 13.5px;
  margin-top: 8px;
  min-height: 1px;
}
.nl-msg.ok {
  color: #3aa657;
}
.nl-msg.err {
  color: #c0392b;
}
body.reveal-mode .foot-signup h4 {
  color: #fff;
}
body.reveal-mode .nl-msg.ok {
  color: #7ee08a;
}
body.reveal-mode .nl-msg.err {
  color: #ff8f8f;
}
@media (max-width: 560px) {
  .nl-form {
    max-width: none;
  }
}

/* Reveal-mode About page (magazine editorial layout) */
.ab-wrap{padding:56px 0 84px}
.ab-inner{max-width:720px}
.ab-eyebrow{font-family:"Barlow Semi Condensed",system-ui,sans-serif;font-weight:700;letter-spacing:.18em;text-transform:uppercase;font-size:13px;color:var(--rv-orange);margin-bottom:20px}
.ab-title{font-family:"Bodoni Moda",Georgia,serif;font-weight:600;font-size:clamp(30px,5vw,52px);line-height:1.08;color:var(--rv-ink);margin:0 0 22px;text-wrap:balance}
.ab-byline{display:flex;align-items:center;gap:10px;font-family:"Barlow Semi Condensed",system-ui,sans-serif;text-transform:uppercase;letter-spacing:.08em;font-size:13px;color:var(--rv-mut);padding-bottom:24px;margin-bottom:32px;border-bottom:1px solid var(--rv-line)}
.ab-author{color:var(--rv-ink);font-weight:700}
.ab-dot{color:var(--rv-line)}
.ab-body p{font-family:"Newsreader",Georgia,serif;font-weight:500;font-size:17px;line-height:1.72;color:var(--rv-ink);margin:0 0 20px;max-width:640px}
.ab-lead{font-size:21px;line-height:1.6;color:#fff}
.ab-placeholder{margin-top:34px;font-family:"Barlow Semi Condensed",system-ui,sans-serif;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--rv-mut);border:1px dashed var(--rv-line);border-radius:8px;padding:10px 14px;display:inline-block}
