Hi Awilla,
Thanks for writing in!
The issue is not the size of the featured image. It is because the post titles and the post excerpts are not of the same height. To have a uniform grid height, you must set a minimum height for the title and the excerpts. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
@media(min-width: 768px){
.x-iso-container-posts .entry-title {
min-height: 50px;
margin-left: 0;
margin-right: 0;
padding: 0;
width: 100%;
text-align: left;
}
.x-iso-container-posts .entry-content.excerpt {
min-height: 100px;
margin-left: 0;;
margin-right: 0;
padding: 0;
}
}
And you will have something like this:

We would love to know if this works for you. Thank you.