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

.layout--threecol-33-34-33 {
  --layout-gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--layout-gap);
}

.layout--threecol-33-34-33 > .layout__region {
  flex: 1 0 100%;
}

@media screen and (min-width: 40em) {
  .layout--threecol-33-34-33 > .layout__region--first,
  .layout--threecol-33-34-33 > .layout__region--second,
  .layout--threecol-33-34-33 > .layout__region--third {
    flex: 1 0 calc(33.3% - var(--layout-gap));
  }
}
