/* ===================================================
   Gene Shot v2 — Warmer, friendlier editorial system
   =================================================== */

:root {
  /* paper & ink */
  --paper: #FBF8F2;
  --paper-warm: #F4EFE5;
  --card: #FFFFFF;
  --ink: #181C2A;
  --ink-soft: #2A2F42;
  --muted: #6C6F7F;
  --muted-soft: #A8ABBC;
  --line: #E8E2D4;
  --line-soft: #F0EBDD;

  /* primary brand */
  --coral: #FF5A3D;
  --coral-deep: #E84628;
  --coral-light: #FFE9E2;

  /* category accents — friendlier, warmer */
  --mrna:    #2E7DFF;       /* fresh blue */
  --mrna-bg: #E3EEFF;
  --crispr:  #2BAE76;       /* sage green */
  --crispr-bg: #DCF1E5;
  --long:    #C77A1B;       /* burnt amber */
  --long-bg: #FCEBCB;

  /* accents */
  --sand: #F4EFE5;
  --cream-dark: #EDE6D4;
  --highlight: #FFEB7A;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.display {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-variation-settings: 'wdth' 100;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* ============== LOGO ============== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.logo .burst {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.logo .burst::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  border-radius: 50%;
}
.logo .burst::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--paper);
  border-radius: 50%;
}
.logo .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.logo .dot {
  width: 5px; height: 5px;
  background: var(--coral);
  border-radius: 50%;
  margin: 0 4px 5px;
  display: inline-block;
}
.logo .shot { color: var(--ink); }
.logo:hover .burst::before { background: var(--coral-deep); transform: scale(1.08); transition: all 0.2s; }

.logo-lg {
  font-size: 64px;
}
.logo-lg .burst { width: 64px; height: 64px; }
.logo-lg .burst::after { inset: 18px; }
.logo-lg .dot { width: 12px; height: 12px; margin: 0 12px 14px; }

