
/* ==========================
   Videos Page
========================== */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.8;
}



a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
.hero{
height:70vh;

    background:
    linear-gradient(rgba(0, 128, 255, 0.7),
    rgba(255, 255, 255, 0)),
    url("../images/news/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    position:relative;
}

.hero-content{

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border-radius:30px;

    margin-bottom:25px;

    letter-spacing:2px;

}

.hero h1{

    font-size:58px;

    margin-bottom:20px;

    font-weight:800;

}

.hero p{

    font-size:20px;

    opacity:.9;

}


/* Card */

.video-card{

    text-decoration:none;

    color:#1F2937;

}



/* Video Box */

.video-thumb{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    aspect-ratio:16/9;

    background:#000;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}



/* Video */

.video-thumb video{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;

    background:#000;

    border-radius:20px;

}



/* Title */

.video-card h3{

    margin-top:18px;

    text-align:center;

    font-size:20px;

    font-weight:700;

    color:#1F2937;

    transition:.3s;

}


.video-card:hover h3{

    color:#0B72E7;

}



/* Hover */

.video-card:hover .video-thumb{

    box-shadow:
    0 15px 35px rgba(11,114,231,.15);

}



/* Mobile */

@media(max-width:768px){


    .videos-page{

        padding:60px 0;

    }


    .video-header{

        margin-bottom:40px;

    }


    .video-header h2{

        font-size:34px;

    }


    .video-header p{

        font-size:15px;

        padding:0 15px;

    }


    .video-grid{

        grid-template-columns:1fr;

        gap:25px;

    }


    .video-card h3{

        font-size:18px;

    }


}

