/* Corpoth supplemental styles */

/* ---- References marquee ---- */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.refs-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.refs-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .refs-track {
    animation: none;
  }
}

/* ---- Ref logo pill ---- */
.ref-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 64px;
  margin: 0 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29, 79, 163, 0.06);
  padding: 10px 20px;
}

.ref-logo-pill img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s;
}

.ref-logo-pill:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Fallback text when image missing */
.ref-logo-pill span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #43474f;
  text-align: center;
}
