/* Featured images on front page / list view — compact banner */
.bilberry-hugo-theme .article-wrapper:not(.single) article .featured-image {
    height: 180px;
    overflow: hidden;
}
.bilberry-hugo-theme .article-wrapper:not(.single) article .featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

/* Featured images on single post view — proportionally scaled */
.bilberry-hugo-theme .single article .featured-image img {
    width: auto;
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Inline images in post body — 65% of column width, scales proportionally */
.bilberry-hugo-theme article .content img,
.bilberry-hugo-theme article .content figure img {
    max-width: 65%;
    height: auto;
    display: block;
    margin: 1em auto;
}
