diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 7f47fb4..e952be7 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -297,10 +297,10 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay

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

- {video.title.split(' - ')[1] || video.title} + {(video.title.split(' - ')[1] || video.title).substring(0, 50)}

@@ -312,7 +312,7 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay
{/* Full title */}

- {video.title} + {video.title.length > 60 ? video.title.substring(0, 60) + '...' : video.title}

{/* Views and Date in one line */}