/* GRADFLIX styles — built 2026-04-27 08:26:04 */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #ffffff;
  --bg2: #f7f6f3;
  --ink: #111111;
  --ink2: #444444;
  --ink3: #888888;
  --rule: #e0ddd8;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  background: var(--bg);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--ink);
}
.nav-top {
  padding: 0 48px; height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left { display: flex; align-items: center; gap: 0; }
.nav-menu-btn {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  background: none; border: none; cursor: pointer; color: var(--ink);
  padding: 0; white-space: nowrap;
}
.nav-menu-btn:hover { opacity: 0.6; }
.nav-slash {
  font-family: var(--sans); font-size: 11px; color: var(--ink3);
  margin: 0 10px;
}
.nav-search-wrap { position: relative; }
.nav-search {
  width: 160px; padding: 5px 8px 5px 20px;
  border: none; border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: var(--sans); font-size: 11px; color: var(--ink);
  outline: none; transition: border-color 0.15s, width 0.2s;
}
.nav-search:focus { border-bottom-color: var(--ink); width: 220px; }
.nav-search::placeholder { color: var(--ink3); }
.nav-logo {
  font-family: var(--sans); font-size: 18px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; justify-self: center;
}
.nav-actions { display: flex; align-items: center; gap: 20px; justify-self: end; }
.nav-action-link { font-family: var(--sans); font-size: 11px; color: var(--ink3); cursor: pointer; white-space: nowrap; }
.nav-action-link:hover { color: var(--ink); }
/* Article nav */
.nav-article {
  padding: 0 48px; height: 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-back { font-family: var(--sans); font-size: 11px; color: var(--ink3); cursor: pointer; white-space: nowrap; }
.nav-back:hover { color: var(--ink); }
/* Full-screen menu overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 199;
}
.nav-overlay.open { display: block; }
.nav-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 420px; max-width: 90vw;
  background: var(--bg); z-index: 200;
  transform: translateX(-100%); transition: transform 0.3s ease;
  overflow-y: scroll; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.nav-menu-inner {
  padding: 56px 40px 40px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-menu.open { transform: translateX(0); }

.nav-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--sans); font-size: 16px; color: var(--ink3);
  background: none; border: none; cursor: pointer;
}
.menu-section-label {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--ink3);
  margin-bottom: 10px; margin-top: 20px; padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
}
.menu-section-label:first-child { margin-top: 0; }
.menu-cat-link {
  display: block; font-family: var(--serif); font-size: 18px;
  font-weight: 600; padding: 5px 0;
  border-bottom: none; cursor: pointer;
  transition: opacity 0.15s; line-height: 1.3;
}
.menu-cat-link:hover { opacity: 0.7; }
.menu-nav-link {
  display: block; font-family: var(--sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.5px; color: var(--ink); padding: 7px 0;
  border-bottom: 1px solid var(--rule); cursor: pointer;
  transition: opacity 0.15s;
}
.menu-nav-link:hover { opacity: 0.6; }
.menu-join { color: var(--ink); }
.menu-divider { height: 8px; }

/* ── HERO (Parallax) ── */
.hero {
  position: relative; cursor: pointer;
  height: 560px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 48px 44px; max-width: 860px; }
.hero-cat { font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.hero-title { font-family: var(--serif); font-size: clamp(22px, 3.5vw, 42px); font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 12px; }
.hero-standfirst { font-family: var(--serif); font-size: 17px; font-style: italic; color: rgba(255,255,255,0.78); line-height: 1.55; margin-bottom: 14px; max-width: 600px; }
.hero-meta { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.5); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sep { opacity: 0.4; }

/* ── TODAY BANNER ── */
.today-banner {
  background: var(--ink); color: #fff;
  padding: 10px 48px;
  display: flex; align-items: center; gap: 16px;
}
.today-label { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.today-title { font-family: var(--serif); font-size: 15px; font-style: italic; color: #fff; cursor: pointer; }
.today-title:hover { text-decoration: underline; }

/* ── GRID ── */
.section { max-width: 1100px; margin: 0 auto; padding: 52px 48px 72px; }
.section-hdr { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.section-lbl { font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink3); }


.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 44px 32px; }
.card { cursor: pointer; }
.card-img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 14px; }
.card-cat { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 8px; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 8px; transition: opacity 0.15s; }
.card:hover .card-title { opacity: 0.7; }
.card-standfirst { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--ink2); line-height: 1.55; margin-bottom: 12px; }
.card-meta { font-family: var(--sans); font-size: 11px; color: var(--ink3); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ── ARTICLE ── */
.art-hero img { width: 100%; height: 480px; object-fit: cover; }

.art-header { max-width: 740px; margin: 0 auto; padding: 48px 24px 0; }
.art-cat { font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }
.art-title { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 42px); font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 18px; }
.art-standfirst { font-family: var(--serif); font-size: clamp(16px, 2vw, 20px); font-style: italic; color: var(--ink2); line-height: 1.6; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.art-meta { font-family: var(--sans); font-size: 12px; color: var(--ink3); display: flex; gap: 14px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }

.art-body { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; }
.art-body p { font-family: var(--serif); font-size: clamp(16px, 2vw, 18.5px); line-height: 1.88; color: #222; margin-bottom: 28px; }
.art-body p.dc::first-letter { float: left; font-size: 76px; font-weight: 600; line-height: 0.78; margin: 8px 12px 0 0; color: var(--ink); }
.art-body h2 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink3); margin: 52px 0 18px; padding-top: 4px; border-top: 1px solid var(--rule); }
.art-body blockquote { margin: 40px 0; padding: 0 0 0 22px; border-left: 3px solid var(--ink); }
.art-body blockquote p { font-size: 21px; font-style: italic; color: var(--ink2); margin: 0; line-height: 1.6; }

.art-author { max-width: 680px; margin: 0 auto; padding: 28px 24px 56px; border-top: 1px solid var(--rule); display: flex; gap: 14px; align-items: flex-start; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: #e8e5df; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink3); flex-shrink: 0; }
.author-name { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.author-bio { font-family: var(--sans); font-size: 12px; color: var(--ink3); line-height: 1.5; }

/* ── MORE ESSAYS ── */
.more { background: var(--bg2); padding: 52px 48px; border-top: 1px solid var(--rule); }
.more-lbl { font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink3); margin-bottom: 28px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.more-card { cursor: pointer; background: var(--bg); }
.more-card img { width: 100%; height: 160px; object-fit: cover; }
.more-body { padding: 14px 16px 18px; }
.more-cat { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 6px; }
.more-title { font-family: var(--serif); font-size: 16px; font-weight: 600; line-height: 1.35; color: var(--ink); transition: opacity 0.15s; }
.more-card:hover .more-title { opacity: 0.7; }

/* ── SUBSCRIBE SECTION ── */
.subscribe-section {
  background: var(--ink); color: #fff;
  padding: 72px 48px; text-align: center;
}
.subscribe-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.subscribe-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: #fff; margin-bottom: 12px; }
.subscribe-sub { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.subscribe-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto 12px; }
.subscribe-input { flex: 1; padding: 11px 16px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-family: var(--sans); font-size: 13px; outline: none; }
.subscribe-input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-btn { padding: 11px 20px; background: #fff; color: var(--ink); border: none; font-family: var(--sans); font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.subscribe-msg { font-family: var(--sans); font-size: 12px; margin-top: 8px; min-height: 18px; }
.subscribe-msg.ok { color: #81c784; }
.subscribe-msg.err { color: #ef9a9a; }
.subscribe-note { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ── FOOTER ── */
.footer { border-top: 2px solid var(--ink); padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-logo { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--sans); font-size: 11px; color: var(--ink3); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-family: var(--sans); font-size: 11px; color: var(--ink3); }
.footer-positioning {
  font-family: var(--sans); font-size: 10px; color: var(--ink3);
  text-align: center; padding: 10px 48px;
  border-top: 1px solid var(--rule);
  line-height: 1.8; letter-spacing: 0.3px;
  grid-column: 1 / -1;
  width: 100%;
}

/* ── LOADING ── */
.loading { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.spinner { width: 28px; height: 28px; border: 2px solid var(--rule); border-top-color: var(--ink); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PAGE ANIM ── */
.page { animation: fadeUp 0.35s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }


/* ── ESSAY TWO-COLUMN LAYOUT ── */
.art-columns {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.art-sidebar {
  position: sticky;
  top: 100px;
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
}
.art-main {
  padding: 40px 0 40px 48px;
  min-width: 0;
}
.sidebar-author {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-meta { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.sidebar-meta-item {
  font-family: var(--sans); font-size: 12px; color: var(--ink3);
  margin-bottom: 4px; line-height: 1.5;
}
.sidebar-cat { margin-bottom: 20px; }
.sidebar-cat-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink3); cursor: pointer; border-bottom: 1px solid var(--rule);
  padding-bottom: 2px; transition: color 0.15s;
}
.sidebar-cat-tag:hover { color: var(--ink); }
.sidebar-rc-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--ink); cursor: pointer; margin-bottom: 12px;
  padding: 8px 12px; border: 1px solid var(--ink);
  transition: all 0.15s; letter-spacing: 0.3px;
}
.sidebar-rc-btn:hover { background: var(--ink); color: #fff; }
.sidebar-syndicate-btn {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink3);
  cursor: pointer; padding: 8px 0; margin-bottom: 20px;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}
.sidebar-syndicate-btn:hover { color: var(--ink); }
.sidebar-share-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-share-link {
  font-family: var(--sans); font-size: 11px; color: var(--ink3);
  text-decoration: none; transition: color 0.15s;
}
.sidebar-share-link:hover { color: var(--ink); }

/* Override art-body max-width inside sidebar layout */
.art-main .art-body { max-width: 100%; padding: 0 0 60px; }
.art-main .art-body p { font-size: clamp(16px,1.5vw,18.5px); }



/* ── TRANSPARENT NAV (homepage) ── */
.nav-transparent {
  background: transparent !important;
  border-bottom-color: transparent !important;
  position: absolute !important;
  width: 100%;
  top: 0; left: 0;
}
.nav-transparent .nav-menu-btn { color: #fff; }
.nav-transparent .nav-slash { color: rgba(255,255,255,0.5); }
.nav-transparent .nav-search { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
.nav-transparent .nav-search::placeholder { color: rgba(255,255,255,0.5); }
.nav-transparent .nav-logo { color: #fff; }
.nav-transparent .nav-action-link { color: rgba(255,255,255,0.7); }
.nav-transparent .nav-action-link:hover { color: #fff; }
.nav-transparent #nav-auth a { color: rgba(255,255,255,0.7) !important; }
.nav-transparent #nav-auth a:last-child { background: rgba(255,255,255,0.15) !important; color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }
.nav { transition: background 0.3s ease, border-color 0.3s ease; }
.nav-logo { transition: color 0.3s ease; }

/* ── FULLSCREEN HERO ── */
.hero-fullscreen {
  height: 100vh !important;
  min-height: 600px;
}
.hero-fullscreen .hero-content {
  padding-bottom: 80px;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE — ≤ 768px
══════════════════════════════════════════════════════════════ */
/* Nav mobile logo — hidden on desktop */
.nav-mobile-logo { display: none; }
/* Mobile essay footer — hidden on desktop */
.mobile-essay-footer { display: none; }

@media (max-width: 768px) {

  /* Nav */
  .nav-top {
    padding: 0 16px; height: 48px;
    display: flex; align-items: center; justify-content: space-between;
    grid-template-columns: unset;
  }
  .nav-top .nav-logo { display: none; }
  .nav-top .nav-actions { display: none; }
  .nav-top #nav-auth { display: none; }
  .nav-left { flex: 1; }
  .nav-article { padding: 0 16px; height: 48px; }
  .nav-search { width: 80px; }
  .nav-search:focus { width: 110px; }
  /* Mobile logo — right side of nav bar */
  .nav-mobile-logo {
    display: block;
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--ink); cursor: pointer;
    white-space: nowrap;
  }
  .nav-top { position: relative; }
  /* On transparent nav, mobile logo goes white */
  .nav-transparent .nav-mobile-logo { color: #fff; }

  /* Hero */
  .hero { height: 280px; background-attachment: scroll; }
  .hero-fullscreen { height: 280px !important; margin-top: 0 !important; } /* no fullscreen on mobile */
  .hero-content { padding: 0 16px 20px; }
  .hero-standfirst { display: none; }
  /* Nav transparent has no effect on mobile */
  .nav-transparent .nav-top { background: var(--bg) !important; }
  .nav-transparent .nav-menu-btn { color: var(--ink) !important; }
  .nav-transparent .nav-slash { color: var(--ink3) !important; }
  .nav-transparent .nav-search { color: var(--ink) !important; border-bottom-color: var(--rule) !important; }
  .nav-transparent .nav-search::placeholder { color: var(--ink3) !important; }

  /* Today banner */
  .today-banner { padding: 10px 16px; }
  .today-title { font-size: 14px; }

  /* Section / grid */
  .section { padding: 28px 16px 44px; }
  .grid { grid-template-columns: 1fr; gap: 32px; }
  .card-img { height: 180px; }

  /* Article hero */
  .art-hero img { height: 220px; }
  .art-hero-cap { padding: 8px 16px; }
  .art-header { padding: 28px 16px 0; }
  .art-body { padding: 0 16px 60px; }
  .art-body blockquote p { font-size: 17px; }
  /* Sidebar hidden on mobile — info shown at bottom instead */
  .art-columns { grid-template-columns: 1fr; padding: 0 16px; gap: 0; }
  .art-sidebar { display: none; } /* completely hidden on mobile */
  .art-main { padding: 16px 0; }
  .art-main .art-body { padding: 0 0 32px; }
  /* Mobile essay footer — shown at bottom on mobile */
  .mobile-essay-footer {
    display: block;
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    margin-top: 8px;
  }
  .mobile-essay-footer .mef-author {
    display: flex; gap: 12px; align-items: center;
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-essay-footer .mef-meta {
    font-family: var(--sans); font-size: 12px; color: var(--ink3);
    margin-bottom: 12px; display: flex; gap: 16px; flex-wrap: wrap;
  }
  .mobile-essay-footer .mef-cat {
    font-family: var(--sans); font-size: 10px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .mobile-essay-footer .mef-share {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
  }
  .mobile-essay-footer .mef-share a {
    font-family: var(--sans); font-size: 12px; color: var(--ink3);
    text-decoration: none; padding: 6px 0;
  }
  .mobile-essay-footer .mef-share a:hover { color: var(--ink); }
  .mobile-essay-footer .mef-syndicate { display: none; }

  /* More essays */
  .more { padding: 32px 16px; }
  .more-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Pricing grid — 1 column on mobile */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 320px; margin: 0 auto 32px !important; }

  /* Subscribe section */
  .subscribe-section { padding: 48px 16px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-input { border-radius: 0; }
  .subscribe-btn { width: 100%; padding: 12px; }

  /* Footer */
  .footer { padding: 24px 16px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   SMALL MOBILE — ≤ 400px
══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .nav-logo { font-size: 11px; letter-spacing: 1.5px; }
  .hero img { height: 260px; }
  .art-hero img { height: 180px; }
  .hero-title { font-size: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGES
══════════════════════════════════════════════════════════════ */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px 80px; }

.about-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.about-eyebrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 20px;
}
.about-h1 {
  font-family: var(--sans); font-size: clamp(36px, 6vw, 72px);
  font-weight: 600; letter-spacing: 2px; line-height: 1.05;
  margin-bottom: 24px;
}
.about-lead {
  font-family: var(--serif); font-size: clamp(16px, 2vw, 20px);
  font-style: italic; color: var(--ink2); line-height: 1.65;
  max-width: 600px;
}

.about-body {}
.about-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.about-section:last-child { border-bottom: none; }
.about-h2 {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--ink3);
  margin-bottom: 24px;
}
.about-section p {
  font-family: var(--serif); font-size: 18px; line-height: 1.85;
  color: #222; margin-bottom: 20px; max-width: 680px;
}
.about-section p:last-child { margin-bottom: 0; }
.about-exam-tag {
  font-family: var(--sans) !important; font-size: 11px !important;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink3) !important; font-style: normal !important;
  margin-bottom: 20px !important;
}
.about-quote {
  font-family: var(--serif); font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic; line-height: 1.7; color: var(--ink);
  border-left: 3px solid var(--ink); padding-left: 24px;
  margin: 32px 0; max-width: 600px;
}
.about-link {
  display: inline-block; margin-top: 20px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.5px;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  text-decoration: none; transition: opacity 0.15s;
}
.about-link:hover { opacity: 0.6; }
.about-inline-link { color: var(--ink); text-decoration: underline; }

/* How-to grid */
.about-how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin: 32px 0;
}
.about-how-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--rule); background: var(--bg2);
}
.about-how-num {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--ink3); letter-spacing: 1px; flex-shrink: 0; margin-top: 2px;
}
.about-how-text {
  font-family: var(--sans); font-size: 13px; color: var(--ink2);
  line-height: 1.6;
}

/* Diff grid */
.about-diff {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin: 32px 0; max-width: 480px;
}
.about-diff-col { padding: 24px; border: 1px solid var(--rule); }
.about-diff-label {
  font-family: var(--sans); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}
.about-diff-label.not { color: #ccc; }
.about-diff-label.yes { color: var(--ink); }
.about-diff-item {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  margin-bottom: 8px;
}

/* Products */
.about-products { margin: 24px 0; }
.about-product {
  font-family: var(--sans); font-size: 13px; color: var(--ink2);
  padding: 12px 0; border-bottom: 1px solid var(--rule);
  line-height: 1.5;
}
.about-product:first-child { border-top: 1px solid var(--rule); }

/* Books */
.about-books { margin: 24px 0; }
.about-book {
  font-family: var(--serif); font-size: 16px; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.about-book:first-child { border-top: 1px solid var(--rule); }
.about-book span { color: var(--ink3); font-style: italic; font-size: 14px; }

/* Awards */
.about-awards { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.about-award {
  border: 1px solid var(--rule); padding: 20px 24px;
  text-decoration: none; transition: border-color 0.15s; flex: 1; min-width: 200px;
}
.about-award:hover { border-color: var(--ink); }
.about-award-title {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
}
.about-award-sub {
  font-family: var(--sans); font-size: 11px; color: var(--ink3);
}

/* Social links */
.about-social { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 0; }
.about-social-link {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--rule);
  color: var(--ink); text-decoration: none; transition: all 0.15s;
}
.about-social-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* About closing */
.about-closing p {
  font-family: var(--serif); font-size: 18px; line-height: 1.85;
  color: var(--ink2); margin-bottom: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero { padding: 48px 0 40px; }
  .about-how-grid { grid-template-columns: 1fr; }
  .about-diff { grid-template-columns: 1fr; max-width: 100%; }
  .about-awards { flex-direction: column; }
  .about-social { gap: 8px; }
}
