/*
 * @file
 * Provides the layout styles for layout_threecol_33_34_33.
 */

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

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

@media screen and (min-width: 40em) {
  .layout--threecol > .layout__region--first,
  .layout--threecol > .layout__region--third {
    flex: 0 1 33%;
  }
  .layout--threecol > .layout__region--second {
    flex: 0 1 34%;
  }
}
