.videos-page{
padding:110px 0;
}

.videos-hero{
padding-bottom:60px;
text-align:center;
}

.videos-hero h1{
font-size:clamp(2.8rem,5vw,4rem);
margin-bottom:20px;
}

.videos-hero__lead{
max-width:700px;
margin:auto;
}

.videos-section{
padding-top:40px;
}

.videos-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.video-card{
background:white;
padding:26px;
border-radius:26px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.video-card h3{
margin-bottom:18px;
}

.video-wrapper video{
width:100%;
border-radius:16px;
}

@media(max-width:1000px){

.videos-grid{
grid-template-columns:1fr;
}

}