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

@media screen and (min-width: 30em) {
  .layout--fourcol-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 75em) {
  .layout--fourcol-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
/*# sourceMappingURL=fourcol_section.css.map */
