.bns-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.bns-slider {
  display: flex;
  gap: 30px;
  animation: bns-marquee 10s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.bns-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.bns-item a {
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes bns-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
