/* Hero carousel slide transitions */
.hero-carousel-slide {
  transition: opacity 0.6s ease-in-out;
}

/* Marquee for partner strips, if used elsewhere */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* Honour user motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-marquee,
  .hero-carousel-slide {
    animation: none;
    transition: none;
  }
}
