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

 .layout--threecol-custom-15-66-15-section {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}

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

@media screen and (min-width: 40em) {
  .layout--threecol-custom-15-66-15-section--15-70-15 > .layout__region--first,
  .layout--threecol-custom-15-66-15-section--15-70-15 > .layout__region--third {
    flex: 0 1 15%;
  }
  .layout--threecol-custom-15-66-15-section--15-70-15 > .layout__region--second {
    flex: 1;
  }
}
