/* =========================================================
   DrawCheck — shared site stylesheet
   Design system + header/footer/modal/buttons/base typography
   Page-specific styles stay inline in each page's <style>.
   ========================================================= */

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

:root {
  /* Greens */
  --green-dark: #1B4D3E;
  --green-mid: #2D5A47;
  --green-light: #A8D5BA;
  --green-glow: rgba(27, 77, 62, 0.35);
  --sage: #E8F0E8;
  --ink: #0E2620;

  /* Cream / paper */
  --cream: #F4ECDC;
  --cream-mid: #EFE5D0;
  --cream-dark: #E8DDC6;
  --paper-line: rgba(27, 77, 62, 0.18);

  /* Accent */
  --rust: #B8552B;
  --rust-soft: #D89876;

  /* Base */
  --bg: #FAFAF8;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt';
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.05;
}

a { color: var(--green-dark); }

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

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

/* ── Editorial tags ── */
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.section-tag .roman {
  color: var(--rust);
  margin-right: 12px;
}

/* Reusable hand-drawn rust underline (uses ::after with svg bg) */
.underline-rust {
  position: relative;
  display: inline-block;
}

.underline-rust::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.18em;
  height: 0.22em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 50 2, 100 6 T 198 5' stroke='%23B8552B' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.7,.1,.3,1);
}

.underline-rust.drawn::after { transform: scaleX(1); }

/* ── Header (liquid glass) ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(244, 236, 220, 0.3);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(250, 250, 248, 0.78);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(244, 236, 220, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--green-dark);
  gap: 0;
  line-height: 1;
}

.logo-icon { display: none; }

.logo-text {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: 'kern', 'liga', 'calt';
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  padding: 4px 0;
}

.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header-link:hover { color: var(--green-dark); }
.header-link:hover::after { transform: scaleX(1); }

.header-link.active::after {
  transform: scaleX(1);
}

.header-divider {
  width: 1px;
  height: 22px;
  background: var(--paper-line);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  box-shadow: 0 4px 16px var(--green-glow), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: var(--ink);
  box-shadow: 0 6px 24px var(--green-glow);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  padding: 18px 36px;
  font-size: 1.05rem;
  border: 1.5px solid transparent;
}

.btn-cream:hover {
  background: var(--cream);
  border-color: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  color: var(--ink);
}

.btn-cream .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-cream:hover .arrow { transform: translateX(4px); }

.btn-header {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ── Footer ── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--paper-line);
  padding: 64px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 280px;
  line-height: 1.45;
}

.footer-tagline em {
  font-style: italic;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--rust); }

.footer-bottom {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid var(--paper-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.footer-bottom .dot {
  color: var(--rust-soft);
  margin: 0 10px;
}

/* ── Scroll animations (JS-gated) ── */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

html.js-on .fade-up {
  opacity: 0;
  transform: translateY(32px);
}

html.js-on .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }

