/* Styles specific to the gallery page */

#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
#gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}
#gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
#gallery-grid a:hover img {
    transform: scale(1.1);
}

