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

.col2-equal {
  display: flex;
  flex-wrap: wrap;
}

.col2-equal > .layout__region {
  flex: 0 1 100%;
}

.col2-equal > .layout__region--full {
  flex: 0 1 100%!important;
}

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