.hero-blog {
    width: 100%;
    height: 40vh; /* Reduced height for better responsiveness */
    background: url('../../img/2025img/blog/blogheader.webp') no-repeat center center/cover; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.hero-blog::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker for better text visibility */
}

/* HERO CONTENT */
.hero-content-blog {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1rem; /* Ensure some padding for smaller screens */
}

/* Main heading with adaptive font size */
.hero-content-blog h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem); /* Scales based on screen width */
    margin-top: 2rem;
    line-height: 1.2;
    color: #fff
}

  /* DESTINATIONS SECTION */
  .blogsection-2 {
    max-width: 1200px;
    margin: 4.5rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  /* RESPONSIVENESS */
  @media (max-width: 768px) {
    .hero-blog {
        height: 40vh; /* Reduce height for smaller screens */
    }

    .hero-content-blog h1 {
        font-size: 2.5rem; /* Further reduce font size on smaller devices */
    }

    .blogsection-2 {
        margin: 2rem auto;
      }

    .blogtext-p {
        font-size: 15px;
      }

}

@media (max-width: 480px) {
    .hero-blog {
        height: 35vh; /* Make hero even smaller on very small screens */
    }

    .hero-content-blog h1 {
        font-size: 2.2rem; /* Smaller heading font size for compact screens */
    }

}