/* =============================
   BLOG POST PAGE STYLES
   ============================= */

.recap-post-section {
  background: var(--white);
  margin-bottom: 4rem;
}

.recap-post-header-bg {
  background: var(--secondary-color);
  border-radius: 16px;
  padding: 2.5rem 2rem 1.5rem 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.recap-post-header-bg h1 {
  font-family: "Cormorant", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.recap-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  font-size: 1.08rem;
  font-family: "Work Sans", sans-serif;
  color: var(--dark-color);
  opacity: 1;
  font-weight: 400;
}
.recap-post-meta span {
  color: var(--dark-color);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}
.recap-post-content {
  font-family: "Work Sans", sans-serif;
  color: var(--dark-color);
  font-size: 1.13rem;
  line-height: 1.7;
}
.recap-post-content h2 {
  font-size: 1.45rem;
}
.recap-post-content h3 {
  font-size: 1.22rem;
}
.recap-post-content h4,
.recap-post-content h5,
.recap-post-content h6 {
  font-size: 1.08rem;
}
.recap-post-content h2,
.recap-post-content h3,
.recap-post-content h4,
.recap-post-content h5,
.recap-post-content h6 {
  font-family: "Work Sans", sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
.recap-post-content strong,
.recap-post-content b {
  font-weight: 600;
}
@media (max-width: 768px) {
  .recap-post-header-bg {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .recap-post-header-bg h1 {
    font-size: 1.5rem;
  }
  .recap-post-meta {
    font-size: 0.98rem;
    gap: 0.7rem;
  }
  .recap-post-content {
    font-size: 1rem;
  }
}
