Hey Chris,
Nice to see you again and happy Friday!
It looks like there is CSS in the theme that is preventing overflow content from displaying:
.archive .entry, .single .entry {
margin-bottom: 3rem;
padding-bottom: 3rem;
overflow: hidden;
}
You can change that to this either in your style.css file or on the Appearance > Customize > Additional CSS screen:
.archive .entry, .single .entry {
margin-bottom: 3rem;
padding-bottom: 3rem;
overflow: visible !important;
}
Here’s a screenshot of how that looks when I tested it out on your site. Hopefully it does the trick for you as well!
Cheers!
Geoff