diff --git a/src/components/news/NewsSection.tsx b/src/components/news/NewsSection.tsx index c9ae90a..fb78ad5 100644 --- a/src/components/news/NewsSection.tsx +++ b/src/components/news/NewsSection.tsx @@ -429,11 +429,20 @@ export default function NewsSection() { {/* Grid */} {items.length > 0 && ( -
+
{featured && } - {regular.map((item, i) => ( - - ))} + {regular.length > 0 && ( +
+ {regular.map((item, i) => ( + + ))} +
+ )}
)}