/*
 * @file
 * Provides the layout styles for layout--two-columns-60-40.
 */

 .layout--two-col-60-40 {
  display: flex;
  justify-content: center;
}

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

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

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