/* ============================================
   CLIENTS
   ============================================ */

.clients {
  background: var(--white);
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.clients__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.clients__row p {
  color: var(--grey-600);
  max-width: 380px;
  font-size: 15px;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}

.client-tile {
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background .3s;
}

.client-tile:hover { background: var(--white-dim); }

.client-tile span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--grey-400);
  transition: color .3s;
  text-align: center;
}

.client-tile:hover span { color: var(--navy-900); }

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