/* ===========================================================
   BLOG POST — layout editorial dark (padrão da marca)
   Compartilhado por todos os posts em /aprenda/blog/
   Dark #0a0a0a + Poppins + gold burlywood/dark-goldenrod.
   Sem caixa branca, sem título duplicado, sem traços nos H2.
   =========================================================== */

.post-container { max-width: none; margin: 0; padding: 0; }
.blog-post { background: transparent; padding: 0; border-radius: 0; box-shadow: none; }
.post-content { font-family: 'Poppins', sans-serif; }

/* ---- Hero full-bleed: sem traço, mostrando o rosto ---- */
.post-content > .site-hero { margin: 0 0 clamp(40px, 5vw, 64px); }
.post-content .site-hero__rule { display: none !important; }
.post-content .site-hero__bg img { object-position: center 24% !important; }

/* ---- Coluna de leitura: tudo, menos o hero, fica estreito e centrado ---- */
.post-content > *:not(.site-hero) {
  max-width: 808px;            /* ~760 de texto + 48 de respiro lateral */
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* ---- Título duplicado fica oculto (o título já está no hero) ---- */
.post-content h2.post-title { display: none !important; }

/* ---- Corpo ---- */
.post-content,
.post-content p,
.post-content li {
  color: rgba(255, 255, 255, 0.80);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.78;
}
.post-content p { margin: 0 0 22px; }
.post-content p strong,
.post-content li strong { color: var(--burlywood); font-weight: 500; }

/* ---- Lead vira citação: barrinha lateral + itálico + aspa + respiro ---- */
.post-content > .lead,
.post-content .post-body > .lead {
  position: relative;
  font-family: 'Poppins', sans-serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: clamp(18px, 1.6vw, 21px) !important;
  line-height: 1.74 !important;
  color: #fff !important;
  border-left: 2px solid var(--dark-goldenrod);
  max-width: 760px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 30px !important;
  margin-top: clamp(28px, 3vw, 40px) !important;
  margin-bottom: clamp(40px, 4.5vw, 56px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.post-content .lead::before {
  content: '\201C';
  color: var(--dark-goldenrod);
  font-weight: 500;
  margin-right: 2px;
}
.post-content .lead::after {
  content: '\201D';
  color: var(--dark-goldenrod);
  font-weight: 500;
  margin-left: 2px;
}
.post-content .lead strong { color: var(--burlywood); font-weight: 500; font-style: normal; }

/* ---- Títulos de seção: Poppins 200 light, SEM traço ---- */
.post-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: #fff;
  margin: clamp(46px, 5vw, 64px) auto 22px;
  padding-bottom: 0;
}
.post-content h2::after { content: none !important; display: none !important; }

.post-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--burlywood);
  margin: 36px auto 14px;
}

/* ---- Imagem destacada com frame gold ---- */
.post-content .post-featured-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
  display: block;
}
.post-content .media-frame { margin-top: clamp(28px, 3vw, 40px); margin-bottom: clamp(28px, 3vw, 40px); }

/* ---- Listas com bullet gold ---- */
.post-content ul, .post-content ol {
  list-style: none;
  padding-left: 24px;
  padding-right: 24px;
}
.post-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}
.post-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark-goldenrod);
}

/* ---- Voltar pro blog: botão ghost ---- */
.back-button-wrapper {
  margin-top: clamp(48px, 5vw, 64px);
  padding-top: 36px;
  border-top: 1px solid rgba(178, 145, 88, 0.18);
  text-align: center;
}
.back-button {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--burlywood);
  border: 1px solid var(--burlywood);
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}
.back-button:hover {
  background: var(--dark-goldenrod);
  color: #1a1a1a;
  letter-spacing: 0.32em;
}

@media (max-width: 768px) {
  .post-content > *:not(.site-hero) { padding-left: 18px; padding-right: 18px; }
  .post-content ul, .post-content ol { padding-left: 18px; padding-right: 18px; }
}
