.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: scale(1.05);
}

.client-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-tag {
    padding: 12px 24px;
    background-color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
    font-size: 0.95rem;
}

.client-tag:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
