/* =========================
   CAST SLIDER
========================= */

.cast-photo-slider {
  margin-top: 32px;
  width: 100%;
  background: rgba(82,73,86,.6);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.cast-photo-slider::-webkit-scrollbar {
  display: none;
}


.cast-viewport {
  padding: 20px;
  width: 100%;
  max-height: 400px;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  z-index: 10;
  background-color: #000000;
}

.cast-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
}

.cast-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  color: white;
  border: none;
  font-size: 2rem;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cast-prev {
  left: -10px;
}

.cast-next {
  right: -10px;
}

.cast-caption {
  padding: 1rem;
  color:#000000;
  text-align: center;
  font-size: 1rem;
  opacity: 0.9;
  z-index: 1;
}

.cast-caption h4 {
  margin-bottom: .5rem;
}

/* =========================
   cast THUMB STRIP
========================= */
.cast-thumbs {
  padding: 10px;
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  background-color: #000000;
}

.cast-thumbs::-webkit-scrollbar {
  display: none;
}

.cast-thumb {
  width: 120px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.60;
  transition: opacity .2s ease;
  background-color: #000000;
}

.cast-thumb:hover {
  opacity: .75;
}

.cast-thumb.active {
  opacity: 1;
  border: 3px solid #ffffff;
}