/* Strip — one row that scrolls sideways. CSS alone scrolls; the script adds the arrows */
.bsl-iso.is-reel .bsl-iso-stage {
  display: flex;
  gap: var(--bsl-iso-gap, 10px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.bsl-iso.is-reel .bsl-iso-stage::-webkit-scrollbar {
  display: none;
}

.bsl-iso.is-reel .bsl-iso-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.bsl-iso.is-reel .bsl-iso-item img {
  width: auto;
  height: min(var(--bsl-iso-row-eff, 320px), 80vh);
  max-width: 90vw;
  object-fit: cover;
}

.bsl-iso.is-reel .bsl-iso-caption {
  max-width: 0;
  min-width: 100%;
}

.bsl-iso-reel-nav {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  margin-top: .5rem;
}

.bsl-iso-reel-nav[hidden] {
  display: none;
}

button.bsl-iso-reel-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bs-body-color, #212529);
  opacity: .55;
  cursor: pointer;
  transition: opacity .2s ease;
}

button.bsl-iso-reel-btn:hover {
  opacity: 1;
}

button.bsl-iso-reel-btn:disabled {
  opacity: .15;
  cursor: default;
}

button.bsl-iso-reel-btn svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
}
