.lpt-wrap{width:100%; color:#fff}
.lpt-viewport{position:relative;overflow:hidden;width:100%}
.lpt-track{display:flex;gap:2rem;align-items:center;justify-content: center;flex-wrap: wrap;white-space: normal;will-change:transform;text-align: center}
.lpt-content{display:inline-flex;gap:.5rem;align-items:center;justify-content: center;flex-wrap: wrap}
.lpt-label{font-weight:600}
.lpt-title{text-decoration:none}
.lpt-track:hover{animation-play-state:paused}

/* Marquee scroll (leftward) */
.lpt-animate-marquee{animation: lpt-marquee var(--lpt-speed, 20s) linear infinite}
@keyframes lpt-marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* Bounce-in once and stay */
.lpt-animate-bounce {animation: lpt-bounce-in var(--lpt-speed, 1s) ease-out 0s 1 forwards;}
