/* ── Logo Ticker ──────────────────────────────────────────────────────────── */

.dsa-logo-ticker {
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.dsa-logo-ticker__inner {
  display: flex;
  width: max-content;
  align-items: center;
  animation: dsa-logo-ticker-scroll linear infinite;
  /* duration and gap are set inline from widget settings */
}

.dsa-logo-ticker__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.dsa-logo-ticker__item img {
  display: block;
  width: auto;
  object-fit: contain;
}

@keyframes dsa-logo-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
