/* Article / Blog post styles */
.article-hero {
  padding: 120px 0 48px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumbs a { transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span { color: var(--text-muted); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
}
.article-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.article-body h2 { font-size: 26px; font-weight: 700; margin: 40px 0 16px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.article-body p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.article-cta {
  background: linear-gradient(135deg, rgba(255,59,48,0.12), rgba(27,142,242,0.08));
  border: 1px solid rgba(255,59,48,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.article-cta p { color: var(--text-muted); margin-bottom: 24px; }
.article-cta .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: var(--accent);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color var(--transition);
}
.back-btn:hover { color: var(--text); }
.back-btn svg { width: 16px; height: 16px; }

.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 6px;
}
