.slideshow-detail {
  padding: 72px var(--container-padding);
  font-family: var(--font-body);
}

.slideshow-detail__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}

.slideshow-detail__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 12px;
}

.slideshow-detail__heading--18 {
  font-size: 18px;
}

.slideshow-detail__heading--36 {
  font-size: 36px;
}

.slideshow-detail__description {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
}

.slideshow-detail__stage {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.slideshow-detail__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px;
}

.slideshow-detail__playpause {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}

.slideshow-detail__playpause-icon {
  width: 10px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(#fff, #fff) left / 3px 100% no-repeat,
    linear-gradient(#fff, #fff) right / 3px 100% no-repeat;
}

.slideshow-detail__playpause--paused .slideshow-detail__playpause-icon {
  width: 0;
  height: 0;
  background: none;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.slideshow-detail__stage-nav {
  display: flex;
  gap: 6px;
}

.slideshow-detail__nav {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.slideshow-detail__nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slideshow-detail__stage-img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.slideshow-detail__filmstrip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 12px;
}

.slideshow-detail__thumb {
  flex: 0 0 auto;
  width: 70px;
  height: 47px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  background: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.slideshow-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-detail__thumb:hover {
  opacity: 0.85;
}

.slideshow-detail__thumb--active {
  opacity: 1;
  border-color: var(--color-brand-orange);
}

@media (max-width: 767px) {
  .slideshow-detail {
    padding: 56px var(--container-padding);
  }
}
