.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
    min-height: 120px;
}

.client-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.client-card-title {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}
