/* mtz. website — velocity-coupled marquee divider (driven by motion.js).
   Words from content.json (window.mtzContent.marquee); *palavra* = serif. */
function Marquee() {
  const words = mtzContent.marquee || [];
  const run = [...words, ...words];
  return (
    <section className="mtz-marquee" aria-hidden="true">
      <div className="mtz-marquee__track">
        {run.map((w, i) => (
          <span className="mtz-marquee__item" key={i}>{rt(w)}<span className="mtz-marquee__sep">{'✳︎'}</span></span>
        ))}
      </div>
    </section>
  );
}
window.Marquee = Marquee;
