.banner-slider {
  position: relative;
  width: 100%;
  height: 176px; /* sesuaikan tinggi */
  overflow: hidden;
  margin-top: 90px;
  justify-content: center;
  align-items: center;
}

.banner-slider .slide {
  position: absolute;
  width: 90%;
  height: 90%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  
}

.banner-slider .slide.active {
  opacity: 1;
  z-index: 1;
}


@media (max-width: 768px) {

  .banner-slider {
    height: auto; /* biar fleksibel */
    aspect-ratio: 16/9; /* atau proporsi 4/3, tergantung gambar */
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-slider .slide {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
        margin-top: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
    .banner-slider {
    margin-bottom: 0.2rem !important;
    }  
}