.bwg-template-general.bwg-with-grid .wbg-list{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
}

.bwg-template-general .wbg-item {
    display: grid;
    grid-template-areas: "image" "content";
    grid-template-rows: auto 1fr;
    gap: 20px;
    height: 100%;
}

.bwg-template-general .owl-stage .owl-item{
    height: 100%;
}


.bwg-template-general.bwg-even-variant .wbg-item:nth-child(even),
.bwg-template-general.bwg-even-variant .owl-item:nth-child(even) .wbg-item
{
    grid-template-areas: "content" "image";
    grid-template-rows: 1fr auto;
}

.bwg-template-general .wbg-item-image{
    width: 100%;
    height: 100%;
    aspect-ratio: 2/3;
    grid-area: image;
}

.bwg-template-general .wbg-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwg-template-general .wbg-item-content{
    grid-area: content;
    display: grid;
    gap: 5px
}

.bwg-template-general .wbg-item-content .item-content-name{
    font-size: 14px;
}

.bwg-template-general .wbg-item-content .item-title_after{
    font-weight: 300;
}

@media (max-width: 767px) {
    .bwg-template-general.bwg-with-carusel .wbg-list-wrapper{
        overflow: hidden;
        margin-right: -15px;
    }

    .bwg-template-general.bwg-with-carusel .wbg-list{
        width: 120vw;
    }
}

@media (max-width: 460px) {
    .bwg-template-general.bwg-with-carusel .wbg-list{
        width: 140vw;
    }
}

.banner-product-index .section-title{
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    font-weight: 300;
}

.banner-product-index .widget-box{
    margin-bottom: 24px;
}

.user-promotion-banner{
    margin: 24px 0;
}



