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

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

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

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