/* ============================================
   BLOG — index + article styles
   ============================================ */

.blog-hero { padding: 64px 0 56px; text-align: center; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero h1 { margin-top: 16px; }
.blog-hero-sub {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.08rem;
}

/* ---- Article grid (blog index) ---- */
.blog-grid-section { background: var(--cream-deep); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.blog-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.blog-card-link {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover { color: var(--navy); }

/* ---- CTA strip on blog index ---- */
.blog-cta-strip {
  background: var(--navy);
  border-radius: 18px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.blog-cta-strip h3 { color: var(--white); margin-bottom: 8px; font-size: 1.4rem; }
.blog-cta-strip p { color: rgba(255,255,255,0.78); margin: 0; max-width: 480px; }
.blog-cta-strip .btn { flex-shrink: 0; }

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-hero { padding: 48px 0 0; }
.article-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.article-hero .eyebrow { justify-content: center; }
.article-hero h1 { margin-top: 16px; font-size: clamp(2rem, 4vw, 2.8rem); }
.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-cover {
  max-width: 920px;
  margin: 36px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.article-cover img { width: 100%; display: block; }

.article-body-section { padding: 56px 0 0; }
.article-body {
  max-width: 700px;
  margin: 0 auto;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--ink);
}
.article-body h2 {
  margin-top: 44px;
  margin-bottom: 18px;
  font-size: 1.7rem;
}
.article-body h3 {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--teal-soft);
}
.article-body ul, .article-body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.article-body li {
  font-size: 1.03rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--ink);
}
.article-body strong { color: var(--navy); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream-deep);
  border-radius: 8px;
  padding: 20px 26px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
}

/* ---- Inline CTA card within article ---- */
.article-inline-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 34px 32px;
  margin: 36px 0;
}
.article-inline-cta h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.article-inline-cta p { color: rgba(255,255,255,0.78); margin-bottom: 20px; font-size: 0.98rem; }
.article-inline-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Author / source box ---- */
.article-footer-note {
  max-width: 700px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---- Related articles ---- */
.related-section { background: var(--cream-deep); margin-top: 64px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .related-grid { grid-template-columns: 1fr; }
}
.related-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.related-card:hover { transform: translateY(-3px); }
.related-card span.eyebrow { font-size: 0.68rem; }
.related-card h4 { font-size: 1.05rem; margin: 10px 0 0; line-height: 1.35; }
