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

.layout--onecol-row {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; */

  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0px;
}

/* .layout--onecol-row > .layout__region {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  width: 100%;
} */
