/*
 * @file
 * Provides the layout styles for layout_three_col.


.layout--three-col-section.padded-row {
  padding: 15px;
}

.layout--three-col-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--three-col-section > .layout__region {
  flex: 0 1 100%;
}

.layout--three-col-section .layout__region.padded-columns {
  padding: 15px;
}

@media screen and (min-width: 40em) {
  .layout--three-col-section--25-50-25 > .layout__region--first,
  .layout--three-col-section--25-50-25 > .layout__region--third,
  .layout--three-col-section--25-25-50 > .layout__region--first,
  .layout--three-col-section--25-25-50 > .layout__region--second,
  .layout--three-col-section--50-25-25 > .layout__region--second,
  .layout--three-col-section--50-25-25 > .layout__region--third {
    flex: 0 1 25%;
    max-width: 25%;
  }
  .layout--three-col-section--25-50-25 > .layout__region--second,
  .layout--three-col-section--25-25-50 > .layout__region--third,
  .layout--three-col-section--50-25-25 > .layout__region--first {
    flex: 0 1 50%;
    max-width: 50%;
  }
  .layout--three-col-section--33-34-33 > .layout__region--first,
  .layout--three-col-section--33-34-33 > .layout__region--third {
    flex: 0 1 33%;
    max-width: 33%;
  }
  .layout--three-col-section--33-34-33 > .layout__region--second {
    flex: 0 1 34%;
    max-width: 34%;
  }
}
 */
