.jsn-youtube-feed{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.jsn-video-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

/*.jsn-video-card:hover{*/
/*    transform:translateY(-5px);*/
/*}*/

.jsn-video-thumb img{
    width:100%;
    display:block;
}

.jsn-video-content{
    padding:16px;
}

.jsn-video-content h4{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.5;
    color:#111;
}

.jsn-video-content span{
    font-size:13px;
    color:#777;
}
a.jsn-video-card {
    border: 1px solid #f0f0f0;
}

@media(max-width:991px){

.jsn-youtube-feed{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.jsn-youtube-feed{

grid-template-columns:1fr;

}

}