/* ========================================
   Blog Post Page Styles
   ======================================== */

/* Post Hero */
.post-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #c5dfd0, #a3c8d8, #b8d8c5, #9dc5d6, #c0dbc8);
  background-size: 400% 400%;
  animation: heroShift 20s ease infinite;
}

.post-back {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.post-back:hover {
  color: var(--accent-deep);
}

.post-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 800px;
}

.post-title .st-bold {
  display: block;
}

.post-title .st-light {
  font-size: 0.75em;
}

.post-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-date::before,
.post-author::before,
.post-read::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  margin-right: 0.5rem;
}

.post-date::before {
  display: none;
}

/* Post Content */
.post-content {
  padding: 5rem 0;
  background: var(--white);
}

.post-container {
  max-width: 720px;
}

.post-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-light);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--heading-color);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.post-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-alt);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.post-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

.post-content ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.post-content ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-color);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

/* Pull Quote */
.post-pullquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--accent-deep);
  border-left: 4px solid var(--accent-light);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2.5rem 0;
}

/* Post CTA */
.post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--off-white);
  border-left: 4px solid var(--accent);
}

.post-cta p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Related Posts */
.post-related {
  padding: 5rem 0;
}

.post-related .blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Responsive */
@media (max-width: 768px) {
  .post-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .post-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .post-meta {
    gap: 1rem;
  }

  .post-content {
    padding: 3rem 0;
  }

  .post-pullquote {
    font-size: 1.15rem;
    padding-left: 1.2rem;
  }
}
