.headliner-logos {
  margin-top: 50px;
}
.headliner-logos__heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}
.headliner-logos__track-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.headliner-logos__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: logo-scroll 55s linear infinite;
}
.headliner-logos__track:hover {
  animation-play-state: paused;
}
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.headliner-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.headliner-logos__img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
