/* ================= BLOG DETAIL HERO ================= */

.blog-detail-hero {
  padding: 140px 0 70px; /* floating navbar safe */
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.blog-detail-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.25;
}

/* ================= BLOG CONTENT UPGRADE ================= */

.blog-feature-img {
  border-radius: 18px;
  margin-bottom: 32px;
  width: 100%;
  height: auto;
}

.blog-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 32px;
  color: #444;
}

.blog-section {
  margin-top: 40px;
}

.blog-section h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

/* Image + text layout */
.blog-img-text {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.blog-img-text.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.blog-img-text img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Image grid */
.blog-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.blog-img-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Highlight box */
.blog-highlight {
  background: rgba(255, 193, 7, 0.08);
  border-left: 4px solid #ffc107;
  padding: 18px 20px;
  border-radius: 10px;
  margin: 40px 0;
  font-size: 0.95rem;
}

/* Quote */
.blog-quote {
  margin: 50px 0;
  padding-left: 20px;
  border-left: 4px solid #ffc107;
  font-style: italic;
  font-size: 1.05rem;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-img-text,
  .blog-img-text.reverse {
    grid-template-columns: 1fr;
  }

  .blog-img-grid {
    grid-template-columns: 1fr;
  }
}
