/* ========================= */
/* VIDEO */
/* ========================= */

.video-section{

    padding:120px 0 90px;

}

.video-section .section-title{

    margin-bottom:50px;

}

.video-section .section-title h2{

    font-size:42px;

    margin-bottom:15px;

}

.video-section .section-title p{

    font-size:18px;

}

/* CARD BESAR */

.video-wrapper{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/* GRID */

.video-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* Video ke-4 di tengah */

.video-grid iframe:nth-child(4){

    grid-column:2;

}

/* UKURAN VIDEO */

.video-grid iframe{

    width:100%;

    height:240px;      

    border:none;

    border-radius:18px;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.video-grid iframe:hover{

    transform:scale(1.03);

}

/* Tablet */

@media(max-width:992px){

.video-grid{

    grid-template-columns:repeat(2,1fr);

}

.video-grid iframe{

    height:300px;

}

.video-grid iframe:nth-child(4){

    grid-column:auto;

}

}

/* HP */

@media(max-width:768px){

.video-grid{

    grid-template-columns:1fr;

}

.video-grid iframe{

    height:240px;

}

}
