/* === Brand logo grid wrapper === */
.brand-logo-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px;
}

/* Logo grid (continuous flow) */
.brand-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin: 24px 0;
}

/* Logo container */
.brand-logo-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* Responsive logos */
.brand-logo-item img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

/* Tablet: auto-flow (no gaps) */
@media (max-width: 900px) {
  .brand-logo-row {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .brand-logo-item img {
    m
