comment-scrolling{
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
}

comment-scrolling>.block-heading{
    margin-bottom:20px;
}

comment-scrolling>.rte{
    margin-bottom:40px;
}
comment-scrolling>.rte svg{
    display:inline;
}

comment-scrolling>.button{
    margin-bottom:60px;
}
comment-scrolling .comment-scrolling_swiper{
    width: calc(100% + 2 * var(--page-padding));
    margin-left:calc(var(--page-padding) * -1);
    margin-right:calc(var(--page-padding) * -1);
    padding-bottom:30px;
}
comment-scrolling .swiper-slide{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:10px;
    height: auto;
}
comment-scrolling .swiper-slide>div{
    border-radius:20px;
    width:100%;
    position: relative;
    aspect-ratio: 332 / 380;
}
comment-scrolling .slide-right{
    background: rgb(var(--background-color));
    padding:10px;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap:50px;
}
comment-scrolling .slide-right .slide-buyer_certification{
    display:flex;
    align-items: center;
    gap:10px;
}
comment-scrolling .slide_video-container{
    position: unset;
    padding-top:100%;
    border-radius:20px;
    overflow: hidden;
    cursor: pointer;
    height:100%;
}
comment-scrolling .slide_video-container>*{
    position: absolute;
}
comment-scrolling .slide_video-container .video{
    height: auto;
    width: 100%;
    aspect-ratio: 332 / 380;
    top: 0;
}
comment-scrolling .slide_video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

comment-scrolling .slide_video-name{
    position: absolute;
    width:100%;
    bottom:-30px;
}

comment-scrolling .play-button{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
}

comment-scrolling .slide_video-content{
    position: absolute;
    bottom:20px;
    width:100%;
    padding:0 35px;
    color:#FFD845;
}

@media(max-width:768px){
    comment-scrolling>.button{
        margin-bottom:8vw;
    }
    comment-scrolling .slide-right{
        gap:2.6667vw;
    }
    comment-scrolling>.rte{
        display: flex;
        flex-direction: column;
    }

    comment-scrolling .swiper-slide>div{
        aspect-ratio: 365 / 417;
    }

    comment-scrolling .slide_video-container .video{
        aspect-ratio: 365 / 417;
    }
}