.program-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-gallery-grid img,
.gallery-fixed img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.gallery-fixed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 800px) {
    .program-gallery-grid,
    .gallery-fixed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .program-gallery-grid,
    .gallery-fixed {
        grid-template-columns: 1fr;
    }

}
