/* ── Article pages (issues) — shared styles ── */

.article-hero {
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--border);
}

.article-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.issue-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 3px;
}

.free-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ade80;
  border: 1px solid #4ade8055;
  background: #4ade800d;
  padding: 4px 12px;
  border-radius: 3px;
}

.article-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 820px;
  margin-bottom: 24px;
  line-height: 1.14;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.byline-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.byline-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.byline-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}

/* Article body */

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-body p:last-child { margin-bottom: 0; }

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 56px 0 20px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  line-height: 1.25;
}

.article-body .lede {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.72;
  margin-bottom: 28px;
  font-weight: 400;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Ticker reveal */

.ticker-reveal {
  margin: 56px 0;
  padding: 40px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.ticker-reveal p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ticker-reveal p:last-of-type { margin-bottom: 0; }

.ticker-tag {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* Disclaimer */

.article-disclaimer {
  margin: 56px 0 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.article-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 10px;
}

.article-disclaimer p:last-child { margin-bottom: 0; }

/* Subscribe CTA */

.article-subscribe {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0;
  margin-top: 80px;
}

.article-subscribe-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.article-subscribe-inner h4 { margin-bottom: 12px; }
.article-subscribe-inner h2 { margin-bottom: 16px; }
.article-subscribe-inner p  { margin-bottom: 32px; }

.article-subscribe .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reading progress bar */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
  width: 0%;
}

/* Prev/next nav */

.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  gap: 16px;
}

.article-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: color 0.2s;
}

.article-nav a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .article-body { padding: 48px 0 0; }
  .ticker-reveal { padding: 28px 24px; }
}
