This actually occurs before id=”content”. It occurs inside the id=”breadcrumbs”.
I attempted what you suggested with no change, then I also tried the following with no effect:
#breadcrumbs .post {
padding: 35px 35px 25px 0;
}
Then I realized that the issue was the right-side padding. Fixed as this:
#breadcrumbs .post {
padding: 35px 0px 25px 0px !important;
}
Thanks!