.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 64px; }
.post-card { text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px; transition: transform .15s, border-color .15s; }
.post-card:hover { transform: translateY(-2px); border-color: var(--gold); }
/* Card titles are h3 (see scripts/verify-card-headings.mjs); h2 is sized too so
   a card can never fall through to the base h2 size and render oversized. */
.post-card h2, .post-card h3 { font-size: 20px; margin-top: 8px; }
.article { max-width: 720px; margin-inline: auto; padding-top: 64px; }
.article h2 { font-size: 26px; margin: 40px 0 12px; }
.article p { margin-bottom: 16px; }
.article-meta { font-size: 14px; color: var(--ink-2); margin-bottom: 24px; }
.article-cta { background: var(--cream); border-radius: var(--r-lg); padding: 32px; margin: 48px 0; }
.article figure { margin: 8px 0 28px; }
.article figure img { width: 100%; height: auto; display: block; border-radius: var(--r-md); border: 1px solid var(--line); }
.article figcaption { font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.article .pull-quote { border-left: 3px solid var(--gold); margin: 24px 0; padding: 4px 0 4px 20px;
  font-family: var(--font-d); font-weight: 700; font-size: 19px; line-height: 1.5; color: var(--ink); }
@media (max-width: 1000px) { .post-grid { grid-template-columns: 1fr; } }

/* Content engine blog components — tokens only, no new colors */
.stat-table-wrap { overflow-x: auto; margin: 24px 0 32px; }
.stat-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.stat-table th, .stat-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.stat-table th { font-family: var(--font-d); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.stat-table td:first-child { color: var(--ink); font-weight: 600; }
.sources { font-size: 14px; padding-left: 20px; }
.sources li { margin-bottom: 10px; }
.sources a { color: var(--gold-ink); text-decoration: none; }
.sources a:hover { box-shadow: inset 0 -2px 0 0 var(--gold); }
.article .faq { margin: 24px 0 8px; }
