.pp-banner-slider {
  width: 100%;
  padding: 16px 12px;
  background: #050505;
}

.pp-banner-container {
  position: relative;
  max-width: 1160px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
}

.pp-banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.pp-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.pp-banner-slide.active {
  opacity: 1;
  visibility: visible;
}

.pp-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ARROW */
.pp-banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 34px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(0,0,0,0.25);
}

.pp-banner-arrow:hover {
  background: rgba(0,0,0,0.55);
}

.pp-banner-arrow.prev {
  left: 28px;
}

.pp-banner-arrow.next {
  right: 28px;
}

/* DOTS */
.pp-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 6;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
}

.pp-banner-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.pp-banner-dots span.active {
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pp-banner-container {
    height: 190px;
  }

  .pp-banner-arrow {
    width: 30px;
    height: 44px;
    font-size: 20px;
  }

  .pp-banner-arrow.prev {
    left: 10px;
  }

  .pp-banner-arrow.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .pp-banner-slider {
    padding: 10px 8px;
  }

  .pp-banner-container {
    height: 145px;
    border-radius: 6px;
  }
}