#brands .section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--black);
  margin: 25px auto 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
  align-items: center;
}

.brand-item {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 150px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

.no-filter {
  filter: none;
}