#cast-swiper {
  padding-bottom: 1.5rem;
}

#cast-swiper .swiper-slide {
  width: 140px; /* show multiple slides at once */
}

#cast-swiper .actor-card { /* reuse your card look */
  background: #333;
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

#cast-swiper .actor-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.actor-card .name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.25;
  margin-top: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.actor-card .role {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper-scrollbar {
  position: relative !important;
  bottom: -22px !important;
  background: #656565 !important;
  cursor: pointer;
  height: 6px !important;
}

.swiper-scrollbar-drag {
  background: var(--accent-2) !important;
}

.name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .actor-card:hover > .name {
 text-overflow: visible;
 overflow: visible;
} */

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: var(--accent-2);
}

/* Mobile */
@media only screen and (max-width: 600px) {
  .swiper-scrollbar {
    bottom: -24px !important;
  }

  #cast-swiper {
    padding-bottom: 1.5rem;
  }
}