/**
 * WeFrame Shared CSS v6.0
 * Keyframes + structural rules shared across all element instances.
 * Loaded once, cached by browser — replaces per-instance @keyframes.
 */

/* ── Infinite scroll (logo-slider, image-slider, testimonial-slider, marquee-text) ── */
@keyframes wf-scroll-fwd {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes wf-scroll-rev {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
