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

.layout--nmaahc-twocol {
  display: flex;
  flex-wrap: wrap;
}

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

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

  .layout--nmaahc-twocol-40-60 > .layout__region--first,
  .layout--nmaahc-twocol-60-40 > .layout__region--second {
    flex: 0 1 40%;
  }

  .layout--nmaahc-twocol-50-50 > .layout__region--first,
  .layout--nmaahc-twocol-50-50 > .layout__region--second {
    flex: 0 1 50%;
  }

  .layout--nmaahc-twocol-60-40 > .layout__region--first,
  .layout--nmaahc-twocol-40-60 > .layout__region--second {
    flex: 0 1 60%;
  }

  .layout--nmaahc-twocol-70-30 > .layout__region--first,
  .layout--nmaahc-twocol-30-70 > .layout__region--second {
    flex: 0 1 70%;
  }

}
