.vrs-track{
 display:grid;
 grid-auto-flow:column;
 grid-auto-columns:20%;
 gap:20px;
 overflow-x:auto;
 scroll-snap-type:x mandatory;
}

.vrs-item{
 scroll-snap-align:center;
 transition:.3s;
}

.vrs-item.active{
 transform:scale(1.15);
}

.vrs-item video{
 width:100%;
 height:380px;
 object-fit:cover;
 border-radius:18px;
}

.vrs-box{
 background:#fff;
 margin-top:8px;
 padding:10px;
 border-radius:14px;
 display:flex;
 gap:10px;
 align-items:center;
}

.vrs-box img{
 width:60px;
 height:60px;
 object-fit:cover;
 border-radius:10px;
}
