/*
 * @file
 * Provides the layout styles for two-column layout section.
 */

.layout--fourcol {
  display: flex;
  flex-wrap: wrap;
}

.layout--fourcol > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--fourcol > .layout__region {
    flex: 0 1 25%;
  }
}
