.customers {
    padding: 60px 0;
}

h2.customers__title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.customers__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.customers__logo-item {
    background: rgba(255, 255, 255, 0.50);
    border-radius: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.customers__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .customers__logos {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Keep placeholders to maintain grid if needed, 
       but you might want to adjust logic for non-multiple-of-4 counts on mobile if strictly required. */
}

@media (max-width: 767px) {
    .customers__logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
