From 525dc358a3832695b42bbf2156b6a73dac692fc8 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 9 Jun 2026 13:42:18 +0700 Subject: [PATCH] fix(layout): widen container to 1600px for more usable space --container-max was 1400px which left visible whitespace on screens 1600px+ wide. Bump to 1600px so service/problem bento tiles fill more of the viewport. Co-Authored-By: Claude --- src/styles/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index 3f01acc..c051393 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -50,7 +50,7 @@ --space-3xl: 128px; /* Layout */ - --container-max: 1400px; + --container-max: 1600px; --gutter: 32px; --section-padding: 120px;