Large Unwanted Space at the Bottom of Blog Posts [closed]

It’s being caused by the style for .clearfix:after, which is doing a clear: both; (Screenshot of code)

Adding the following to your CSS will resolve the issue:

.post-content.clearfix:after {
    clear: left;
}

Screenshot of result