/* Verbally blog — article + index pages (body.blog).
   Reuses the site tokens + the global nav / footer / FAQ accordion from
   style.css; adds only the long-form reading layout. Dark theme, Verbally
   Purple is the only action color, Inter to match the landing. */

body.blog { font-family: 'Inter', var(--font-system); }

/* ===================================================================
   ARTICLE (blog post)
   =================================================================== */
.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
.post-head { margin-bottom: 36px; }
.post-head .eyebrow { margin-bottom: 14px; }
.post h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.post-byline { color: var(--text-muted); font-size: 0.9rem; }
.post-byline a { color: var(--accent-tint); }

.post p { margin: 0 0 20px; color: var(--text-body); font-size: 1.075rem; }
.post h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 44px 0 14px;
}
.post em { color: var(--text-body); font-style: italic; }

/* The GEO answer block — the extractable lead answer, given visual weight so
   it reads as the takeaway (and so the structure matches its on-page role). */
.answer-block {
  margin: 28px 0;
  padding: 22px 26px;
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.answer-block p { margin: 0; font-size: 1.125rem; color: var(--text-body); }
.answer-block strong { color: var(--text-primary); }

/* Demo figure — a product screenshot now; a bespoke GIF can replace it later. */
.post-demo { margin: 32px 0; }
.post-demo img {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-shot);
  box-shadow: var(--shadow-shot);
}
.post-demo figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-cta { margin: 40px 0 8px; text-align: center; }

.post-faq { margin-top: 52px; }
.post-faq h2 { margin-bottom: 20px; }

.post-related {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===================================================================
   BLOG INDEX
   =================================================================== */
.blog-index { max-width: 760px; margin: 0 auto; padding: 56px 24px 72px; }
.blog-index-head { margin-bottom: 40px; }
.blog-index-head h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.blog-index-dek { color: var(--text-muted); font-size: 1.0625rem; max-width: 60ch; }

.post-list { list-style: none; display: grid; gap: 18px; }
.post-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.15s ease;
}
.post-card:hover { border-color: var(--accent); }
.post-card a { display: block; padding: 24px 26px; color: inherit; text-decoration: none; }
.post-card a:hover { text-decoration: none; }
.post-card h2 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.post-card p { color: var(--text-body); margin-bottom: 12px; }
.post-card-meta { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 760px) {
  .post, .blog-index { padding: 40px 20px 56px; }
}
