/* Row harus stretch */
.row-banner {
  display: flex;
  flex-wrap: wrap;
}

/* ===== CAROUSEL ===== */
.banner-carousel {
  height: 100%;
}

.banner-carousel .carousel-inner,
.banner-carousel .carousel-item {
  height: 100%;
}

/* Gambar carousel */
.banner-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MINI BANNER ===== */
.banner-mini {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.banner-mini .mini-item {
  flex: 1;
}

.banner-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {
  .row-banner {
    display: block;
  }

  .banner-carousel,
  .banner-carousel .carousel-inner,
  .banner-carousel .carousel-item {
    height: auto;
  }

  .banner-carousel img {
    height: auto;
  }
}