/* Easing hanya untuk opacity saat mode fade */
#home-banner .swiper-fade .swiper-slide {
  transition-property: opacity !important;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important; /* easeOut-ish */
}

/* (Opsional) animasi caption agar terasa lebih lembut */
#home-banner .swiper-slide .fade-child {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 600ms ease 180ms, transform 600ms ease 180ms;
}
#home-banner .swiper-slide.swiper-slide-active .fade-child {
  opacity: 1;
  transform: none;
}
