.photo-band {
  width: 100%;
  overflow: hidden;
  margin: 104px 0 104px 0;
  transform: rotate(-1deg) scaleX(1.05);
}

.photo-band__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: photo-scroll 30s linear infinite;
}
/*
.photo-band:hover .photo-band__track {
  animation-play-state: paused;
}
*/
.photo-band__track img {
  height: 220px;
  width: auto;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes photo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 800px) {
  .photo-band__track img {
    height: 160px;
  }
  .photo-band {
    width: 100vw;
    margin: 80px 0 80px -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-band__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 16px;
  }
}