.blog-hero { padding: 96px 0 64px; border-top: 0; }
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8d8d2; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 12.5px; }
.post-cat { background: var(--navy-tint); color: var(--navy); padding: 3px 10px; border-radius: 999px; font-weight: 500; }
.post-date { color: var(--muted); }
.post-card h2 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.post-card h2 a { color: var(--ink); text-decoration: none; transition: color .15s; }
.post-card h2 a:hover { color: var(--navy); }
.post-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.read-more { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--navy); }
.read-more:hover { text-decoration: underline; }

/* ── Article layout ── */
.article-header { padding: 80px 0 48px; border-top: 0; border-bottom: 1px solid var(--line-2); }
.article-header .eyebrow { margin-bottom: 16px; }
.article-header h1 { max-width: 22ch; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-top: 24px; font-size: 13.5px; color: var(--muted); }
.article-meta .sep { width: 1px; height: 14px; background: var(--line); }
.article-body { max-width: 720px; margin: 0 auto; padding: 56px 0 80px; }
.article-body h2 { font-size: 28px; margin-top: 48px; margin-bottom: 14px; }
.article-body h3 { font-size: 20px; margin-top: 32px; margin-bottom: 10px; }
.article-body p { font-size: 16px; line-height: 1.72; color: var(--ink-2); margin-top: 16px; }
.article-body ul, .article-body ol { margin: 16px 0; padding-left: 24px; }
.article-body li { font-size: 16px; line-height: 1.72; color: var(--ink-2); margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body .callout {
  background: var(--navy-tint); border-left: 3px solid var(--navy);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0;
  font-size: 15px; color: var(--ink-2); line-height: 1.65;
}
.article-body .callout strong { color: var(--navy); }
.article-cta {
  background: var(--navy); border-radius: 16px; padding: 40px;
  text-align: center; margin-top: 56px;
}
.article-cta h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.78); font-size: 15px; margin-bottom: 24px; }
.article-cta .btn-primary { background: #fff; color: var(--navy); }
.article-cta .btn-primary:hover { background: #eef0f6; }

@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .article-body { padding: 40px 0 60px; }
}
