/* Article prose — public article pages */
.article-prose {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
}
.article-prose h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.article-prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.article-prose p { margin-bottom: 1.1rem; }
.article-prose ul, .article-prose ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 0.5rem;
}
.article-prose li { margin-bottom: 0.45rem; }
.article-prose a { color: var(--teal); font-weight: 600; }
.article-prose strong { color: var(--navy); font-weight: 700; }
.article-prose blockquote {
  border-left: 4px solid var(--teal);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.article-card-thumb-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--off-white); }
.article-card-thumb { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 1.25rem 1.35rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.article-card-meta { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.article-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.6rem; }
.article-card-title a { color: var(--navy); text-decoration: none; }
.article-card-title a:hover { color: var(--teal); }
.article-card-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.article-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.article-card-link:hover { color: var(--teal-bright); }
.articles-empty { text-align: center; color: var(--muted); padding: 2rem; }
.articles-loading { text-align: center; color: var(--muted); padding: 2rem; }

.article-page-hero {
  background: var(--navy);
  color: white;
  padding: 7rem 2rem 3rem;
}
.article-page-hero-inner { max-width: 760px; margin: 0 auto; }
.article-page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.article-page-meta { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.article-page-body { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem; }

.paa-section { padding: 80px 0; background: white; border-top: 1px solid var(--border); }
.paa-section .section-heading { text-align: center; margin-bottom: 2rem; }

.btn-hero-primary {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: var(--navy);
  border: none;
  padding: 1.1rem 2.4rem;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.55);
}

.hero-h1-seo {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
}
.hero-h2-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.articles-home-section { padding: 90px 0; background: var(--off-white); border-top: 1px solid var(--border); }

@media (max-width: 768px) {
  .hero-h1-seo { font-size: 2.35rem; }
  .article-page-hero h1 { font-size: 1.85rem; }
}
