
/* Elementor's section containers are capped at max-width: 1330px and center
   themselves above that, giving natural edge margin. Below 1330px the
   container becomes 100% of the viewport with no margin of its own, so these
   sections need their own left/right padding to avoid touching the true
   screen edge. Deliberate, explicit exception to "no container padding" -
   scoped only to the width range that rule doesn't otherwise cover. */
@media (max-width: 1329px) {
    .uc-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
