.slider-container {
  width: 100%;
  max-width: calc((350px * 13) * 2);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  border-radius: 8px;
  flex-direction: column;
}

.slider-title {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.slider-track {
  gap: 24px;
  display: flex;
  width: calc(350px * 13);
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-352px * 6.5));
  }
}

.slide {
  position: relative;
  width: 350px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient masks for smooth transition effect */
.slider-container::before,
.slider-container::after {
  content: "";
  height: 100%;
  width: 100px;
  position: absolute;
  z-index: 2;
  top: 0;
}
