diff --git a/client/src/components/bunny-video-modal.tsx b/client/src/components/bunny-video-modal.tsx
index 0082843..6e1f8a3 100644
--- a/client/src/components/bunny-video-modal.tsx
+++ b/client/src/components/bunny-video-modal.tsx
@@ -256,9 +256,9 @@ export default function BunnyVideoModal({ video, isOpen, onClose, onEdit, videos
{/* Video player area */}
-
- {/* Main video player - limited width */}
-
+
+ {/* Main video player */}
+
{video.videoUrlIframe ? (
)}
+
+ {/* Video info directly under video on mobile, sidebar on desktop */}
+
+
+
+ {video.title}
+
+
+
+ {formatViews(video.views)}
+ {formatDuration(video.duration)}
+ {formatDate(video.createdAt)}
+
+
+ {video.description && (
+
+
+ {video.description}
+
+
+ )}
+
+
-
- {/* Video info below video - centered */}
-
-
-
+
+ {/* Video info sidebar - desktop only */}
+
+
+
{video.title}
-
+
{formatViews(video.views)}
{formatDuration(video.duration)}
{formatDate(video.createdAt)}