ui(avbeat): shrink featured-story hero excerpt ~50%

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.
This commit is contained in:
2026-06-03 16:27:37 +00:00
parent d5b54d077b
commit ecebc9b3b4

View File

@@ -116,7 +116,7 @@ export default async function FeaturedBento() {
{hero.title} {hero.title}
</h3> </h3>
{hero.excerpt && ( {hero.excerpt && (
<p className="font-serif text-base md:text-lg text-[#cbd5e1] mt-3 max-w-2xl line-clamp-2"> <p className="font-serif text-xs md:text-sm text-[#cbd5e1] mt-3 max-w-2xl line-clamp-2">
{cleanExcerpt(hero.excerpt)} {cleanExcerpt(hero.excerpt)}
</p> </p>
)} )}