body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

.lerp-wrapper {
  background: #000;
  color: white;
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}


.lerp-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 60px;
}

.lerp-container {
  display: flex;
  justify-content: center; /* ✅ centra le immagini */
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  padding: 0 5vw;
  scroll-snap-type: x mandatory;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
   justify-content: flex-start; /* default */
}



.delayed-section {
  flex: 0 0 auto;
  width: 80vw;
  max-width: 400px;
  scroll-snap-align: center;
  height: auto;
  overflow: hidden;
}

.innerContainer {
  will-change: transform;
  height: 100%;
}

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

@media (min-width: 768px) {
  .delayed-section {
    width: 300px;
  }
}
@media (min-width: 1024px) {
  .lerp-container {
    justify-content: center;
  }
}