/*
 * @file
 * Provides default layout styles for all layout sections.
 */

/*
 * Media query breakpoints.
 * Processed by postcss/postcss-custom-media.
 */

/* Navigation related breakpoints */

/* Grid related breakpoints */

/* Grid shifts from 6 to 14 columns. */

/* Width of the entire grid maxes out. */

.layout {
  /* Same value the --md tier already uses — mobile's own var(--sp) read
   * as too tight between two otherwise-unrelated stacked sections. */
  margin-block-end: var(--sp2);
}

@media (min-width: 768px) {

.layout {
    margin-block-end: var(--sp2);
}
  }

@media (min-width: 1024px) {

.layout {
    margin-block-end: var(--sp3);
}
  }
