/* blog-post.css */
header {
  text-align: center;
  color: var(--light);
  padding: 1.5rem 0;
}
header .date {
  color: var(--light);
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
nav {
  margin: 1rem 0;
}
.posts {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  color: var(--light);
}
.post {
  margin-bottom: 2.5rem;
  border-bottom: 2px dashed var(--light);
  padding-bottom: 2.5rem;
}
.post-content {
  max-width: 50rem; 
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--light);
  font-size: 1.1rem;
  line-height: 1.7;
}
.post-content a {
  color: var(--secondary);
  text-decoration: underline;
}
.post-content figure {
  margin: 2rem 0;
  text-align: center;
}
.post-content figure img {
  max-width: 100%;
  border: 2px solid var(--dark);
  border-radius: 12px;
}
.post-content figcaption {
  color: var(--light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-style: italic;
}
.post-content p {
  margin-bottom: 1.5rem;
}
