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

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