4
Question
Why does one long URL make my CSS Grid card overflow on mobile?
A card containing a long deployment URL pushes the whole two-column layout wider than the viewport. I already added overflow-wrap: anywhere to the paragraph.
.layout { display: grid; grid-template-columns: 1fr 280px; }
.card { display: grid; }

Which grid constraint am I missing?