.section-slider-home-banner {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative
}
/* Mặc định ở Mobile: Ẩn Bento, Hiện Swiper */
.bento-desktop-view { display: none; }
.swiper-mobile-view { display: block; }
.ribbon-home-banner {
    position: absolute;
    top: 0;
    left: -15px;
    z-index: 3
}
.ribbon-text-home-banner {
    display: inline-block;
    padding: .5em 0 .5em 10px;
    min-width: 18em;
    line-height: 1.2em;
    background: #f54400;
    color: var(--white-color);
    position: relative;
    border-bottom-right-radius: 35px;
    font-size: 15px;
    font-style: italic
}
.ribbon-text-home-banner:after {
    content: '';
    position: absolute;
    border-style: solid;
    top: 100%;
    left: 0;
    border-width: 12px 0 8px 15px;
    border-color: #f54400 transparent transparent
}
.section-slider-home-banner img {
    width: 380px;
    height: 220px;
    border-radius: 12px;
    box-shadow: 0 0,-5px 0 8px -5px #ccc,5px 0 8px -5px #ccc
}

@media (min-width: 768px) {
    .swiper-mobile-view { display: none; }
    .bento-desktop-view { 
        display: grid; 
        grid-template-columns: 2fr 1fr; 
        grid-template-rows: 200px 200px; 
        gap: 20px; 
        padding-bottom: 0px;
    }
    .bento-item { 
        position: relative; border-radius: 12px; overflow: hidden; 
        display: block; text-decoration: none; 
    }
    .bento-item img { 
        width: 100%; height: 100%; object-fit: cover; 
        transition: transform 0.5s ease; 
    }
    .bento-item:hover img { transform: scale(1.05); }
    
    .bento-item-0 { grid-row: span 2; } 
    
    .bento-overlay {
        position: absolute; bottom: 0; left: 0; right: 0; 
        padding: 40px 20px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: #fff; pointer-events: none;
    }
    
    .bento-title { font-size: 24px; font-weight: 600; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
    .bento-item:not(.bento-item-0) .bento-title { font-size: 16px; } /* Chữ nhỏ hơn cho 2 banner phụ */
    
    .bento-badge { 
        position: absolute; top: 15px; left: 15px; background: #ed1b24; 
        color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; z-index: 3;
    }
}
@media (max-width: 767px) {
    .ribbon-home-banner {
        left: -10px
    }

    .ribbon-text-home-banner {
        font-size: 14px
    }
    .section-slider-home-banner {
        overflow:hidden
    }
    .ribbon-text-home-banner:after {
        border-width: 10px 0 8px 10px
    }
    .section-slider-home-banner img {
        width: 340px;
        height: 190px
    }
    .section-slider-home-banner .swiper-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}