.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--forest);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-hero {
  padding: 48px 0 12px;
}

.article-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: inline-block;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 14px;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.article-dek {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 8px 0 56px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 14px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin: 26px 0 10px;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article-body a {
  color: var(--forest);
  font-weight: 600;
}

.article-body strong {
  color: var(--navy);
}

.callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.callout strong {
  color: var(--navy);
}

.cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}

.cta-box .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
}

.related-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 44px 0 18px;
}

.related-grid,
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card,
.hub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.related-card:hover,
.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card .tag,
.hub-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}

.related-card h4,
.hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.related-card p,
.hub-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.hub-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}

.hub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 10px 0 14px;
}

@media (max-width: 820px) {
  .related-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }
}
