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

.layout--fourcol-row {
  display: grid;
  grid-template-columns: minmax(0, 25%) minmax(0, 25%) minmax(0, 25%) minmax(0, 25%);
  grid-template-rows: 1fr;
  grid-row-gap: 0px;
  grid-column-gap: 35px;
  grid-auto-rows: max-content;
}
