/* Custom override to show images in article previews as thumbnails */
.hentry img {
    display: inline-block !important;
    max-width: 150px !important;
    max-height: 150px !important;
    object-fit: cover;
    margin: 5px;
    vertical-align: top;
}

/* Clean up WordPress gallery/figure styling in previews */
.hentry figure {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top;
}

.hentry .wp-block-gallery {
    display: block !important;
    margin: 10px 0 !important;
}

.hentry figcaption {
    display: none !important; /* Hide captions in preview for cleaner look */
}

.hentry figure br {
    display: none !important; /* Remove extra line breaks */
}
