section img { height: auto; }
/* Imported WordPress image and gallery blocks. */
section figure.wp-block-image {
    max-width: 100%;
    margin-inline: auto;
}
section figure.wp-block-image img {
    max-width: 100%;
    height: auto;
}
section .wp-block-gallery.has-nested-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}
section .wp-block-gallery.has-nested-images > figure.wp-block-image {
    min-width: 0;
    width: 100%;
    margin: 0;
}
section .wp-block-gallery.has-nested-images > figure.wp-block-image img {
    width: 100%;
    height: auto;
}
section .wp-block-gallery.is-cropped > figure.wp-block-image img {
    height: 13rem;
    object-fit: cover;
}
@media (max-width: 640px) {
    section .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    section .wp-block-gallery.is-cropped > figure.wp-block-image img {
        height: 9rem;
    }
}
