.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
	margin-top:15px;
}

/* TRACK */
.carousel .track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* ITEM */
.carousel .item {
  flex: 0 0 auto;
  padding: 6px;
}

.carousel .item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .carousel .item img {
    width: 120px;
    height: 120px;
  }
}

/* TABLET */
@media (min-width: 768px) {
  .carousel .item img {
    width: 160px;
    height: 160px;
  }
}

/* DESKTOP (~7 visible depending on screen width) */
@media (min-width: 1200px) {
  .carousel .item img {
    width: 190px;
    height: 190px;
  }
}

/* ARROWS */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }