style(blog): full-width category blog images with 250px max height

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-04 13:48:41 -05:00
parent f1b44f0530
commit d7ec331d28

View File

@@ -22744,3 +22744,19 @@ padding: 0.25rem;
font-size: 0.8125rem; 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;
}