/* Clients Grid — текст-плитки клієнтів */
.vb-clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.vb-clients__tile {
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.30);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 0 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vb-clients__tile:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.20);
}

.vb-clients__more {
  margin-top: 24px;
  text-align: center;
}

.vb-clients__more a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.vb-clients__more a:hover { color: #fff; }

@media (max-width: 1023px) {
  .vb-clients__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 639px) {
  .vb-clients__grid { grid-template-columns: repeat(2, 1fr); }
}
