/* ===============================
   Magazine-style Blog Pages
   =============================== */

.blog-page {
  background: #ffffff;
  padding: 60px 0;
}

.blog-container {
  max-width: 860px;
  margin: auto;
  padding: 0 16px;
}

/* Hero Image */
.blog-hero {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

/* Page Title */
.blog-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1b1b3a;
  margin-bottom: 0.4rem;
}

.blog-subtitle {
  font-size: 1.05rem;
  color: #777;
  margin-bottom: 3rem;
}

/* Story Section */
.blog-section {
  margin-bottom: 3.5rem;
}

.blog-section h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.blog-section p {
  font-size: 1.04rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* Pull Quote */
.blog-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #333;
  border-left: 4px solid #FDBE33;
  padding-left: 16px;
  margin: 2rem 0;
}

/* Divider */
.blog-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 3.5rem 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .blog-hero {
    height: 260px;
    border-radius: 12px;
  }

  .blog-title {
    font-size: 1.8rem;
  }

  .blog-section p {
    font-size: 0.96rem;
  }
}
