/* Blog post gallery: masonry tiles that keep original photo proportions. */
.post-gallery {
    column-width: 250px;
    column-gap: 16px;
    margin-bottom: 40px;
}

.post-gallery figure {
    break-inside: avoid;
    margin: 0 0 16px;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--cream, #efe9dd);
}

.post-gallery img {
    display: block;
    width: 100%;
    height: auto;
}