/* ── Modal ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 21, 15, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open { display: flex; }

.modal {
  position: relative;
  background: var(--cream);
  border-radius: 8px;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  animation: modalIn 0.35s cubic-bezier(.6,.2,.2,1);
  border: 1px solid var(--cream-dark);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 38, 32, 0.08);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(14, 38, 32, 0.18); }

.modal-body {
  padding: 40px 44px 44px;
  overflow-y: auto;
  max-height: 88vh;
}

.modal-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.modal-tag .roman {
  color: var(--rust);
  margin-right: 8px;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.form-group label .opt {
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
  font-size: 0.85em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.form-note {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 18px;
}

body.modal-open { overflow: hidden; }

/* ── RESPONSIVE — header/footer/modal defaults ── */
@media (max-width: 768px) {
  body { font-size: 17px; line-height: 1.65; }

  .header-inner { justify-content: center; height: 62px; padding: 0 22px; }
  .header-nav .header-link,
  .header-nav .header-divider,
  .btn-header { display: none; }
  .logo-text { font-size: 1.6rem; letter-spacing: -0.025em; }

  /* Footer — single column, cleaner */
  .footer { padding: 48px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
    padding: 0 22px;
  }
  .footer-brand { grid-column: auto; }
  .footer-col h4 { font-size: 0.68rem; margin-bottom: 12px; }
  .footer-col a { font-size: 0.95rem; }
  .footer-tagline { font-size: 1.05rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.64rem;
    padding: 24px 22px 0;
  }

  /* Modal */
  .modal {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    max-height: 92vh;
  }
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal-body { padding: 28px 22px 32px; }
  .modal-title { font-size: 1.55rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  body { font-size: 16.5px; }
  .header-inner { height: 56px; padding: 0 18px; }
  .logo-text { font-size: 1.48rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* =========================================================
   RESOURCES INDEX — editorial directory
   ========================================================= */

.resource-hero {
  position: relative;
  background:
    radial-gradient(ellipse 100% 70% at 15% 100%, rgba(58, 107, 86, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(15, 46, 36, 0.6) 0%, transparent 55%),
    linear-gradient(165deg, #07150F 0%, #0E2620 18%, #163D31 38%, var(--green-dark) 58%, var(--green-mid) 80%, #3A6B56 100%);
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--white);
}

.resource-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 280px;
  opacity: 0.55;
  pointer-events: none;
}

.resource-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(168, 213, 186, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 213, 186, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.resource-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.resource-hero .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-hero .eyebrow .roman { color: var(--rust-soft); }

.resource-hero .eyebrow .divider {
  width: 32px;
  height: 1px;
  background: rgba(168, 213, 186, 0.5);
}

.resource-hero h1 {
  font-size: clamp(3.6rem, 7.5vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 28px;
}

.resource-hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.05em;
  display: block;
}

.resource-hero .lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

.resource-hero .lede em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}

/* Index meta card (right column of hero) */
.resource-hero-meta {
  position: relative;
  padding: 28px 26px;
  background: rgba(244, 236, 220, 0.08);
  border: 1px solid rgba(168, 213, 186, 0.25);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 8px;
}

.resource-hero-meta .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin-bottom: 14px;
  display: block;
}

.resource-hero-meta .count {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.resource-hero-meta .sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.resource-credit {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168, 213, 186, 0.55);
  display: flex;
  justify-content: space-between;
}

.resource-credit .dot {
  color: var(--rust-soft);
  margin: 0 10px;
}

/* Editorial article listing */
.resource-list-section {
  padding: 110px 0 120px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.resource-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.resource-list-header {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 60px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: baseline;
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 32px;
}

.resource-list-header h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.resource-list-header .side {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-align: right;
  line-height: 1.6;
}

.resource-list-header .side .dot {
  color: var(--rust);
  margin: 0 8px;
}

.resource-list {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.resource-entry {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--paper-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
  position: relative;
}

.resource-entry::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: rgba(232, 221, 198, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.resource-entry:hover::before {
  opacity: 1;
}

.resource-entry-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  line-height: 0.9;
  color: var(--green-dark);
  letter-spacing: -0.04em;
}

.resource-entry-num .ord {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 0.3em;
  vertical-align: super;
  color: var(--rust);
  margin-left: 2px;
  letter-spacing: 0.08em;
}

.resource-entry-body .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.resource-entry-body .meta .dot {
  color: var(--rust);
  margin: 0 8px;
}

.resource-entry-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.resource-entry-body h3 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
}

.resource-entry:hover h3 { color: var(--green-dark); }

.resource-entry-body p {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 640px;
}

.resource-entry-arrow {
  align-self: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--rust);
  transition: transform 0.3s ease;
}

.resource-entry:hover .resource-entry-arrow {
  transform: translateX(8px);
}

/* ── Resources footer CTA strip ── */
.resource-cta-strip {
  background: linear-gradient(170deg, #07150F 0%, var(--green-dark) 50%, #163D31 100%);
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.resource-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.55;
  pointer-events: none;
}

.resource-cta-strip .inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.resource-cta-strip .section-tag {
  color: var(--green-light);
  margin-bottom: 28px;
  display: block;
}

.resource-cta-strip .section-tag .roman { color: var(--rust-soft); }

.resource-cta-strip h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 20px;
}

.resource-cta-strip p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.resource-cta-strip p em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1024px) {
  .resource-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .resource-hero-meta {
    margin-bottom: 0;
  }

  .resource-list-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-list-header .side {
    text-align: left;
  }
}

@media (max-width: 768px) {
  /* Resource hero — centered composition on mobile */
  .resource-hero {
    padding: 108px 0 72px;
    text-align: center;
  }
  .resource-hero-grid {
    grid-template-columns: 1fr;
    padding: 0 22px;
    gap: 28px;
    justify-items: center;
  }
  .resource-hero .eyebrow {
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
    gap: 10px;
  }
  .resource-hero .eyebrow .divider { width: 20px; }
  .resource-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
  .resource-hero .lede {
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 460px;
  }
  .resource-hero-meta {
    padding: 20px 20px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }
  .resource-hero-meta .label { font-size: 0.68rem; margin-bottom: 10px; }
  .resource-hero-meta .count { font-size: 2.4rem; }
  .resource-hero-meta .sub { font-size: 0.88rem; }

  .resource-credit {
    margin-top: 52px;
    flex-direction: column;
    gap: 6px;
    padding: 0 22px;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-align: center;
    align-items: center;
  }

  /* Resource list — centered intro, anchored rows */
  .resource-list-section { padding: 56px 0 64px; }
  .resource-list-header {
    grid-template-columns: 1fr;
    margin: 0 auto 40px;
    padding: 0 22px 24px;
    gap: 14px;
    text-align: center;
    justify-items: center;
  }
  .resource-list-header h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.02;
  }
  .resource-list-header .side {
    font-size: 0.68rem;
    text-align: center;
  }
  .resource-list { padding: 0 22px; }

  .resource-entry {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 26px 0;
  }
  .resource-entry::before { left: -16px; right: -16px; }
  .resource-entry-num { font-size: 2.1rem; line-height: 0.9; }
  .resource-entry-body .meta { font-size: 0.66rem; margin-bottom: 10px; }
  .resource-entry-body h3 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .resource-entry-body p { font-size: 1rem; line-height: 1.55; }
  .resource-entry-arrow { display: none; }

  /* Resource CTA strip */
  .resource-cta-strip { padding: 60px 0 72px; }
  .resource-cta-strip .inner { padding: 0 22px; }
  .resource-cta-strip .section-tag { font-size: 0.72rem; margin-bottom: 22px; }
  .resource-cta-strip h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 1;
    margin-bottom: 16px;
  }
  .resource-cta-strip p {
    font-size: 1.08rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .resource-cta-strip .btn-cream {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .resource-hero { padding: 80px 0 48px; }
  .resource-hero h1 { font-size: 2.4rem; }
  .resource-hero-meta .count { font-size: 2rem; }
  .resource-entry {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .resource-entry-num { font-size: 2rem; }
  .resource-entry-body h3 { font-size: 1.18rem; }
  .resource-cta-strip h2 { font-size: 2.5rem; }
}

/* =========================================================
   ARTICLE PAGES — editorial longform
   ========================================================= */

.article-hero {
  position: relative;
  background:
    radial-gradient(ellipse 100% 70% at 15% 100%, rgba(58, 107, 86, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(15, 46, 36, 0.6) 0%, transparent 55%),
    linear-gradient(165deg, #07150F 0%, #0E2620 18%, #163D31 38%, var(--green-dark) 58%, var(--green-mid) 80%, #3A6B56 100%);
  padding: 140px 0 88px;
  overflow: hidden;
  color: var(--white);
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 280px;
  opacity: 0.55;
  pointer-events: none;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(168, 213, 186, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 213, 186, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: var(--rust-soft);
}

.article-breadcrumb .sep {
  color: var(--rust-soft);
}

.article-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

.article-meta-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.article-meta-row .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 6px 14px;
  border: 1px solid rgba(168, 213, 186, 0.3);
  border-radius: 2px;
}

.article-meta-row .meta-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.article-meta-row .meta-text .dot {
  color: var(--rust-soft);
  margin: 0 8px;
}

.article-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 900px;
  margin-bottom: 28px;
}

.article-hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
}

.article-hero .deck {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 213, 186, 0.25);
}

.article-hero .deck em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}

