/* Brand Logo Slider Widget Styles
 * 
 * Styles for infinite continuous scrolling brand logo slider with pill containers.
 */

/* Widget Container */
.brand-logo-slider-widget {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slider Container */
.brand-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slider Wrapper - Animated Container */
.brand-logo-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: brandLogoScroll infinite linear;
    animation-duration: var(--animation-duration, 40s);
    will-change: transform;
}

/* Individual Slide */
.brand-logo-slide {
    flex-shrink: 0;
    width: 200px;
    height: 80px;
}

/* Logo Pill Container */
.brand-logo-pill {
    width: 200px;
    height: 80px;
    background-color: var(--blue300); /* blue-300 */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

/* Logo Image */
.brand-logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Logo Link */
.brand-logo-pill a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Continuous Scroll Animation */
@keyframes brandLogoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles - Tablet */
@media screen and (max-width: 1024px) {
    .brand-logo-slide {
        width: 180px;
        height: 72px;
    }

    .brand-logo-pill {
        width: 180px;
        height: 72px;
    }

    .brand-logo-slider-wrapper {
        gap: 24px;
    }
}

/* Responsive Styles - Mobile */
@media screen and (max-width: 767px) {
    .brand-logo-slide {
        width: 160px;
        height: 64px;
    }

    .brand-logo-pill {
        width: 160px;
        height: 64px;
    }

    .brand-logo-slider-wrapper {
        gap: 16px;
    }
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .brand-logo-slider-wrapper {
        animation: none;
    }
}





