Using the developer toolbar will help you tremendously when troubleshooting layout issues like these. That's F12 for most browsers. Through the toolbar you will see that the pertinent styles applied to .new and .side, but not .right, are;
Code:
max-width: 50%;
padding: 2em;
So you should apply this CSS to .right also (inside the same media query breakpoint as the others). However, in case this .right class is used elsewhere on your site, you would be better off putting a new class in the markup and applying the CSS to the new class only.
Bookmarks