Center producer team grid for 2-column layout

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-18 17:00:17 -07:00
parent 41afe9c8e4
commit 1827c1b180
1 changed files with 4 additions and 1 deletions

View File

@ -758,9 +758,12 @@
/* ═══════ TEAM ═══════ */
.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.team-card {