/* ============================================================
   Article Page Styles
   ============================================================ */

.article-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
}

.article-hero .container {
  max-width: 720px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-breadcrumb a {
  color: var(--text-muted);
}
.article-breadcrumb a:hover {
  color: var(--rose);
}

.article-breadcrumb .sep {
  color: var(--border);
}

.article-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rose);
  background: var(--rose-50);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

/* ── Article Body ──────────────────────────────────────────── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.015em;
}

.article-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.article-body a {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-color: var(--rose-100);
  text-underline-offset: 2px;
}
.article-body a:hover {
  text-decoration-color: var(--rose);
}
.article-body a.btn {
  text-decoration: none;
}
.article-body a.btn.btn-primary {
  color: #fff;
}

.article-body blockquote {
  border-left: 3px solid var(--rose-light);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--rose-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
  color: var(--text);
  margin-bottom: 0;
  font-style: italic;
}

/* ── Grant CTA inside articles ─────────────────────────────── */
.article-cta {
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--sage-light) 100%);
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.article-cta h3 {
  font-family: var(--font-serif);
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.article-cta .btn {
  display: inline-flex;
}

/* ── Related Articles ──────────────────────────────────────── */
.related-section {
  padding: 3rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.related-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .article-hero h1 { font-size: 1.75rem; }
  .related-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 1.5rem; }
}
