/* ============================================================
   BLOG POST STYLES
   ============================================================ */
.post-hero {
  position: relative;
  min-height: 64vh;
  padding: 180px 40px 80px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: white;
}
.post-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.post-hero .bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
}
.post-hero .container { position: relative; z-index: 2; max-width: 880px; }
.post-hero .meta {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 16px;
}
.post-hero h1 {
  color: white;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; margin-bottom: 24px;
  max-width: 800px;
}
.post-hero .author-row {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.post-hero .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

.post-body {
  background: var(--white);
  padding: 80px 40px 120px;
}
.post-body .container { max-width: 740px; margin: 0 auto; }
.post-body p {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.85;
  color: var(--ink);
  margin-bottom: 24px;
}
.post-body p.lead-quote {
  font-style: italic;
  font-size: 22px;
  color: var(--earth);
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 32px 0;
}
.post-body h2 {
  font-size: 30px;
  margin-top: 56px;
  margin-bottom: 20px;
}
.post-body h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.post-body blockquote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px; line-height: 1.5;
  color: var(--earth);
  margin: 48px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.post-body ul, .post-body ol {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.8;
  margin: 0 0 28px 24px;
  color: var(--ink);
}
.post-body li { margin-bottom: 8px; }
.post-body img.inline-img {
  width: 100%; border-radius: 12px;
  margin: 40px 0;
  aspect-ratio: 16/9; object-fit: cover;
}
.post-body figure { margin: 40px 0; }
.post-body figure img { width: 100%; border-radius: 12px; }
.post-body figcaption {
  margin-top: 12px;
  font-size: 13px; color: var(--muted);
  font-style: italic;
  text-align: center;
}
.post-end {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.post-end a { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.related {
  background: var(--cream);
  padding: 80px 40px;
}
.related .container { max-width: 1100px; margin: 0 auto; }
.related h2 { font-size: 32px; margin-bottom: 32px; }
.related-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.related-card {
  display: flex; gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .2s;
}
.related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,24,18,0.08); }
.related-card .thumb {
  width: 120px; flex-shrink: 0;
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  border-radius: 8px;
}
.related-card h4 {
  font-size: 16px; margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.related-card .meta {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand);
}

@media (max-width: 800px) {
  .post-hero { padding: 140px 20px 60px; min-height: 50vh; }
  .post-body { padding: 56px 20px 80px; }
  .post-body p { font-size: 17px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { flex-direction: column; }
  .related-card .thumb { width: 100%; aspect-ratio: 16/9; }
}
