.artica-carousel-container {
  overflow: hidden;
  position: relative;
}

.artica-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-out;
}

.artica-carousel-item {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Fade effects in borders */
.artica-carousel-container::before,
.artica-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.artica-carousel-container::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #f4f4f4 0%,
    rgba(245, 245, 245, 0) 100%
  );
}

.artica-carousel-container::after {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 245, 245, 0) 0%,
    #f4f4f4 100%
  );
}

.artica-carousel-container--neve::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--wp--preset--color--neve) 0%,
    rgba(245, 245, 245, 0) 100%
  );
}

.artica-carousel-container--neve::after {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 245, 245, 0) 0%,
    var(--wp--preset--color--neve) 100%
  );
}
