/*
 * @file
 * Provides the layout styles for layout_twocol-75-25.
 *
 * @todo Using display: flex requires https://www.drupal.org/node/2842298 to be
 * in before this can be marked as stable.
 */
.layout--twocol-75-25 {
  display: flex;
  flex-wrap: wrap;
}

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

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