/* blog-extras.css — CSS the source kept inline per-page (NOT in blog.css):
   the FAQ section (every post) + the About banner figure. blog.css stays verbatim. */

/* ── FAQ (from each post's inline <style>) ── */
.faq-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--color-surface, #f9f7f4);
  border-radius: 8px;
}
.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text, #2c2c2c);
}
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border, #e8e4de);
}
.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text, #2c2c2c);
}
.faq-item p {
  margin: 0;
  color: var(--color-text-muted, #5a5a5a);
  line-height: 1.7;
}

/* ── About banner (from about/index.html inline <style>) ── */
.about-banner-figure { margin: 0 0 1.5rem 0; }
.about-banner-figure figcaption {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}
