you can use grid-template-rows: to specify how large (high) you want your rows to be.
eg. if you want two rows, on eat 150px and one at say 200px you could do:
grid-template-rows: 150px 200px; that way you have more control over how large your individual cards are
same goes for columns
say your want 4 columns at 100px 150px 150px 200px width:
grid-template-columns: 100px 150px 150px 200px
this way you have more control and could better reach the sizes of the cards set in the task
What are you most proud of, and what would you do differently next time?
Relatively happy with my solution for the tab at the top.
What challenges did you encounter, and how did you overcome them?
The cards in the left and right sides of the layout were not centered vertically, so I created 2 rows and had them span both.
What specific areas of your project would you like help with?
This is actually my first time using Grid, and I'm not sure what best practices are for layout options. It feels like what I created isn't very flexible. I would be interested in seeing other approaches to this specific layout pattern.
What are you most proud of, and what would you do differently next time?
N/A
What challenges did you encounter, and how did you overcome them?
I couldn't control the bullet points on the in the way that I wanted to, so I used the entity code for a middle dot wrapped in a element to get more precise bullets.
What specific areas of your project would you like help with?
I think your solution looks really good.
I also struggled with the bullet points of the unordered list and found this entry on freeCodeCamp to be really helpful and well explained.
-https://www.freecodecamp.org/news/how-to-style-lists-with-css/
Considering there are no questions and you did this without being aware of the design files:
I find the way you structured your code and solved the challenge really readable and like the way you managed to create the box shadow as that was the thing I struggled with most
I think the differences between your solution and the design can probably be attributed to you not knowing about the design files as you mentioned above...