.viewer-enabled-image {
    cursor: zoom-in;
}

/* Uniform, nicely-cropped tiles regardless of the photo's aspect ratio. */
.gallery-img {
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 575.98px) {
    .gallery-img { height: 200px; }
}
