.cg-trust-marquee {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 12px 0;
    position: relative;
}

.cg-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.cg-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cg-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 0 30px;
}

.cg-item img { height: 30px; width: auto; }
.cg-item span { font-size: 14px; font-weight: 500; }

.cg-divider {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #329BDD;
    border-radius: 2px;
    margin-left: 30px;
}

@keyframes cg-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--ig-marquee-width, 1000px))); }
}
 
.cg-track--animated {
    animation: cg-marquee-scroll var(--ig-marquee-duration, 28s) linear infinite;
    /* Start paused — JS/IntersectionObserver sets it to 'running' when visible */
    animation-play-state: paused;
    will-change: transform; /* tells browser to composite on GPU */
}
 
/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cg-track--animated {
        animation: none;
    }
}