.carousel-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: inline-flex;
  align-items: center;
  transition: transform 0s linear;
  will-change: transform;
  height: 100%;
}

.carousel-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 1rem;
  height: 100%;
  position: relative;
}

/* Bordino verticale tra le slide */
.carousel-slide::after {
  content: "";
  display: block;
  width: 2px;
  height: 50%;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 25%;
}

.carousel-slide:last-child::after {
  display: none; /* Nascondi il bordino nell'ultima slide duplicata */
}
