/**
 * Reviews Ticker Speed Fix
 * Height-based media queries for better speed control
 * Ultra slow on all devices for readability
 */

/* Desktop: Tall screens (min-height: 1189px) - ULTRA SLOW */
@media (min-height: 1189px) {
    .appwt-reviews-ticker {
        animation: scrollTicker 1200s linear infinite !important;
        animation-duration: 1200s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }
}

/* Mobile/Tablet: Short screens (max-height: 1188px) - ULTRA SLOW */
@media (max-height: 1188px) {
    .appwt-reviews-ticker {
        animation: scrollTicker 1200s linear infinite !important;
        animation-duration: 1200s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }
}
