.gallery-card {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: transform .3s ease;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: transform .4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}
