/**
 * @file
 * Content below region layout.
 */

/*
 * 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. */

@media (min-width: 700px) {

.region--content-below {
    display: flex;
    flex-wrap: wrap;
}

    .region--content-below > * {
      flex-basis: calc(50% - (var(--grid-gap) / 2));
      flex-grow: 1;
      flex-shrink: 0;
      margin-right: var(--grid-gap);
    }

      .region--content-below > *:nth-child(2n),
      .region--content-below > *:last-child {
        margin-right: 0;
      }
  }

@media (min-width: 700px) {
    .region--content-below > * {
      flex-basis: calc(33.33% - (var(--grid-gap) * 0.667));
    }

      .region--content-below > *:nth-child(2n),
      .region--content-below > *:last-child {
        margin-right: var(--grid-gap);
      }

      .region--content-below > *:nth-child(3n),
      .region--content-below > *:last-child {
        margin-right: 0;
      }
  }
