/**
 * @file
 * Basic Layout styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.page-layout {
  margin: 0 auto;
  padding: 4.25rem 6% 4rem;
}
@media screen and (max-width: 73.0625rem) {
  .page-layout {
    padding: 3rem 6% 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .page-layout {
    padding: 2rem 6% 0;
  }
}
.page-layout .page-layout__container {
  max-width: 82.25rem;
  margin: 0 auto;
}
.page-layout.page-layout--one-column .page-layout__content :first-child {
  margin-top: 0;
}
.page-layout.page-layout--two-column .page-layout__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 47.9375rem) {
  .page-layout.page-layout--two-column .page-layout__container {
    display: block;
  }
}
.page-layout.page-layout--two-column .page-layout__content {
  width: 65.3495440729%;
}
@media screen and (max-width: 47.9375rem) {
  .page-layout.page-layout--two-column .page-layout__content {
    width: 100%;
  }
}
.page-layout.page-layout--two-column .page-layout__content :first-child {
  margin-top: 0;
}
.page-layout.page-layout--two-column .page-layout__sidebar {
  width: 30.3951367781%;
}
@media screen and (max-width: 47.9375rem) {
  .page-layout.page-layout--two-column .page-layout__sidebar {
    width: 100%;
    border-top: 1px solid #D3D3D3;
    padding-top: 2rem;
    margin-top: 2.5rem;
  }
}
.page-layout.page-layout--two-column .page-layout__sidebar :first-child {
  margin-top: 0;
}

/*# sourceMappingURL=basic-layout.css.map*/