/* ============== UTILITY STRIP ============== */
.utility {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
}
.utility .row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.18s; }
.utility a:hover { color: var(--coral); }
.utility .edition { display: inline-flex; align-items: center; gap: 8px; }
.utility .edition .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255,90,61,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,61,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,90,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,61,0); }
}
.utility .right { display: flex; gap: 22px; align-items: center; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav .links {
  display: flex;
  gap: 4px;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
}
.nav .links a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.18s;
}
.nav .links a:hover { background: var(--paper-warm); color: var(--ink); }
.nav .links a.active { background: var(--ink); color: var(--paper); }
.nav .nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.18s;
  position: relative;
}
.icon-btn:hover { background: var(--paper-warm); color: var(--ink); border-color: var(--ink); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn .badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 0 0 2px var(--paper);
}
.icon-btn .badge:empty { display: none; }
.icon-btn .kbd {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 2px;
}
.search-trigger {
  width: auto;
  padding: 0 16px 0 14px;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.search-trigger .kbd-pill {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
}
.subscribe-btn {
  background: var(--coral);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
}
.subscribe-btn:hover { background: var(--coral-deep); transform: translateY(-1px); }

/* ============== HERO ============== */
.hero {
  padding: 56px 0 64px;
  position: relative;
}
.hero .welcome {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero .welcome::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--coral);
  display: inline-block;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero .copy h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 64px;
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.032em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero .copy h1 em {
  font-style: normal;
  font-weight: 400;
  font-family: 'Newsreader', Georgia, serif;
  color: var(--coral);
}
.hero .copy h1 .underline {
  background-image: linear-gradient(transparent 62%, var(--highlight) 62%, var(--highlight) 92%, transparent 92%);
  padding: 0 2px;
}
.hero .deck {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .actions .subscribe-btn { padding: 14px 22px; font-size: 14px; }
.hero .actions .ghost {
  padding: 13px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .actions .ghost:hover { border-color: var(--ink); }
.hero .social-proof {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.avatar-stack {
  display: inline-flex;
}
.avatar-stack .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.avatar-stack .av:first-child { margin-left: 0; }
.av.c1 { background: #FF5A3D; }
.av.c2 { background: #2BAE76; }
.av.c3 { background: #2E7DFF; }
.av.c4 { background: #C77A1B; }
.av.c5 { background: #6C6F7F; }
.social-proof strong { color: var(--ink); font-weight: 700; }

/* Hero feature card */
.hero .feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hero .feature:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(24,28,42,0.08); border-color: var(--ink); }
.hero .feature .feature-visual {
  aspect-ratio: 16/10;
  position: relative;
}
.hero .feature .feature-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(24,28,42,0.85);
  backdrop-filter: blur(6px);
  color: white;
  padding: 5px 11px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero .feature .feature-tag::before { content: '✦'; color: var(--coral); }
.hero .feature .feature-body { padding: 24px 26px 26px; }
.hero .feature .pill { margin-bottom: 14px; }
.hero .feature h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  text-wrap: pretty;
  color: var(--ink);
}
.hero .feature .feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero .feature a.read-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.hero .feature .feature-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-soft); }

/* ============== SECTION HEAD ============== */
.section-head {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-head .label::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--coral);
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  line-height: 1;
}
.section-head .spacer { flex: 1; }
.section-head .meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ============== THIS WEEK ============== */
.thisweek { padding: 28px 0 80px; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24,28,42,0.08);
  border-color: var(--ink);
}
.card .visual-wrap { position: relative; overflow: hidden; }
.card .visual {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .visual { transform: scale(1.04); }
.card .bookmark {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.18s;
  z-index: 2;
}
.card .bookmark:hover { background: white; color: var(--coral); transform: scale(1.08); }
.card .bookmark svg { width: 16px; height: 16px; }
.card .bookmark.saved { color: var(--coral); }
.card .bookmark.saved svg path { fill: var(--coral); }

.card .body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.card .row-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: pretty;
}
.card .deck {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
}
.card .meta {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-weight: 500;
}
.card .meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-soft); }
.card .meta strong { color: var(--ink); font-weight: 700; }
.card .meta .difficulty { margin-left: auto; }

/* ============== PILLS ============== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px 5px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.pill.mrna   { background: var(--mrna-bg); color: var(--mrna); }
.pill.mrna::before   { background: var(--mrna); }
.pill.crispr { background: var(--crispr-bg); color: var(--crispr); }
.pill.crispr::before { background: var(--crispr); }
.pill.long   { background: var(--long-bg); color: var(--long); }
.pill.long::before   { background: var(--long); }

/* difficulty meter */
.difficulty {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}
.difficulty .dots { display: inline-flex; gap: 3px; }
.difficulty .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
}
.difficulty .dot.on { background: var(--ink); }
.difficulty.easy .dot.on { background: var(--crispr); }
.difficulty.mid .dot.on { background: var(--long); }
.difficulty.hard .dot.on { background: var(--coral); }

/* ============== FILTER CHIPS ============== */
.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: -0.005em;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: white; border-color: var(--ink); }
.chip .count {
  font-size: 11px;
  background: var(--paper-warm);
  color: var(--muted);
  padding: 1px 7px 2px;
  border-radius: 999px;
  font-weight: 700;
}
.chip.active .count { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); }
.chip .swatch {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.chip .swatch.mrna { background: var(--mrna); }
.chip .swatch.crispr { background: var(--crispr); }
.chip .swatch.long { background: var(--long); }
.card.is-hidden { display: none; }

/* ============== TOPICS / FOR-YOU STRIP ============== */
.foryou {
  padding: 72px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fy-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
}
.fy-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(24,28,42,0.08); }
.fy-card .fy-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fy-card.mrna .fy-icon { background: var(--mrna-bg); color: var(--mrna); }
.fy-card.crispr .fy-icon { background: var(--crispr-bg); color: var(--crispr); }
.fy-card.long .fy-icon { background: var(--long-bg); color: var(--long); }
.fy-card .fy-icon svg { width: 26px; height: 26px; }
.fy-card .fy-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.fy-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.fy-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
  flex: 1;
}
.fy-card .fy-foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.fy-card .fy-foot .arrow { transition: transform 0.2s; }
.fy-card:hover .fy-foot .arrow { transform: translateX(4px); color: var(--coral); }

