/* ==========================================================================
   Continuous Scroll Carousel - eDesign Space

   Fixes the "pause, then jump, then pause" look of Elementor's Image
   Carousel widget (built on Swiper) by forcing a linear easing curve
   instead of Swiper/the browser's default "ease" curve. "Ease" decelerates
   to a full stop at the end of every slide transition, and combined with
   the gap before the next transition starts, that stop reads as a pause.
   Removing the near-zero delay between transitions is handled in
   continuous-carousel.js; this file only removes the deceleration.

   Usage: add the CSS class "continuous-scroll-carousel" to the Image
   Carousel widget (Advanced tab -> CSS Classes).
   ========================================================================== */

.continuous-scroll-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}
