Posts page layout

Thanks for reading this. I am searching for a base theme. I like CP Child, and Susty Child. The part I like about the latter is the grid appearance of the Posts page. Can anyone tell me how I can do this on ClassicPress Child? I have fx. How would I begin? Thank you.

Here you are (when using The CP Theme):

/* Blog page - no sidebar */
.blog #main {max-width:72rem;}
.blog #sidebar {display:none;}

/* Large screen - posts in 3 columns */
.blog .blog-list {display:grid; grid-auto-rows:1fr; grid-template-columns:1fr 1fr 1fr; gap:2em;}

/* Mobile screen - posts in 1 column */
@media screen and (max-width: 899px) {
	.blog .blog-list {display:block;}
}