/*
 * @file
 * Provides the layout styles for twocol_60-40.
 */

.layout--twocol-60-40 {
  display: flex;
  flex-wrap: wrap;
}

.layout--twocol-60-40 .layout__region--top,
.layout--twocol-60-40 .layout__region--bottom {
  flex: 0 1 100%;
}

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

