/* =============================================
   POST LAYOUT
   ============================================= */

.post-hero {
  background: var(--forest);
  padding: 56px 0 56px;
}
.post-hero-inner { max-width: 780px; }
.back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #6B8F7A;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--forest-green); }
.post-hero .post-tag { margin-bottom: 16px; }
.post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--paper);
  margin-bottom: 20px;
  max-width: 720px;
}
.post-lead {
  font-size: 18px;
  color: #B8C4BE;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.post-meta-row {
  display: flex;
  gap: 20px;
  align-items: center;
}
.post-meta {
  font-size: 13px;
  color: #4A5E52;
  font-weight: 500;
}

/* =============================================
   POST BODY + SIDEBAR
   ============================================= */
.post-body-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 80px;
}

.post-body {
  min-width: 0;
}

.post-body p {
  font-size: 17px;
  line-height: 1.75;
  color: #2A2420;
  margin-bottom: 24px;
}

.post-body h2 {
  font-size: 1.5rem;
  margin: 48px 0 18px;
  padding-top: 48px;
  border-top: 1px solid var(--divider);
  color: var(--ink);
}

.post-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.post-body strong {
  font-weight: 600;
  color: var(--ink);
}

.post-body em {
  font-style: italic;
}

.post-body blockquote {
  border-left: 3px solid var(--forest-green);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
}
.post-body blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
}

/* =============================================
   SIDEBAR
   ============================================= */
.post-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.post-sidebar .ad-slot {
  margin: 0;
}
.post-sidebar .ad-sidebar {
  min-height: 280px;
  max-width: 100%;
}

.sidebar-cta {
  background: var(--forest);
  border-radius: 6px;
  padding: 24px;
}
.sidebar-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 14px;
  color: #B8C4BE;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sidebar-related {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
}
.related-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-green);
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
  transition: color 0.15s;
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--ember); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 860px) {
  .post-body-wrap {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }
}
