/* ── BLOG-POST.CSS — página individual de artigo ── */

/* ── HERO ─────────────────────────────────────── */
.post-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
}
.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(79,44,29,0.1) 0%, rgba(79,44,29,0.7) 100%);
}
.post-hero-content {
  position: relative;
  z-index: 2;
}
.post-hero-meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.post-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  color: var(--white);
  max-width: 820px;
  text-wrap: balance;
  font-synthesis: none;
  font-feature-settings: "calt" 0, "dlig" 0, "swsh" 0, "hist" 0, "ss01" 0, "ss02" 0, "ss03" 0;
}

/* ── LAYOUT PRINCIPAL ─────────────────────────── */
.post-body-section {
  padding: 100px 0 140px;
  background: var(--white);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

/* ── CONTEÚDO DO ARTIGO ──────────────────────── */
.post-content {
  max-width: 760px;
}
.post-lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--brown-deep);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 56px;
}
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--brown-deep);
  margin: 48px 0 20px;
  line-height: 1.3;
  font-feature-settings: "calt" 0, "dlig" 0, "swsh" 0;
}
.post-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a3a34;
  margin-bottom: 20px;
}
.post-list {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #4a3a34;
  padding-left: 20px;
  position: relative;
}
.post-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── CTA BOX ──────────────────────────────────── */
.post-cta-box {
  margin-top: 64px;
  background: var(--cream);
  padding: 48px 40px;
  border-left: 3px solid var(--accent);
}
.post-cta-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.post-cta-box h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 12px;
  font-feature-settings: "calt" 0, "dlig" 0, "swsh" 0;
}
.post-cta-box > p {
  font-size: 15px;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

/* ── SIDEBAR ──────────────────────────────────── */
.post-sidebar {
  position: sticky;
  top: 120px;
}
.post-author-card {
  background: var(--cream);
  padding: 32px 28px;
  border-top: 3px solid var(--accent);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .post-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .post-hero { height: 55vh; padding-bottom: 56px; }
}
