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

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