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

.layout--threecol-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.layout--threecol-row > .layout__region {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.33333%;
  flex: 0 1 33.3333%;
}
