/* PRAXIS */

.gallery .image-frame {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    .gallery .image-frame:not(.last) {
        aspect-ratio: unset;
        height: 400px;
    }
}

.gallery .image-frame img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}