/* ── Article body ── */
.article-wrap {
  background: var(--cream);
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}

.article-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.article-body {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.8;
}

.article-body > p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 5.4em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.14em -0.05em -0.04em;
  color: var(--rust);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body p em,
.article-body li em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.article-body p strong,
.article-body li strong {
  font-weight: 600;
  color: var(--ink);
}

.article-body a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(var(--rust), var(--rust));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  transition: background-size 0.3s ease, color 0.3s ease;
  padding-bottom: 1px;
}

.article-body a:hover {
  color: var(--rust);
  background-size: 100% 1.5px;
}

.article-body h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--ink);
  margin: 64px 0 24px;
  letter-spacing: -0.025em;
  line-height: 1.08;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
}

.article-body h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.article-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--green-dark);
  margin: 40px 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.75em;
  width: 10px;
  height: 1.5px;
  background: var(--rust);
}

.article-body ol {
  counter-reset: article-ol;
}

.article-body ol li {
  counter-increment: article-ol;
}

.article-body ol li::before {
  content: counter(article-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--rust);
  padding-top: 0.3em;
}

/* Pull quote inside article (if used) */
.article-body blockquote,
.article-body .pull {
  position: relative;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 44px 0;
  padding-left: 20px;
  border-left: 3px solid var(--rust);
}

/* Tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  margin: 36px 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--paper-line);
}

.article-body thead {
  background: var(--green-dark);
  color: var(--cream);
}

.article-body th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.article-body td {
  padding: 14px 16px;
  border-top: 1px solid var(--paper-line);
  color: var(--text);
}

.article-body tbody tr:nth-child(even) {
  background: rgba(232, 221, 198, 0.35);
}

/* Figures / infographics — editorial framing */
.article-body .infographic,
.article-body figure {
  position: relative;
  margin: 56px -24px;
  border-radius: 3px;
  overflow: visible;
  background: var(--bg);
  border: 1px solid var(--cream-dark);
  padding: 20px 20px 18px;
  box-shadow: 0 10px 28px rgba(14, 38, 32, 0.07), 0 2px 6px rgba(14, 38, 32, 0.04);
}

.article-body .infographic::before,
.article-body figure::before {
  content: "FIG.";
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--cream);
  padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--rust);
  line-height: 24px;
}

.article-body .infographic img,
.article-body .infographic svg,
.article-body figure img,
.article-body figure svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.article-body .infographic figcaption,
.article-body figure figcaption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--paper-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.article-body .infographic figcaption::after,
.article-body figure figcaption::after {
  content: "DrawCheck · MMXXVI";
  color: var(--rust);
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .article-body .infographic,
  .article-body figure {
    margin: 40px 0;
    padding: 16px 14px 14px;
  }

  .article-body .infographic figcaption,
  .article-body figure figcaption {
    flex-direction: column;
    gap: 6px;
  }
}

/* Emphasis callout inside article */
.article-body .callout {
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--rust);
  padding: 24px 28px;
  margin: 36px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}

/* Article end CTA */
.article-body .cta-box {
  position: relative;
  background: linear-gradient(165deg, #0E2620 0%, var(--green-dark) 55%, var(--green-mid) 100%);
  border-radius: 4px;
  padding: 56px 48px;
  margin: 72px 0 0;
  color: var(--white);
  overflow: hidden;
}

.article-body .cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.6;
  pointer-events: none;
}

.article-body .cta-box > * {
  position: relative;
  z-index: 1;
}

.article-body .cta-box .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
  display: block;
}

.article-body .cta-box .tag .roman {
  color: var(--rust-soft);
  margin-right: 8px;
}

.article-body .cta-box h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  padding: 0;
  border: 0;
}

.article-body .cta-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-body .cta-box p:last-of-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  margin-bottom: 0;
}

.article-body .cta-box p:last-of-type a {
  color: var(--rust-soft);
  background-image: none;
}

.article-body .cta-box p:last-of-type a:hover {
  color: var(--white);
}

.article-body .cta-box .btn-cream {
  margin-top: 12px;
}

/* ── Article footer rail — further reading ── */
.further-reading {
  background: var(--bg);
  padding: 100px 0 120px;
  position: relative;
}

.further-reading-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.further-reading .section-tag {
  display: block;
  margin-bottom: 18px;
}

.further-reading h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  line-height: 1.05;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--paper-line);
}

.further-reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.further-reading-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid var(--paper-line);
  transition: transform 0.3s ease;
}

.further-reading-card:hover {
  transform: translateY(-2px);
}

