/*
 * @file
 * Provides the layout styles for two-column layout section.
 */

.layout--custom-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--custom-section > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--custom-section > .layout__region--first,
  .layout--custom-section > .layout__region--second {
    flex: 0 1 50%;
    position: relative;
  }

}
