/* Header do post */
.post-header {
  margin-bottom: 2rem;
  text-align: center;
}
.post-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--brown-dark);
}
.post-meta {
  font-size: 0.9rem;
  color: #666;
}
.post-meta a {
  color: var(--brown-dark);
  text-decoration: none;
}

/* Imagem hero do post */
.post-hero {
  margin: 2rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
.post-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.post-hero figcaption {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: 0.5rem;
}

/* Seções do post */
.post-introduction,
.post-section,
.post-conclusion {
  margin-bottom: 2rem;
}
.post-section h2,
.post-introduction h2,
.post-conclusion h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #B8860B;
  margin-bottom: 1rem;
}

/* Imagens internas */
.post-image {
  margin: 1.5rem 0;
  text-align: center;
}
.post-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.post-image figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Texto do parágrafo */
.blog-post p {
  font-family: 'TT Chocolates', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2b1e0f;
  margin-bottom: 1rem;
}

/* Link para próximo post */
.next-post {
  font-weight: 500;
  margin-top: 1rem;
}
.next-post .post-link {
  color: var(--cta-gold);
  text-decoration: none;
}
.next-post .post-link:hover {
  text-decoration: underline;
}
