/* ==========================================================================
   Trusted By Leading Customers Section
   ========================================================================== */
.clients__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.client-logo {
  width: 144px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  border: 1px dashed var(--color-line-200);
  border-radius: var(--radius-sm);
  color: var(--color-ink-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.client-logo:hover {
  border-color: var(--color-green-500);
  border-style: solid;
  color: var(--color-green-700);
}
