/* 04 MARQUEE — native Divi modules, scoped under .cdt-marquee only.
   Solid background also set via Section design settings (unverified field
   shape — see hero notes); repeated here as guaranteed fallback. */
.cdt-marquee, .cdt-marquee * { box-sizing: border-box; }

.cdt-marquee { padding: 0 !important; margin: 0 !important; background: #5b39f2 !important; overflow: hidden; }
.cdt-marquee-col { padding: 0 !important; }
.cdt-marquee__track {
  display: block;
  white-space: nowrap;
  padding: 1rem 0 !important;
  margin: 0 !important;
  animation: cdt-marquee 22s linear infinite;
}
.cdt-marquee__track span { display: inline-block; color: #ffffff !important; font-weight: 700 !important; letter-spacing: .04em; font-size: .95rem !important; margin-right: 3rem; }
@keyframes cdt-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cdt-marquee__track { animation: none; } }
