.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:20px;
}

.gallery-card{
position:relative;
height:180px;
border-radius:20px;
overflow:hidden;
cursor:pointer;
box-shadow:0 8px 24px rgba(0,0,0,.12);
transition:.35s;
}

.gallery-card:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.gallery-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.gallery-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:18px;
background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,0));
color:#fff;
}

.gallery-overlay h3{
margin:0;
font-size:18px;
font-weight:700;
}

.gallery-overlay span{
display:block;
margin-top:6px;
font-size:13px;
opacity:.9;
}

@media(max-width:600px){

.gallery-grid{
grid-template-columns:1fr;
gap:14px;
}

.gallery-card{
height:170px;
}

}
