diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index c4691cc..1a5bb87 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -291,16 +291,37 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay {/* Mobile info section - below video */} {isMobile && (
- {/* Title - first line only */} + {/* Full title */}

- {video.title.split(' - ')[0] || 'go4.video'} + {video.title}

{/* Views and Date in one line */} -
+
{formatViews(video.views || 0)} {formatDate(video.createdAt)}
+ + {/* Description with expand/collapse */} + {(video.title.split(' - ')[1] || video.description) && ( +
+
+

+ {video.title.split(' - ')[1] || video.description || ''} +

+ +
+
+ )}
)}