/* ============================================================
   TAKEAWAY — Clients (Our Experience)
   ============================================================ */

#clienti {
  background: var(--c-bg);
  padding: 0 0 var(--sp-7xl);
}

.clients-wrapper {
  max-width: 1728px;
  margin: 0 auto;
  padding: var(--sp-4xl) var(--sp-xl) 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--sp-xl);
  align-items: start;
}

.clients-meta {
  grid-column: 1 / 5;
  display: flex;
  flex-direction: column;
  padding-top: 6px;
  text-align: center;
}

.clients-label {
  font-family: var(--font);
  font-size: var(--text-body-md);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-label);
  line-height: var(--lh-body-sm);
}

#col-left {
  grid-column: 5 / 9;
  list-style: none;
}

#col-right {
  grid-column: 9 / 13;
  list-style: none;
}

.clients-cols-mobile {
  display: contents;
}

.clients-col li {
  overflow: hidden;
  padding: 3px 0;
}

.clients-col li span {
  display: block;
  font-family: var(--font);
  font-size: var(--text-h4);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-h4);
  color: var(--c-text);
  will-change: transform, filter;
}

/* ── Mobile ── */
@media (max-width: 768px) {

  #clienti {
    padding-bottom: 112px;
  }

  #col-left,
  #col-right {
    grid-column: unset;
  }

  .clients-wrapper {
    padding: 112px 32px 0;
  }

  .clients-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
  }

  .clients-meta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .clients-label {
    text-align: center;
    width: 100%;
  }

  /* Mobile: colonne affiancate diventano lista unica verticale centrata
     Entrambe le colonne sono visibili ma impilate e centrate */
  .clients-cols-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  #col-left,
  #col-right {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  #col-left li,
  #col-right li {
    text-align: center;
  }

  .clients-col li span {
    font-size: var(--text-h4);
    line-height: var(--lh-h4);
  }
}