/* Escopo total do single */
.single-post .prose {

  max-width: 900px;
  margin: 0 auto;
}

/* Título */
.single-post .prose h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff; /* mantém padrão dark */
  margin-bottom: 20px;
}

/* Parágrafos */
.single-post .prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a1a1aa; /* semelhante ao zinc-400 do Tailwind */
  margin-bottom: 20px;
    letter-spacing: 0.2px;
}

/* Destaque */
.single-post .prose strong {
  color: #C5A059;
  font-weight: 600;
}

/* Imagens (SEM QUEBRAR O TAILWIND) */
.single-post .prose img {
  border-radius: 1.5rem;
  margin: 30px 0;
}

/* H2 mais forte */
.single-post .prose h2 {
  font-size: 2.8rem !important;
  line-height: 1.2;
}

/* H3 mais forte */
.single-post .prose h3 {
  font-size: 2rem !important;
  line-height: 1.3;
}

/* Subtítulos */
.single-post .prose h2,
.single-post .prose h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}