.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

gap:25px;

margin-top:40px;

}

.gallery-grid img{

width:100%;

height:220px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

transition:.25s;

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

}

.gallery-grid img:hover{

transform:scale(1.03);

}

.video-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(500px,1fr));

gap:30px;

}

.video-grid iframe{

width:100%;

height:315px;

border:none;

border-radius:16px;

}

.short-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.short-grid iframe{

width:100%;

height:600px;

border:none;

border-radius:20px;

}

#lightbox{

position:fixed;

inset:0;

background:rgba(0,0,0,.92);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.25s;

z-index:999999;

}

#lightbox.show{

opacity:1;

visibility:visible;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:15px;

}

#lightbox-close{

position:absolute;

top:25px;

right:35px;

font-size:60px;

color:white;

cursor:pointer;

}