/* ============== ARCHIVE STRIP ============== */
.archive-strip { padding: 72px 0; }
.archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.edition-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.edition-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.edition-card .edition-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.edition-card .edition-date {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.edition-card .edition-titles {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}
.edition-card .edition-titles li { margin-bottom: 4px; padding-left: 14px; position: relative; list-style: none; }
.edition-card .edition-titles li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted-soft);
}
.edition-card .edition-titles ul { padding: 0; margin: 0; }
.edition-card.upcoming { background: var(--paper-warm); border-style: dashed; }
.edition-card.upcoming .edition-num { color: var(--muted); }
.edition-card .edition-cta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.edition-card.upcoming .edition-cta { color: var(--muted); }

/* ============== ABOUT / EDITORS ============== */
.about-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,90,61,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-strip .container { position: relative; z-index: 2; }
.about-strip .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-strip .label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about-strip .label::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--coral);
}
.about-strip h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.about-strip h2 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}
.about-strip p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.about-stat {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.about-stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1;
  color: white;
}
.about-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  display: block;
}
.about-stat .label::before { display: none; }

.editors {
  display: grid;
  gap: 16px;
}
.editor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.2s;
}
.editor-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.editor-card .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.editor-card .name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 2px;
}
.editor-card .role { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============== CTA / SUBSCRIBE ============== */
.cta { padding: 96px 0; }
.cta-card {
  background: var(--coral);
  border-radius: 32px;
  padding: 64px 56px;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.3);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.35);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta .eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta .eyebrow::before {
  content: '';
  width: 18px; height: 1.5px;
  background: white;
}
.cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.028em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta h2 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.cta p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 12px;
}
.signup {
  background: rgba(255,255,255,0.96);
  border-radius: 20px;
  padding: 26px;
  color: var(--ink);
}
.signup label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.signup input {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  font-weight: 500;
}
.signup input::placeholder { color: var(--muted); }
.signup input:focus { outline: none; border-color: var(--ink); }
.signup button {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.2s;
}
.signup button:hover { background: var(--coral); transform: translateY(-1px); }
.signup .small {
  font-size: 11.5px;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--paper);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.footer .brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 14px;
  max-width: 340px;
}
.footer .brand .disclaimer {
  font-size: 12px;
  color: var(--muted-soft);
  line-height: 1.55;
  font-style: italic;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer ul a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s;
}
.footer ul a:hover { color: var(--coral); }
.footer .legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer .legal .links { display: flex; gap: 20px; }
.footer .legal a { color: var(--muted); text-decoration: none; }
.footer .legal a:hover { color: var(--coral); }

