[please see here: ](https://www.pyopensci.org/about-peer-review/index.html#meet-our-editorial-board) somehow in our style updates the peer review editorial team listing now has ginormous card sizes which makes it hard to read: <img width="1106" alt="Screenshot 2024-08-09 at 5 14 13 PM" src="https://github.com/user-attachments/assets/b3b4462e-3c0a-4b65-a843-f687a331777e"> I think the size used on our [community page](https://www.pyopensci.org/our-community/index.html) is nice. it could even be a bit smaller. but the editorial team grid size is just way too big! it looks like modifying grid like this will fix things. right now it's set to 300px. ```css .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); grid-gap: 10px; } ```