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

.layout--fivecol-section {
  display: flex;
  flex-wrap: nowrap;
}

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

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

  .layout--fivecol-section > .layout__region.has-image {
    max-width: 28.3rem;
  }
}