/* ============== SEARCH MODAL ============== */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(24,28,42,0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.search-modal.open { opacity: 1; pointer-events: auto; }
.search-modal .panel {
  background: var(--paper);
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(-10px);
  transition: transform 0.2s;
}
.search-modal.open .panel { transform: translateY(0); }
.search-modal .panel-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.search-modal .panel-input svg { width: 18px; height: 18px; color: var(--muted); }
.search-modal .panel-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  font-weight: 500;
}
.search-modal .panel-input input::placeholder { color: var(--muted); }
.search-modal .esc {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 6px;
}
.search-modal .results {
  max-height: 50vh;
  overflow-y: auto;
  padding: 8px 0;
}
.search-modal .res-section {
  padding: 10px 20px 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-modal .res {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s;
}
.search-modal .res:hover, .search-modal .res.kbd-active {
  background: var(--paper-warm);
}
.search-modal .res .res-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
}
.search-modal .res .res-cat.mrna { color: var(--mrna); }
.search-modal .res .res-cat.crispr { color: var(--crispr); }
.search-modal .res .res-cat.long { color: var(--long); }
.search-modal .res .res-title {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}
.search-modal .res .res-arrow { color: var(--muted); }
.search-modal .empty {
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ============== TOAST ============== */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 90;
  opacity: 0;
  transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(24,28,42,0.25);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .toast-icon { color: var(--coral); }

/* ============== ARTICLE PAGE ============== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--coral);
  z-index: 100;
  transition: width 0.08s linear;
  width: 0;
}
.article-hero {
  padding: 48px 0 36px;
  text-align: center;
}
.article-hero .crumbs {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 22px;
}
.article-hero .crumbs a { color: var(--coral); text-decoration: none; font-weight: 600; }
.article-hero .crumbs a:hover { text-decoration: underline; }
.article-hero .crumbs .sep { margin: 0 8px; color: var(--muted-soft); }
.article-hero .pill { margin: 0 0 22px; }
.article-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 880px;
  text-wrap: balance;
  color: var(--ink);
}
.article-hero .deck {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
  text-wrap: pretty;
  font-weight: 400;
}
.article-hero .meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.article-hero .meta-row strong { color: var(--ink); font-weight: 700; }
.article-hero .meta-row .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-soft); }
.article-hero .toolbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.article-hero .toolbar .tool {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.18s;
  cursor: pointer;
  font-family: inherit;
}
.article-hero .toolbar .tool:hover { border-color: var(--ink); color: var(--ink); }
.article-hero .toolbar .tool.active { background: var(--ink); color: white; border-color: var(--ink); }
.article-hero .toolbar .tool svg { width: 14px; height: 14px; }
.article-hero .toolbar .tool.bookmark.saved { color: var(--coral); border-color: var(--coral); background: var(--coral-light); }

.article-visual {
  width: 100%;
  aspect-ratio: 21/9;
  max-width: 1100px;
  margin: 16px auto 0;
  border-radius: 28px;
  overflow: hidden;
}
.article {
  padding: 56px 0 40px;
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-body p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-weight: 400;
}
.article-body p strong { color: var(--ink); font-weight: 600; }
.article-body p em { font-style: italic; }
.article-body p.lede::first-letter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px;
  line-height: 0.88;
  font-weight: 700;
  color: var(--coral);
  float: left;
  padding: 6px 12px 0 0;
  margin-top: 4px;
}
.article-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
  margin: 52px 0 18px;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.article-body .pullquote {
  margin: 40px -20px;
  padding: 0 0 0 32px;
  border-left: 4px solid var(--coral);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  line-height: 1.18;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.article-body .stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
.article-body .stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
}
.article-body .stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.028em;
  margin-bottom: 10px;
}
.article-body .stat .num .unit {
  font-size: 20px;
  font-weight: 600;
  color: var(--coral);
  margin-left: 1px;
}
.article-body .stat .label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: 'Manrope', sans-serif;
}
.article-body .takeaway {
  margin: 44px 0;
  background: var(--coral-light);
  border: 1px solid #FBD4C7;
  border-radius: 20px;
  padding: 28px 32px;
}
.article-body .takeaway-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
  margin: 0 0 14px;
}
.article-body .takeaway-label::before {
  content: '💡';
  font-size: 18px;
}
.article-body .takeaway p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  margin: 0;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}
.article-body .takeaway p strong { color: var(--ink); font-weight: 700; }

.article-body .source-note {
  margin-top: 48px;
  padding: 24px 24px;
  background: var(--paper-warm);
  border-radius: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.article-body .source-note strong { color: var(--ink); font-weight: 700; }

/* glossary tooltip terms */
.gloss {
  border-bottom: 1.5px dotted var(--coral);
  cursor: help;
  position: relative;
  font-weight: 600;
  color: var(--ink);
}
.gloss:hover { background: var(--highlight); }
.gloss-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 14px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  font-style: normal;
  width: 280px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 10px 30px rgba(24,28,42,0.2);
}
.gloss-pop::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.gloss-pop .gp-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
  display: block;
}
.gloss:hover .gloss-pop, .gloss:focus .gloss-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* listen player */
.listen-player {
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 0 32px;
}
.listen-player .lp-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.listen-player .play {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s;
}
.listen-player .play:hover { background: var(--coral); transform: scale(1.05); }
.listen-player .play svg { width: 14px; height: 14px; margin-left: 1px; }
.listen-player .play .pause-icon { display: none; }
.listen-player .play.playing .play-icon { display: none; }
.listen-player .play.playing .pause-icon { display: inline-block; margin-left: 0; }
.listen-player .lp-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.listen-player .lp-time { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.listen-player .lp-bars {
  margin-left: auto;
  display: flex;
  gap: 3px;
  align-items: end;
  height: 24px;
}
.listen-player .lp-bars span {
  width: 3px;
  background: var(--coral);
  border-radius: 2px;
  height: 30%;
  opacity: 0.4;
  transition: all 0.2s;
}
.listen-player .play.playing ~ .lp-bars span {
  animation: barWave 0.9s ease-in-out infinite;
}
.listen-player .play.playing ~ .lp-bars span:nth-child(2) { animation-delay: 0.1s; }
.listen-player .play.playing ~ .lp-bars span:nth-child(3) { animation-delay: 0.2s; }
.listen-player .play.playing ~ .lp-bars span:nth-child(4) { animation-delay: 0.15s; }
.listen-player .play.playing ~ .lp-bars span:nth-child(5) { animation-delay: 0.25s; }
@keyframes barWave {
  0%, 100% { height: 25%; opacity: 0.6; }
  50% { height: 100%; opacity: 1; }
}

/* reactions */
.reactions {
  max-width: 680px;
  margin: 28px auto 0;
  padding: 0 32px;
}
.reactions .rx-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  background: var(--paper-warm);
  border-radius: 18px;
}
.reactions .rx-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 6px;
}
.rx-btn {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.18s;
}
.rx-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.rx-btn.active {
  background: var(--coral-light);
  border-color: var(--coral);
  color: var(--coral-deep);
}
.rx-btn .emoji { font-size: 15px; }
.rx-btn .ct { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.rx-btn.active .ct { color: var(--coral-deep); }

/* author bio */
.author-bio {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.author-bio .av {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  color: white;
  font-weight: 700;
}
.author-bio .author-meta-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 3px;
}
.author-bio .author-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.author-bio .author-blurb {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* more from category */
.more {
  padding: 72px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.more .more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero .grid, .about-strip .grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid, .foryou-grid, .archive-list { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .copy h1 { font-size: 48px; }
  .article-hero h1 { font-size: 46px; }
  .article-hero .deck { font-size: 20px; }
  .about-strip h2 { font-size: 40px; }
  .cta h2 { font-size: 42px; }
  .nav .links { display: none; }
  .more .more-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav .row { padding: 14px 20px; gap: 12px; }
  .story-grid, .foryou-grid, .archive-list, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; }
  .hero .copy h1 { font-size: 38px; }
  .hero { padding: 36px 0 48px; }
  .article-hero { padding: 32px 0 28px; }
  .article-hero h1 { font-size: 34px; }
  .article-hero .deck { font-size: 18px; }
  .article-body { padding: 0 22px; }
  .article-body p { font-size: 18px; }
  .article-body p.lede::first-letter { font-size: 58px; padding: 4px 10px 0 0; }
  .article-body .pullquote { font-size: 24px; padding-left: 22px; margin: 32px 0; }
  .article-body h2 { font-size: 25px; }
  .article-body .stats { grid-template-columns: 1fr; }
  .article-body .takeaway { padding: 24px 22px; }
  .cta h2 { font-size: 34px; }
  .cta { padding: 56px 0; }
  .cta-card { padding: 36px 26px; border-radius: 24px; }
  .about-strip { padding: 64px 0; }
  .about-strip h2 { font-size: 32px; }
  .about-stats { grid-template-columns: 1fr; gap: 18px; }
  .section-head h2 { font-size: 28px; }
  .utility .row { padding: 9px 20px; font-size: 11.5px; }
  .utility .right .hide-mobile { display: none; }
  .foryou, .archive-strip, .more { padding: 48px 0; }
  .thisweek { padding: 16px 0 56px; }
  .reactions .rx-inner { padding: 18px 20px; flex-wrap: wrap; gap: 10px; }
  .listen-player { padding: 0 22px; }
  .author-bio { padding: 22px 20px; }
}
