.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  align-items: center;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 auto;
  height: 100%;
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

.carousel-item.center {
  transform: scale(1);
  opacity: 1;
}