.cast-controls {
  display: flex;
  gap: 10px;
}

.cast-nav-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  transition: var(--trans);
}

.cast-nav-btn:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.35);
}

.cast-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 8px;
  scrollbar-width: none;
}

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

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 640px;
  }

  .hero-content {
    padding-top: 152px;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-title {
    max-width: none;
  }

  .cast-controls {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 36px;
  }

  .hero-thumb-row {
    margin-top: 20px;
  }

  .detail-backdrop {
    height: 340px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 560px;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}
