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

.layout--threecol-50-25-25 > .layout-inner-container {
  display: flex;
  flex-wrap: wrap;
}

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

@media screen and (min-width: 40em) {
  .layout--threecol-50-25-25 .layout__region--second,
  .layout--threecol-50-25-25 .layout__region--third {
    flex: 0 1 auto;
    width: 25%;
  }

  .layout--threecol-50-25-25 .layout__region--first {
    flex: 0 1 auto;
    width: 50%;
  }
}
