From d7ec331d28772e2f2a35f2e1ea10db7fe4efe24a Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Sat, 4 Apr 2026 13:48:41 -0500 Subject: [PATCH] style(blog): full-width category blog images with 250px max height Co-Authored-By: Claude Opus 4.6 (1M context) --- src/media/css/template.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/media/css/template.css b/src/media/css/template.css index 8247c51..fcafb99 100644 --- a/src/media/css/template.css +++ b/src/media/css/template.css @@ -22744,3 +22744,19 @@ padding: 0.25rem; font-size: 0.8125rem; } } + +/* ── Category Blog — image cards ─────────────────────────── */ +.com-content-category-blog .blog-item .item-image { + width: 100%; + max-height: 250px; + overflow: hidden; + margin: 0 0 1rem 0; + float: none; +} +.com-content-category-blog .blog-item .item-image img { + width: 100%; + height: auto; + object-fit: cover; + object-position: center top; + display: block; +}