/*
 * @file
 * Provides the layout styles for layout_twocol.
 */

.layout--fourcol {
  padding: 0 1.5rem;
  display: grid;
  row-gap: 2rem;
}
.grid-row .layout--fourcol {
  padding: 0;
}
.layout--fourcol .layout__region {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 750px) {
  .layout--fourcol {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 0.9125rem));
    justify-content: space-between;
    row-gap: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .layout--fourcol {
    grid-template-columns: repeat(4, calc(25% - 0.9125rem));
  }
}

