.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

body { -webkit-font-smoothing: antialiased; }

/* Grey placeholder background for content images while they load.
   The site logo is transparent, so it must NEVER get a background. */
img { background: #e5e7eb; }
img.site-logo, header img { background: transparent !important; }

/* ===== Headlines marquee ===== */
.marquee-track {
  animation-name: marquee-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Pause on hover for readability */
.marquee-viewport:hover .marquee-track { animation-play-state: paused; }
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
