.gallery-wrapper {
display: inline-block;
margin: 15px 10px;
position: relative;
}
.thumb {
height: 420px;
width: 280px;
max-width: 100%;
cursor: pointer;
border-radius: 8px;
display: block;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
object-fit: fill;
}
.thumb:hover {
transform: scale(1.03);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.lightbox {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
z-index: 1000;
align-items: center;
justify-content: center;
cursor: pointer;
}
.lightbo