From a749e3df0b8de214d65dff4554b319c274022d1e Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 21 Apr 2026 04:41:54 +0000 Subject: [PATCH] Cap hero video max-width to prevent oversized display on large screens Add max-width: 500px to .hero-video so it doesn't grow too large on tall/wide viewports where 30vh * 16/9 could exceed 700px+. https://claude.ai/code/session_01LBmWUCXdBVh6KNZPWJdf6E --- src/routes/page.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/page.css b/src/routes/page.css index 340fd64..4c32249 100644 --- a/src/routes/page.css +++ b/src/routes/page.css @@ -142,6 +142,7 @@ display: block; width: min(100%, 30vh * 16 / 9); max-height: 30vh; + max-width: 500px; } .hero-video-annotation {