/* MomentX blog — shared article styling, on top of /styles.css */

.blog-shell { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.blog-h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em; line-height: 1.1; font-weight: 800; }
.blog-sub { margin-top: 12px; color: var(--ink-2); max-width: 56ch; }

.blog-list { display: grid; gap: 14px; margin-top: 40px; }
.blog-card {
  display: flex; align-items: center; gap: 24px;
  text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 18px 24px 18px 18px;
  transition: transform .25s cubic-bezier(.16,1,.3,1), border-color .25s;
}
.blog-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.2); }
.blog-card h2 { font-size: 19px; letter-spacing: -.015em; margin: 8px 0 6px; }
.blog-card p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.blog-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--border); border-radius: 999px; padding: 3px 9px;
}
.blog-more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; }
/* thumbnail sits beside the text, never on top of it */
.blog-thumb {
  width: 236px; height: auto; aspect-ratio: 1200 / 630; object-fit: cover;
  flex-shrink: 0; display: block;
  border-radius: 10px; border: 1px solid var(--border);
}
.blog-card-body { flex: 1; min-width: 0; }
@media (max-width: 620px) {
  .blog-card { flex-direction: column; align-items: stretch; padding: 18px; }
  .blog-thumb { width: 100%; }
}

/* ---------------- article ---------------- */
.post { max-width: 680px; margin: 0 auto; padding: 64px 24px 96px; }
.post-kicker { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.post h1 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.03em; line-height: 1.12; margin: 10px 0 8px; }
.post-meta { color: var(--ink-3); font-size: 13px; margin-bottom: 34px; }
.post h2 { font-size: 21px; letter-spacing: -.02em; margin: 38px 0 10px; }
.post p, .post li { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); }
.post p + p { margin-top: 14px; }
.post ul, .post ol { margin: 14px 0 14px 20px; display: grid; gap: 8px; }
.post b, .post strong { color: var(--ink); }
.post .callout {
  border: 1px solid var(--border); border-left: 3px solid #fff;
  border-radius: 10px; padding: 14px 18px; margin: 22px 0; font-size: 14.5px;
}
.post-cta {
  margin-top: 44px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 26px; text-align: center;
}
.post-cta h3 { font-size: 19px; letter-spacing: -.015em; }
.post-cta p { margin: 8px 0 16px; }
.post-back { display: inline-block; margin-bottom: 26px; font-size: 13px; color: var(--ink-3); text-decoration: none; }
.post-back:hover { color: var(--ink); }

/* ---------------- in-article figures ---------------- */
.post figure { margin: 24px 0; }
.post-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.post figcaption { margin-top: 9px; font-size: 12.5px; color: var(--ink-3); text-align: center; }
