From 7c3f825c8014cb12cdf5cae675b4e6bff9f6e068 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 13 Feb 2026 07:10:23 -0700 Subject: [PATCH] Force 4-column layout for How It Works steps Co-Authored-By: Claude Opus 4.6 --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index b795635..38264f0 100644 --- a/index.html +++ b/index.html @@ -444,11 +444,14 @@ .steps-row { display: grid; - grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); + grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; } + @media (max-width: 640px) { + .steps-row { grid-template-columns: repeat(2, 1fr); } + } .step { text-align: center;