/* BLOG HERO */
.blog-hero {
  position: relative;
  height: 45vh; /* 👈 choti height */
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/blog-hero.jpg") center/cover no-repeat;
  overflow: hidden;
  padding-top: 50px;
}

/* Dark overlay */
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
}

/* Content */
.blog-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.blog-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* =========================
   BLOG PAGE LIGHT THEME
========================= */

.blog-section-light {
  background: #ffffff;
  padding: 60px 0;
}

/* Grid same reh sakta hai */
.blog-section-light .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-section-light .blog-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Hover */
.blog-section-light .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Title */
.blog-section-light .blog-card-title {
  color: #111827;
}

/* Text */
.blog-section-light .blog-card-text {
  color: #4b5563;
}

/* Tag */
.blog-section-light .blog-tag {
  background: #f3f4f6;
  color: #111;
  border: none;
}

/* Meta */
.blog-section-light .blog-meta {
  color: #6b7280;
}

/* Read More */
.blog-section-light .blog-read-more {
  color: var(--color-secondary);
}

.blog-section-light .blog-read-more:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-section-light .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-section-light .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* Blog Modal Styling */
.blog-modal {
  border-radius: 18px;
  padding: 10px;
}

.blog-modal .modal-header {
  border-bottom: 1px solid #eee;
}

.blog-modal .modal-title {
  font-weight: 700;
}

.blog-modal .modal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.blog-highlights{
  font-weight: 600;
}