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

.layout--avn-two-cols {
  display: flex;
  flex-wrap: wrap;
}

.layout--avn-two-cols > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--avn-two-cols > .layout__region--left,
  .layout--avn-two-cols > .layout__region--right {
    flex: 0 1 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
