/* ============================================================
   BREEZE ACUPUNCTURE — Blog Post Styles
   ============================================================ */

.blog-post {
  margin-top: var(--header-h);
}

.blog-post-hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: var(--sage-light);
}

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

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--btn-green);
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 10px;
}

.back-link--bottom {
  margin-top: 16px;
}

.blog-post-body h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  font-style: normal;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.blog-post-meta {
  font-size: 13px;
  color: var(--forest);
  opacity: 0.6;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,46,26,0.12);
}

.blog-post-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  font-style: normal;
  color: var(--forest);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.blog-post-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.5;
  margin-top: 4px;
}

.blog-post-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--forest);
}

.blog-post-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.blog-post-body ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.blog-post-body ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--btn-green);
  flex-shrink: 0;
  margin-top: 8px;
}

.blog-post-body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .blog-post-body {
    padding: 40px 24px 64px;
  }

  .blog-post-hero img {
    height: 260px;
  }
}
/* ============================================================
   RELATED POSTS
   ============================================================ */

.related-posts {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,46,26,0.12);
}

.related-posts h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.related-posts-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.related-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.82;
}

.related-card .btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .related-posts-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .related-card {
    min-width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .related-posts-track::-webkit-scrollbar {
    height: 8px;
  }

  .related-posts-track::-webkit-scrollbar-thumb {
    background: rgba(26,46,26,0.18);
    border-radius: 999px;
  }
}