/*
 * @file
 * Provides the layout styles for three-column layout section.
 */
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.layout--threecol-section {
  display: grid;
  gap: 16px;
}

@media screen and (min-width: 48em) {
  .layout--threecol-section {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
@media screen and (min-width: 48em) {
  .layout--threecol-section--25-50-25 > .layout__region--first, .layout--threecol-section--25-50-25 > .layout__region--third, .layout--threecol-section--25-25-50 > .layout__region--first, .layout--threecol-section--25-25-50 > .layout__region--second, .layout--threecol-section--50-25-25 > .layout__region--second, .layout--threecol-section--50-25-25 > .layout__region--third {
    flex: 0 1 calc(25% - 12px);
  }
}
@media screen and (min-width: 48em) {
  .layout--threecol-section--25-50-25 > .layout__region--second, .layout--threecol-section--25-25-50 > .layout__region--third, .layout--threecol-section--50-25-25 > .layout__region--first {
    flex: 0 1 calc(50% - 12px);
  }
}
@media screen and (min-width: 48em) {
  .layout--threecol-section--33-34-33 > .layout__region--first, .layout--threecol-section--33-34-33 > .layout__region--second, .layout--threecol-section--33-34-33 > .layout__region--third {
    flex: 0 1 calc(33.33% - 12px);
  }
}
/*# sourceMappingURL=threecol_section.css.map */
