.vis-brand-wall {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 12px 12px;
}

.vis-brand-head {
  margin-bottom: 14px;
}

.vis-brand-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #0f172a;
}

.vis-brand-head p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #64748b;
}

.vis-brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.vis-brand-item {
  border: 1px solid #e6edf5;
  border-radius: 14px;
  background: #ffffff;
  min-height: 98px;
  padding: 10px 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vis-brand-item a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.vis-brand-item:hover {
  transform: translateY(-2px);
  border-color: #c6daee;
  box-shadow: 0 10px 24px rgba(2, 8, 20, 0.08);
}

.vis-brand-item img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.vis-brand-fallback {
  font-size: 14px;
  color: #334155;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

@media (max-width: 1100px) {
  .vis-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vis-brand-wall {
    padding: 12px 8px;
  }

  .vis-brand-head h2 {
    font-size: 20px;
  }

  .vis-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .vis-brand-item {
    min-height: 84px;
    border-radius: 10px;
    padding: 8px;
  }

  .vis-brand-item img {
    height: 44px;
  }
}

@media (max-width: 520px) {
  .vis-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
