/* --- logo-partner-slider-assets.css (Phiên bản Đã Sửa Xung Đột) --- */

/* KHUNG CHỨA SLIDER */
.partner-slider-container {
    width: 100%; 
    margin: 20px auto; 
    padding: 0;
    background: linear-gradient(to right, #EFFAFF00 0%, #79BA00 50%, #EFFAFF00 100%);
    position: relative;
}

/* CẤU HÌNH SWIPER (CLASS ĐỘC LẬP) */
.partner-logo-slider-main {
    /* Thêm các thuộc tính cơ bản của Swiper container (thay thế class .swiper bị loại bỏ) */
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; /* QUAN TRỌNG */
    list-style: none;
    padding: 0; 
    z-index: 1;
}

/* LOGO SLIDE (Giữ nguyên class swiper-slide-logo) */
.swiper-slide-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo-box {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ẢNH LOGO */
.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter 0.3s, opacity 0.3s;
}

/* Nút điều hướng (Giữ nguyên class swiper-button-*) */
.swiper-button-prev-logo,
.swiper-button-next-logo {
    color: #4CAF50;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: absolute; /* Đảm bảo position: absolute */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.swiper-button-prev-logo:hover,
.swiper-button-next-logo:hover {
    background-color: #f2f2f2;
    transform: translateY(-50%) scale(1.1);
}
.swiper-button-prev-logo { left: 10px; }
.swiper-button-next-logo { right: 10px; }

.swiper-button-prev-logo::after,
.swiper-button-next-logo::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .partner-logo-slider-main {
        padding: 0 30px;
    }
}