/* ─────────────────────────────────────────
   BLOCK: CLIENTS
───────────────────────────────────────── */
.clients {
  padding: 30px 0;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

/* ─────────────────────────────────────────
   BLOCK: CLIENT-ITEM
───────────────────────────────────────── */
.client-item {
  padding: 10px 10px;
  text-align: center;
}
.client-item:last-child { border-right: none; }

.client-item__logo {
  width: 225px;
  height: auto;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}
.client-item__name {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.4;
}
