.brands-logo-scroll {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 16px 100px;
  text-align: center;
}

/* Heading */
.brands-title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* Description */
.brands-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #444;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* Scroll Area */
.brands-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}
/* ==============================
   ENABLE COLOR LOGO SCROLL
   (override grayscale safely)
============================== */
.brand-logo img {
  filter: none !important;
  opacity: 1 !important;
}

/* Track */
.brands-scroll-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: brandsScroll 25s linear infinite;
}

/* Logo */
.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
}

/* Animation */
@keyframes brandsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brands-title {
    font-size: 28px;
  }

  .brands-desc {
    font-size: 16px;
  }

  .brands-scroll-track {
    gap: 40px;
  }

  .brand-logo img {
    height: 40px;
  }
}
