/* ============================================================
   clients.html — page styles
   Client roster cards + static testimonial grid.
   ============================================================ */

/* ---------- Client cards ---------- */
.client-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
}
.client-card__name {
    font-weight: 600;
    font-size: 0.9846rem;
    letter-spacing: -0.01em;
    color: var(--text-strong);
    line-height: 1.35;
}
.client-card__region {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.client-card .pill {
    align-self: flex-start;
    margin-top: 12px;
}

/* closing line under the grid */
.clients-more {
    margin: 44px auto 0;
    text-align: center;
    color: var(--text-muted);
}

/* ---------- Static testimonial grid ---------- */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
}
.quotes-grid .quote-card__company {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 12px;
}
