/* ═══════════════════════════════════════
   BLOG POST PAGE — additional styles
   ═══════════════════════════════════════ */

.post-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: 0;
}

.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,19,12,0.45) 0%,
    rgba(14,19,12,0.15) 50%,
    rgba(240,230,211,0.0) 100%
  );
}

.post-hero-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  right: 5%;
}

.post-hero-meta .section-label { margin-bottom: 0.6rem; }

.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.1;
  max-width: 800px;
}

/* Post body */
.post-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.post-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(122,107,88,0.2);
  margin-bottom: 3rem;
  font-size: 0.82rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-byline span { display: flex; align-items: center; gap: 0.4rem; }

.post-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--forest);
  margin: 3rem 0 1rem;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--moss);
  margin: 2rem 0 0.8rem;
}

.post-content p {
  font-size: 1.05rem;
  color: #3a3530;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.post-content img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2.5rem 0;
}

.post-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2.5rem 0;
  padding: 1rem 0 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--moss);
  line-height: 1.6;
}

.post-content ul, .post-content ol {
  margin: 1.2rem 0 1.8rem 1.5rem;
}

.post-content li {
  font-size: 1rem;
  color: #3a3530;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.post-content ul li::marker { color: var(--gold); }

.post-tip {
  background: rgba(90,122,72,0.08);
  border: 1px solid rgba(90,122,72,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.post-tip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  display: block;
  margin-bottom: 0.6rem;
}

.post-tip p { margin: 0; font-size: 0.95rem; }

/* Post footer / CTA */
.post-cta {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.post-cta h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.post-cta p {
  color: rgba(240,230,211,0.7);
  margin-bottom: 1.8rem;
}

/* Back to blog */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.post-back:hover { color: var(--forest); }

/* Related posts */
.related-posts {
  padding: 5rem 5%;
  background: var(--cream);
  border-top: 1px solid rgba(122,107,88,0.15);
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .post-hero { height: 45vh; min-height: 300px; }
  .post-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .post-container { padding: 3rem 5%; }
  .post-content img { height: 220px; }
  .post-cta { padding: 2rem 1.5rem; }
  .post-content blockquote { font-size: 1.15rem; padding-left: 1.2rem; }
}

@media (max-width: 480px) {
  .post-hero { min-height: 260px; }
  .post-content h2 { font-size: 1.5rem; }
  .post-content img { height: 180px; }
  .post-byline { font-size: 0.75rem; gap: 0.8rem; }
}
