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

 .layout--two-col {
  display: flex;
  justify-content: center;
}

.layout--two-col > .layout__region {
  flex: 1 1 50%;
  max-width: 50%;
}

@media screen and (max-width: 600px) {
  .layout--two-col > .layout__region--first,
  .layout--two-col > .layout__region--second {
    flex: 1 1 100%;
    max-width: 100%;
  }
}