.gallery-strip {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 18px;
  touch-action: pan-y;
  cursor: grab;
}

.gallery-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

.gallery-track img {
  height: var(--strip-height, 720px);
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: block;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.gallery-strip.is-dragging {
  cursor: grabbing;
}

.gallery-arrow {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  cursor: pointer;
}

.gallery-arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .gallery-track img {
    height: var(--strip-height, 360px);
  }

  .gallery-arrow {
    padding: 6px 12px;
    letter-spacing: 0.18em;
  }
}
