﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f7fa;
}

.video-gallery{
    padding:70px 20px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#0A4B78;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:16px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.video-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card video{
    width:100%;
    height:220px;
    object-fit:cover;
    background:#000;
}

.video-content{
    padding:20px;
}

.video-content h3{
    color:#0A4B78;
    margin-bottom:10px;
    font-size:22px;
}

.video-content p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.video-card video{
    height:200px;
}

}