/* StopDystopia — mobile-tuned typography + Papyrus headers only */

:root {
  --font-brand: Papyrus, "Papyrus", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --maxw: 860px;
  --pad-x: 18px;
  --pad-y: 44px;

  --text: 16px;
  --lede: 18px;
  --h1: 40px;
  --h2: 24px;
}

@media (max-width: 520px) {
  :root {
    --pad-x: 16px;
    --pad-y: 34px;

    --text: 16px;
    --lede: 17px;
    --h1: 32px;
    --h2: 21px;
  }
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text);
  line-height: 1.75;
}

/* Papyrus only where it carries "voice" */
h1, h2, h3,
.nav a,
.kicker,
.caption,
.readlink {
  font-family: var(--font-brand);
  letter-spacing: 0.02em;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 22px;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 10px;
}

h1 {
  font-size: var(--h1);
  line-height: 1.08;
  margin: 10px 0 16px;
}

h2 {
  font-size: var(--h2);
  line-height: 1.22;
  margin: 26px 0 10px;
}

.lede {
  font-size: var(--lede);
  line-height: 1.75;
  opacity: 0.97;
  margin: 0 0 18px;
}

p { margin: 0 0 16px; }
ul { margin: 0 0 18px 22px; }
li { margin: 0 0 8px; }

.hr {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 26px 0;
}

.card {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 18px;
  margin: 18px 0;
}

.readlink {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.essay-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 22px 0 10px;
}

.caption {
  font-style: italic;
  opacity: 0.85;
  margin: 0 0 24px;
}

.pullquote {
  font-family: var(--font-brand);
  font-size: 20px;
  line-height: 1.6;
  border-left: 3px solid rgba(0,0,0,0.25);
  padding-left: 14px;
  margin: 22px 0;
  opacity: 0.95;
}

@media (max-width: 520px) {
  .pullquote { font-size: 18px; }
  ul { margin-left: 18px; }
}
