/**
 * @file
 * Page
 *
 * Contains styles for page wrapper layout.
 */

 @use '_helper' as *;

.container {
  @include gutter;
  margin: 0 auto;
  max-width: $content-max;

  & > .wysiwyg:last-child {
    margin-bottom: $spacing-vertical-sm;

    @media screen and (min-width: $break-large) {
      margin-bottom: $spacing-vertical-lg;
    }
  }
}