.further-reading-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--rust);
  line-height: 1;
}

.further-reading-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}

.further-reading-card h3 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
}

.further-reading-card:hover h3 { color: var(--green-dark); }

.further-reading-card .read {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: auto;
}

.further-reading-card .read .arrow {
  color: var(--rust);
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 4px;
}

.further-reading-card:hover .read .arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .further-reading-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Article hero — centered, commanding, restrained */
  .article-hero {
    padding: 108px 0 64px;
    text-align: center;
  }
  .article-hero-content { padding: 0 22px; }
  .article-breadcrumb {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .article-meta-row {
    gap: 10px;
    margin-bottom: 22px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .article-meta-row .tag {
    font-size: 0.64rem;
    padding: 5px 10px;
    letter-spacing: 0.14em;
  }
  .article-meta-row .meta-text { font-size: 0.64rem; letter-spacing: 0.14em; }
  .article-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 auto 20px;
    max-width: 520px;
  }
  .article-hero .deck {
    font-size: 1.06rem;
    line-height: 1.55;
    padding-top: 20px;
    max-width: 520px;
    margin: 0 auto;
    border-top: 1px solid rgba(168, 213, 186, 0.22);
  }

  /* Article body — reading-first */
  .article-wrap { padding: 48px 0 68px; }
  .article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    padding: 0 22px;
  }
  .article-body p { margin-bottom: 20px; }
  .article-body > p:first-child::first-letter {
    font-size: 3.6em;
    margin: 0.06em 0.1em -0.02em -0.02em;
  }
  .article-body h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
    line-height: 1.1;
    margin: 48px 0 18px;
    padding-top: 20px;
  }
  .article-body h3 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
  }

  /* Lists — tighter, proper indent */
  .article-body ul li,
  .article-body ol li {
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
  }
  .article-body ul li::before { left: 8px; width: 8px; }
  .article-body ol li::before { font-size: 0.74rem; }

  /* Pull quotes & callouts — lighter on mobile */
  .article-body blockquote,
  .article-body .pull {
    font-size: 1.3rem;
    line-height: 1.35;
    margin: 32px 0;
    padding-left: 14px;
  }
  .article-body .callout {
    padding: 18px 20px;
    margin: 28px 0;
    font-size: 1.1rem;
    line-height: 1.45;
  }

  /* Tables — survive narrow widths */
  .article-body table {
    font-size: 0.82rem;
    margin: 28px 0;
  }
  .article-body th,
  .article-body td { padding: 9px 10px; }
  .article-body th {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  /* Figures */
  .article-body .infographic,
  .article-body figure {
    margin: 36px 0;
    padding: 14px 12px 12px;
  }
  .article-body .infographic::before,
  .article-body figure::before {
    font-size: 0.62rem;
    left: 14px;
  }

  /* CTA box */
  .article-body .cta-box {
    padding: 36px 22px;
    margin: 56px 0 0;
  }
  .article-body .cta-box .tag { font-size: 0.7rem; margin-bottom: 14px; }
  .article-body .cta-box h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 14px;
  }
  .article-body .cta-box p { font-size: 1.04rem; line-height: 1.55; }
  .article-body .cta-box .btn-cream {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.98rem;
  }

  /* Further reading */
  .further-reading { padding: 56px 0 64px; }
  .further-reading-inner { padding: 0 22px; }
  .further-reading h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  .further-reading-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .further-reading-card {
    padding: 22px 0;
    gap: 10px;
  }
  .further-reading-card .num { font-size: 1.4rem; }
  .further-reading-card h3 { font-size: 1.2rem; }
  .further-reading-card .read { font-size: 0.66rem; }
}

@media (max-width: 480px) {
  .article-hero { padding: 80px 0 48px; }
  .article-hero h1 { font-size: 2rem; }
  .article-wrap { padding: 40px 0 56px; }
  .article-body { font-size: 1rem; }
  .article-body > p:first-child::first-letter { font-size: 3.2em; }
  .article-body h2 { font-size: 1.65rem; margin: 40px 0 16px; }
  .article-body h3 { font-size: 1.2rem; }
  .article-body .cta-box { padding: 28px 18px; }
  .article-body blockquote,
  .article-body .pull { font-size: 1.2rem; }
}
