/* ================================
   PUBLICATION SWIPER – SLIDE EFFECT
   ================================ */

.publication-prev {
  width: 59px;
  height: 59px;
  background-image: url("../img/arrow-publik-prev.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.publication-next {
  width: 59px;
  height: 59px;
  background-image: url("../img/arrow-publik-next.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.publication-swiper .swiper-slide {
  transform: scale(0.95);
  filter: blur(4.56px);
  box-shadow: 0px 1.64px 17.27px -5.76px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.publication-swiper .swiper-slide-prev {
  transform: translateX(300px) scale(0.95);
  filter: blur(2.85px);
  z-index: 2;
}

.publication-swiper .swiper-slide-next {
  transform: translateX(-300px) scale(0.95);
  filter: blur(2.85px);
  z-index: 2;
}

.publication-swiper .swiper-slide-active {
  transform: scale(1);
  filter: blur(0);
  z-index: 10;
}

/* ================================
   NAVIGATION BUTTON (BEHAVIOR ONLY)
   ================================ */

/* Hilangkan icon default Swiper */
.publication-swiper .swiper-button-prev::after,
.publication-swiper .swiper-button-next::after {
  display: none !important;
}

/* Hover effect */
.publication-swiper .swiper-button-prev,
.publication-swiper .swiper-button-next {
  transition: opacity 0.3s ease;
}

.publication-swiper .swiper-button-prev:hover,
.publication-swiper .swiper-button-next:hover {
  opacity: 0.7;
}

/* Hide navigation on mobile */
@media (max-width: 640px) {
  .publication-swiper .swiper-button-prev,
  .publication-swiper .swiper-button-next {
    display: none !important;
  }
}

/* ================================
   CUSTOM PAGINATION
   ================================ */

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  display: inline-block;
  width: 16px;
  height: 7px;
  background: #ffffff;
  opacity: 0.6;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.hero-dot--active {
  width: 61px;
  opacity: 1;
}
