/* Red Leaf — Article reading styles (longer reads) */

.article-page {
  background: var(--paper);
  min-height: 100vh;
}

.art-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* Hero */
.art-hero {
  padding: 64px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.art-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--red);
}
.art-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 18px 0 20px;
  max-width: none;
  width: auto;
  text-wrap: wrap;
}
.art-deck {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0 0 28px;
  max-width: none;
  width: auto;
  text-wrap: wrap;
}
.art-meta {
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink-3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.art-meta .dot { color: var(--line); }

/* Body */
.art-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}
.art-body > * { text-wrap: pretty; }
.art-body p { margin: 0 0 22px; }
.art-body p strong { color: var(--ink); font-weight: 600; }
.art-body p em { color: var(--ink); font-style: italic; }

.art-body h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 16px;
  text-wrap: balance;
}
.art-body h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 32px 0 12px;
}

.art-body blockquote {
  margin: 28px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--red);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  font-style: normal;
}

.art-body ul, .art-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.art-body li { margin-bottom: 8px; }

.art-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.art-callout {
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.art-callout strong { color: var(--ink); }

/* Sign-off */
.art-signoff {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}
.art-signoff-mark {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.02em;
}
.art-signoff-meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
}
.art-signoff-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--display);
}

/* Bottom CTA */
.art-bottom-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--ink);
  color: white;
  border-radius: 16px;
  text-align: center;
}
.art-bottom-cta h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  text-wrap: balance;
  color: white;
}
.art-bottom-cta p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.art-bottom-cta .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Back link in nav */
.art-back {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 0;
}
.art-back:hover { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .art-wrap { padding: 0 24px 64px; }
}

@media (max-width: 640px) {
  .art-wrap { padding: 0 18px 48px; }
  .art-title { font-size: 32px !important; line-height: 1.15 !important; }
  .art-deck { font-size: 17px !important; }
  .art-body { font-size: 16px !important; }
}
