/* Blog post prose styles, ported from blog.simplyvoyce.com's post.njk inline
   <style> block. voyce.shared.css doesn't cover these — they're specific to
   long-form post content (figures/captions/blockquotes/heading spacing). */

.blog-img {
  height: auto;
  width: 100%;
  display: block;
}

figcaption {
  font-size: 0.95em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
  font-style: italic;
}

@media (max-width: 900px) {
  figcaption {
    font-size: 0.9em;
  }
}

@media (max-width: 600px) {
  figcaption {
    font-size: 0.85em;
  }
}

@media (max-width: 400px) {
  figcaption {
    font-size: 0.8em;
  }
}

blockquote {
  border-left: 5px solid #775bca;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background-color: #f5f7f9;
  font-style: normal;
  color: #333;
  font-size: 1rem;
  line-height: 0.5;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.separator.mb-6 {
  width: 100%;
}

.blog_h1 {
  margin-top: 2rem;
}

.blog-figure--centered {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .blog-figure--centered {
    max-width: 70%;
  }
}

@media (max-width: 600px) {
  .blog-figure--centered {
    max-width: 90%;
  }
}
