.logos-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 32px 0 0;
    margin-top: 56px;
    border-top: 1px solid var(--iot-border-glass);
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 56px;
    width: max-content;
    min-width: 100%;
    will-change: transform;
}

.logo-cell {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-cell img {
    display: block;
    height: 42px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logos-section {
        padding: 24px 0 0;
        margin-top: 40px;
    }
    .logos-track {
        column-gap: 36px;
    }
    .logo-cell img {
        height: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logos-track {
        transform: none !important;
    }
}
