@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");

#brand-logo {
    background-color: #f6fffe;
    padding: 50px 10px;
}

/* Slider Container */
.brand-carousel {
    padding: 20px;
}

/* Logo Box */
.swiper-slide {
    width: auto;
}

.logo-box {
    width: 200px;
    height: 100px;
    background: #fff;
    border: 1px solid #b7c9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-box {
        width: 140px;
        height: 80px;
    }
}