

/* Hide the section inside the span with the specific class */
span .bg-slate-50 {
  display: none;
}

#factOfDay{
    font-weight: 550;
}


.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-content {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 1rem;
}

/* Smooth infinite animation */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee-scroll 25s linear infinite;
}

/* Pause on hover (UX improvement) */
.marquee-track:hover {
  animation-play-state: paused;
}

/* Mobile safety */
@media (max-width: 640px) {
  .marquee-track {
    animation-duration: 18s;
  }
}

footer * {
  overflow-wrap: anywhere;
}