/*
 * "bekannt aus" logo ticker — paired with ticker.js. Replaces Framer's stripped Ticker
 * component with a CSS marquee. Scoped to the .ht-ticker class the JS adds, so
 * non-enhanced DOM is untouched.
 */
.ht-ticker {
  overflow: hidden !important;
  display: flex !important;
  align-items: center;
}
.ht-ticker-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: ht-ticker-scroll 32s linear infinite;
}
.ht-ticker-logo {
  height: 88px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}
.ht-ticker:hover .ht-ticker-track {
  animation-play-state: paused;
}
@keyframes ht-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ht-ticker-track {
    animation: none;
  }
}
