diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 2f6441d..240b8ea 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -314,19 +314,17 @@ export default function VideoCard({ video, onClick, className = "", hideOverlay {showMoreInfo ? 'Weniger anzeigen' : 'Mehr anzeigen'} - {/* Expandable info */} - {showMoreInfo && ( -
-

- {video.title.split(' - ')[1] || video.title} + {/* Full text when expanded */} +

+

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

+ {showMoreInfo && video.description && ( +

+ {video.description}

- {video.description && ( -

- {video.description} -

- )} -
- )} + )} +
)}