Content expands beyond its column container [closed]

As far as I can tell, the most right column is being nested within the middle reviews column.

I imagine that somewhere in the code (template, sidebar, or widget) there is a conditional statement causing your middle column to not get closed off before the right column starts.

To illustrate what is happening, this is how it currently gets rendered:

<div class="fl-col fl-col-small fl-node-569586b0f1e9e" style="width: 39.94%;" data-node="569586b0f1e9e">
    ...middle column content...

    <div class="fl-col fl-col-small fl-node-569586b0f1ee5" style="width: 20.02%;" data-node="569586b0f1ee5">
    ...right column content...
    </div>
</div>

But what it should be:

<div class="fl-col fl-col-small fl-node-569586b0f1e9e" style="width: 39.94%;" data-node="569586b0f1e9e">
    ...middle column content...
</div>
<div class="fl-col fl-col-small fl-node-569586b0f1ee5" style="width: 20.02%;" data-node="569586b0f1ee5">
    ...right column content...
</div>