.homelates-scrolling-wrapper {
  overflow-x: hidden;
  width: 100%;
  cursor: grab;
}

.animate-scroll-x {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll-left 30s linear infinite;
}

.animate-scroll-x > * {
  flex: 0 0 auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Cursor feedback */
/* .homelates-scrolling-wrapper:active {
  cursor: grabbing;
}

#homelatesscrollWrapper {
    overflow: hidden;
}

#homelatesscrollContent {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */
