body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 2;
}

.logo-marquee::before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.logo-marquee::after {
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}

.logo-marquee-track {
  animation: logo-marquee-scroll 28s linear infinite;
  display: flex;
  gap: 24px;
  width: max-content;
}

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

.logo-marquee-item {
  align-items: center;
  background: #f8fff9;
  border: 1px solid rgb(209 250 229);
  border-radius: 16px;
  display: flex;
  flex: 0 0 180px;
  height: 92px;
  justify-content: center;
  padding: 18px;
}

.logo-marquee-item img {
  display: block;
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}
