/* Simple slider styles. Safe: only affects elements we add classes to. */

.photo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.photo-track {
  display: flex;
  transition: transform 1.2s ease; /* slow push left */
  will-change: transform;
}

.photo-track img {
  width: 100%;
  flex: 0 0 100%;
  display: block;
  object-fit: cover;
}