.statsBigBadges { } .statsBigBadges__grid { display: grid; align-items: stretch; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1rem; width: 100%; container-name: big-badges-grid; container-type: inline-size; } .statsBigBadges__grid .statsBigBadges__gridItem span { color: #FFF; } .statsBigBadges__gridItem { display: flex; justify-content: space-between; padding: 28px; border-radius: 6px; border: 1px solid var(--yellow-500); background: var(--card-full-background-color-2); align-items: center; gap: 48px; span { color: #FFF; font-size: 21px; font-style: normal; font-weight: 600; line-height: normal; } span:nth-last-of-type(1) { font-size: 28px; } &:nth-of-type(2) { border: 1px solid var(--yellow-500); background: var(--card-full-background-color-3); } &:nth-of-type(3) { border: 1px solid var(--yellow-500); background: var(--card-full-background-color-4); } &:nth-of-type(4) { border: 1px solid var(--yellow-500); background: var(--card-full-background-color-1); } } @container big-badges-grid (max-width: 700px) { .statsBigBadges__gridItem { padding: 12px; span { font-size: 16px; } span:nth-last-of-type(1) { font-size: 16px; } } }