/*
 * @file
 * Provides the layout styles for layout--two-columns-75-25.
 */

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

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

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

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