/* Partner Logo Scroller basic styles */

.pls-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 40px;
    box-sizing: border-box;
}

.pls-track {
    display: flex;
    gap: 40px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.pls-track::-webkit-scrollbar {
    display: none;
}

.pls-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pls-logo-image {
    max-height: 70px;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: grayscale(30%);
}

.pls-logo-image:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.pls-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pls-arrow:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.05);
}

.pls-arrow-prev {
    left: 8px;
}

.pls-arrow-next {
    right: 8px;
}

@media (max-width: 768px) {
    .pls-wrapper {
        padding: 10px 32px;
    }
    .pls-track {
        gap: 24px;
    }
    .pls-logo-image {
        max-height: 50px;
    }
}
