/* ==========================
        LATEST VIDEOS
========================== */

.videos{

    padding:100px 8%;

}

.video-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.video-card{

    background:#263238;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.video-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.video-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.video-content{

    padding:25px;

}

.video-content h3{

    margin-bottom:12px;

    font-size:22px;

}

.video-content p{

    color:#bbbbbb;

    margin-bottom:20px;

}

.video-content a{

    display:inline-block;

    background:#FFD54F;

    color:#1C2526;

    padding:12px 22px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.video-content a:hover{

    background:#FFC107;

}