As can be seen in the image above, the captures page has a layout issue on the Stadia website below 1200px in page width (give or take).
This may not seem to be a big issue, but I'd wager quite a few people run the main Stadia screen in a window, and may face this issue.
I'm not going to tell the devs how to do their job, but this is how I fixed it:
.neTWrf {
max-width: 100%; /* Option 1 */
max-width: 100vw; /* Option 2 */
}
.au9T5d {
padding: 0 4rem;
/* grid-template-columns: 1fr 1fr 1fr; Replaced to allow responsiveness */
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}