From 168f17bcefcdb7b9a1c006bd4ef60997e65c46b4 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 25 Aug 2026 20:29:24 +0000 Subject: [PATCH] Home Blog featured post: taller card on lg+ via min-h, image follows The card's height was purely driven by the (short, fixed) text column's content regardless of viewport width. lg:min-h-[26rem] gives it real height on large screens; the image's sm:h-full and the text column's justify-between both stretch to match. --- app/components/Blog.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/components/Blog.tsx b/app/components/Blog.tsx index 1499cbe..242246a 100644 --- a/app/components/Blog.tsx +++ b/app/components/Blog.tsx @@ -32,8 +32,13 @@ export async function Blog() { {/* Posts grid */} - {/* Featured post — image on top on Mobile, side-by-side from sm+ */} - + {/* Featured post — image on top on Mobile, side-by-side from sm+. + lg:min-h stretches the row taller on large screens (the image's + sm:h-full and the text column's justify-between both follow) — + without it the card's height was purely driven by the text + column's content, which stays short regardless of viewport + width. */} +
{featured.thumbnail && (