/* Infinite Carousel Component Styles */
.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: transparent;
  padding: 20px 0;
  z-index: 3;
  height: 160px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .carousel-container {
    bottom: -4px;
    height: 180px;
    padding: 30px 0;
  }
}

@media (min-width: 1024px) {
  .carousel-container {
    bottom: -14px;
    height: 200px;
    padding: 40px 0;
  }
}

.carousel-row {
  display: flex;
  position: relative;
  z-index: 3;
}

.carousel-tile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: transparent;
}

.carousel-tile img {
  object-fit: contain;
}

/* Pause animation on hover */
.carousel-container:hover .carousel-row {
  animation-play-state: paused;
}
