/* post.css — Blog post pages */

.post-hero {
  padding: 140px 60px 72px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.post-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.post-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green-light);
}
.post-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.post-meta {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* POST BODY */
.post-body { max-width: 760px; margin: 0 auto; padding: 72px 60px 80px; }
.post-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--green-deep);
  margin: 52px 0 18px;
  line-height: 1.2;
}
.post-body h2 em { font-style: italic; color: var(--green-accent); }
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green-deep);
  margin: 36px 0 12px;
}
.post-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.post-body ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.post-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* POST END CTA */
.post-end-cta {
  background: var(--green-pale);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: 4px;
  padding: 44px;
  margin: 60px 0 0;
  text-align: center;
}
.post-end-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--green-deep);
  margin: 0 0 10px;
  line-height: 1.2;
}
.post-end-cta > p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  margin: 0 0 24px;
  line-height: 1.6;
}
.post-end-cta .btn { display: inline-block; }

.post-nav {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.back-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--green-accent); }

/* RELATED POSTS */
.related-posts {
  background: var(--off-white);
  padding: 60px;
  border-top: 1px solid var(--border);
}
.related-inner { max-width: 760px; margin: 0 auto; }
.related-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.related-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green-light);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.related-card {
  background: var(--white);
  padding: 32px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.related-card:hover { border-color: var(--green-light); transform: translateY(-2px); }
.related-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--green-deep);
}

@media (max-width: 768px) {
  .post-hero { padding: 110px 24px 56px; }
  .post-body { padding: 48px 24px 60px; }
  .post-end-cta { padding: 32px 24px; }
  .related-posts { padding: 48px 24px; }
  .related-grid { grid-template-columns: 1fr; }
}
