@keyframes scrollLeft{0%{transform:translateX(0)}to{transform:translateX(calc(-33.333% * 2))}}@keyframes scrollRight{0%{transform:translateX(calc(-33.333% * 2))}to{transform:translateX(0)}}.carousel-container{width:100%;overflow:hidden}.carousel-container:hover .carousel{animation-play-state:paused}.carousel{display:flex;gap:.25rem;animation-timing-function:linear;animation-iteration-count:infinite;animation-duration:35s;will-change:transform}.carousel-left{animation-name:scrollLeft}.carousel-right{animation-name:scrollRight}.carousel-item{min-width:13rem;flex-shrink:0;display:flex;align-items:center;justify-content:center}@media (max-width:1024px){.carousel{animation-duration:28s;gap:.75rem}.carousel-item{min-width:14rem}}@media (max-width:768px){.carousel{animation-duration:15s;gap:.5rem}.carousel-item{min-width:10rem}}@media (max-width:480px){.carousel{animation-duration:12s;gap:.25rem}.carousel-item{min-width:8rem}}@media (prefers-reduced-motion:reduce){.carousel{animation:none}}