From 109bcac7f74b12e0977d074585f4b5f573ba4520 Mon Sep 17 00:00:00 2001 From: Reef Date: Sat, 22 Aug 2026 12:08:23 +0000 Subject: [PATCH] Fix mobile pricing: stack 4 cards vertically (1 column) below 768px --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index eaf5eb9..7bc4eee 100644 --- a/style.css +++ b/style.css @@ -569,6 +569,9 @@ img { max-width: 100%; height: auto; vertical-align: middle; } grid-template-columns: repeat(4, 1fr); gap: 1rem; } +@media (max-width: 768px) { + .pricing-grid { grid-template-columns: 1fr; } +} .pcard { background: var(--ivory); border: 1px solid var(--line);