From ecebc9b3b4434a4d1f95ce0035d2c483d13fb7ca Mon Sep 17 00:00:00 2001 From: Local Administrator Date: Wed, 3 Jun 2026 16:27:37 +0000 Subject: [PATCH] ui(avbeat): shrink featured-story hero excerpt ~50% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FeaturedBentoFromDb.tsx:119 — hero excerpt size ramp halved: text-base md:text-lg (16 / 18 px) → text-xs md:text-sm (12 / 14 px) Restores a clear size gap below the (already-shrunk) hero headline; the excerpt was visually competing with the title at the same breakpoint. --- src/components/FeaturedBentoFromDb.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FeaturedBentoFromDb.tsx b/src/components/FeaturedBentoFromDb.tsx index 5ba4814..79691b2 100644 --- a/src/components/FeaturedBentoFromDb.tsx +++ b/src/components/FeaturedBentoFromDb.tsx @@ -116,7 +116,7 @@ export default async function FeaturedBento() { {hero.title} {hero.excerpt && ( -

+

{cleanExcerpt(hero.excerpt)}

)}