/* ===================== ARTICLE HEADER ===================== */
.article-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.article-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ===================== ARTICLE BODY ===================== */
.article-body {
  max-width: 720px;
  padding-bottom: 4rem;
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.article-body strong {
  color: var(--text);
  font-weight: 500;
}
.article-body ul,
.article-body ol {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}

/* ===================== STAT CALLOUT ===================== */
.stat-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
.stat-callout-item {
  flex: 1;
}
.stat-callout-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-callout-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===================== PULL QUOTE ===================== */
.pull-quote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.pull-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.pull-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===================== ARTICLE CTA ===================== */
.article-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.article-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}

/* ===================== BACK LINK ===================== */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-back:hover { color: var(--accent); }

/* ===================== INSIGHTS INDEX ===================== */
.insights-header {
  padding: 4rem 0 2rem;
}
.insights-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: block;
  text-decoration: none;
  transition: border-color 0.3s;
}
.insight-card:hover { border-color: var(--accent-dim); }
.insight-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.insight-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.insight-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.insight-card-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ===================== FOOTER (for insight pages) ===================== */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2rem;
}
footer a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; }
