.tj-partner-banner{
    width:100%;
    overflow:hidden;
    padding:18px 0;
    background:transparent;
}

.tj-partner-inner{
    width:100%;
    overflow:hidden;
}

.tj-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.tj-marquee-track{
    display:flex;
    align-items:center;
    gap:32px;
    width:max-content;
    will-change:transform;
}

.tj-logo-card{
    width:220px;
    height:105px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

    padding:12px 18px;

    background:#1a1a1a;
    border:1px solid #2b2b2b;
    border-radius:10px;

    box-sizing:border-box;
    text-decoration:none;

    transition:transform .25s ease, background .25s ease, border-color .25s ease;
}

.tj-logo-card:hover{
    transform:translateY(-4px);
    background:#202020;
    border-color:#3a3a3a;
}

.tj-logo-card img{
    display:block;
    max-width:175px;
    max-height:72px;
    width:auto;
    height:auto;
    object-fit:contain;
}

@media (max-width:768px){
    .tj-marquee-track{
        gap:22px;
    }

    .tj-logo-card{
        width:180px;
        height:90px;
        padding:10px 14px;
    }

    .tj-logo-card img{
        max-width:145px;
        max-height:60px;
    }
}