/* A builder instance placed inside a view's container (a component position
   such as a blog post's bottom): UIkit strips the side padding of a nested
   container, so the instance's sections would hug the edges. The padding
   comes back at UIkit's own breakpoints; the width stays the view's. */
.uk-container .cms-builder-result .uk-container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 640px) {
    .uk-container .cms-builder-result .uk-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 960px) {
    .uk-container .cms-builder-result .uk-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
