diff --git a/app/components/Blog.tsx b/app/components/Blog.tsx index 81e41c2..7aed233 100644 --- a/app/components/Blog.tsx +++ b/app/components/Blog.tsx @@ -75,25 +75,29 @@ export async function Blog() { - {/* Secondary posts — image on top on Mobile, side-by-side from sm+ */} + {/* Secondary posts — image on top through lg (1024px), side-by-side + only from lg+. These sit 2-up (sm:grid-cols-2 below) well + before lg, so each card's own available width through the + 640-1023px tablet range is too narrow for image+text side by + side — was sm:grid-cols-5, squeezing the text column. */}
{secondary.map((post) => ( -
+
{post.thumbnail && ( )}
-
+
{post.categories.join(", ")} @@ -107,7 +111,7 @@ export async function Blog() { > {post.title}

-

+

{post.excerpt}