Force 4-column layout for How It Works steps

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-13 07:10:23 -07:00
parent 057931f02a
commit 7c3f825c80
1 changed files with 4 additions and 1 deletions

View File

@ -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;