.masthead-news {
  position: relative;
  width: 100%;
  height: 80vh; /* penuh layar di desktop */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/background/news-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6); /* gelapin biar teks jelas */
  z-index: -1;
}

/* === RESPONSIVE SECTION === */

/* Tablet (lebar ≤ 992px) */
@media (max-width: 992px) {
  .masthead-news {
    height: 80vh; /* gak terlalu tinggi */
  }

  .masthead-heading {
    font-size: 3rem;
  }

  .masthead-subheading {
    font-size: 1.25rem;
  }
}

/* HP (lebar ≤ 576px) */
@media (max-width: 576px) {
  .masthead-news {
    height: 50vh; /* tinggi lebih kecil biar pas di layar HP */
  }

  .masthead-heading {
    font-size: 2rem;
  }

  .masthead-subheading {
    font-size: 1rem;
  }

  .bg-image {
    background-position: center top; /* biar fokus ke bagian atas gambar */
  }
}

/* =======================
        More News
   ======================= */


