/* ═══════════════════════════════════════════════════════
   POST INDIVIDUAL — VERSÃO PREMIUM
   ═══════════════════════════════════════════════════════ */

/* FUNDO */
.post-main {
  background: #f7f7f5;
}

/* HERO (mantém como está, só refinado leve) */
.post-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: #0d0d0d;
  background-size: cover;
  background-position: center;
}

.post-hero--has-img {
  min-height: 520px;
  align-items: flex-end;
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,.2) 0%, rgba(13,13,13,.65) 55%, #0d0d0d 100%),
    var(--post-img);
}

.post-hero--no-img {
  background-image:
    radial-gradient(ellipse at 0% 100%, rgba(245,196,0,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(245,196,0,.07) 0%, transparent 45%),
    linear-gradient(160deg, #181818 0%, #0d0d0d 100%);
}

.post-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 56px;
}

/* TÍTULO */
.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
  max-width: 840px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   CONTAINER PRINCIPAL (CORREÇÃO AQUI)
   ═══════════════════════════════════════════════════════ */

.post-shell {
  max-width: 920px; /* ← AQUI FOI O PRINCIPAL AJUSTE */
  margin: -60px auto 0;
  padding: 0 20px 80px;
  position: relative;
}

/* CARD */
.post-content {
  background: #fff;
  border-radius: 24px 24px 0 0;
  border: 1px solid #e5e5e2;
  border-bottom: none;
  padding: 48px 64px 64px;
  box-shadow: 0 -8px 40px rgba(0,0,0,.08);
}

/* ═══════════════════════════════════════════════════════
   TIPOGRAFIA PREMIUM
   ═══════════════════════════════════════════════════════ */

.post-body {
  color: #333;
  font-size: 18px;
  line-height: 1.9;
  font-family: var(--font-body);
}

.post-body p {
  margin-bottom: 28px;
  color: #3a3a3a;
}

.post-body strong {
  color: #111;
  font-weight: 700;
}

/* TÍTULOS */
.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
  color: #0d0d0d;
  margin: 60px 0 16px;
  line-height: 1;
}

.post-body h3 {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 40px 0 12px;
  color: #1a1a1a;
}

/* LISTAS */
.post-body ul,
.post-body ol {
  padding-left: 28px;
  margin-bottom: 28px;
}

.post-body li {
  margin-bottom: 12px;
  line-height: 1.75;
  color: #3a3a3a;
}

.post-body ul li::marker {
  color: var(--amarelo);
}

/* LINKS */
.post-body a {
  color: #8a6800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover {
  color: #111;
}

/* IMAGENS */
.post-body img {
  width: 100%;
  border-radius: 14px;
  margin: 36px 0;
  border: 1px solid #e8e8e5;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

/* BLOCO */
.post-body hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 50px 0;
}

/* ═══════════════════════════════════════════════════════
   CTA PROFISSIONAL
   ═══════════════════════════════════════════════════════ */

.cta-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 14px;
  padding: 26px;
  margin: 40px 0;
}

.cta-box.center {
  text-align: center;
}

.cta-button {
  background: #FFC107;
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .post-content {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .post-shell {
    margin-top: -20px;
    padding: 0 10px 60px;
  }

  .post-content {
    padding: 28px 20px;
    border-radius: 18px 18px 0 0;
  }

  .post-body {
    font-size: 16px;
    line-height: 1.8;
  }

  .post-body h2 {
    margin-top: 40px;
  }
}