/*
 * @file
 * Provides the layout styles for layout--three-columns.
 */

 .layout--three-col {
  display: flex;
  justify-content: center;
}

.layout--three-col > .layout__region {
  flex: 1 1 33.333%;
  max-width: 33.333%;
}

@media screen and (max-width: 600px) {
  .layout--three-col > .layout__region--first,
  .layout--three-col > .layout__region--second,
  .layout--three-col > .layout__region--third {
    flex: 1 1 100%;
    max-width: 100%;
  }
}