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

.layout--threecol-row {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 33.33333%));
   grid-template-rows: 1fr;
   grid-row-gap: 0px;
   grid-column-gap: 30px;
   grid-auto-rows: max-content;
 }
