1. Mechanisme — kopieer 1-op-1, geen styling-keuzes
// Mechanisme: testimonial-marquee-editorial
import gsap from 'https://esm.sh/[email protected]';
// Pas toe op je eigen selector — geen stijlkeuzes hier.
if(window.matchMedia('(prefers-reduced-motion: reduce)').matches)return;
const MARQUEE_BASE=32, MARQUEE_MIN=10, FADE_DUR=1.4, FADE_EASE='expo.out';
let ls=window.scrollY;
document.querySelectorAll('.marquee-track').forEach(t=>{t.style.animationDuration=MARQUEE_BASE+'s';t.style.opacity='0';t.animate([{opacity:0},{opacity:1}],{duration:FADE_DUR*1000,easing:'cubic-bezier(0.16,1,0.3,1)',fill:'forwards'});});
window.addEventListener('scroll',()=>{const v=Math.abs(window.scrollY-ls);document.querySelectorAll('.marquee-track').forEach(t=>t.style.animationDuration=Math.max(MARQUEE_MIN,MARQUEE_BASE-v*0.3).toFixed(1)+'s');ls=window.scrollY;},{passive:true});