.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.clients-section {
    margin-top: 40px;
}

.clients-separator {
    background-color: #e6e6e6;
    height: 2px;
    width: 100%;
}

.clients-section .clients-separator:first-child {
    margin-bottom: 24px;
}

.clients-section .clients-separator:last-child {
    margin-top: 120px;
}

.clients-item {
    flex: 0 0 calc(50% - 12px);
}

.client-card {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    height: 170px;
    justify-content: center;
    padding: 28px 32px;
}

.client-logo {
    height: auto;
    max-height: 84px;
    max-width: 100%;
    width: auto;
}

@media (min-width: 768px) {
    .clients-item {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (min-width: 1200px) {
    .clients-item {
        flex: 0 0 calc(20% - 19.2px);
    }

    .clients-item--wide {
        flex: 0 0 calc(40% - 14.4px);
    }
}
