/*
 * @file
 * Provides the layout styles for layout_threecol_33_34_33.
 */
.layout--threecol-33-34-33 {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48rem) {
  .layout--threecol-33-34-33 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 62rem) {
  .layout--threecol-33-34-33 {
    grid-template-columns: repeat(3, 1fr);
  }
}
