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

.layout--twocol-section--custom {
  display: flex;
  flex-wrap: wrap;
}

div[class*='layout--twocol-section'] {
  padding: 48px;
}

.layout_twocol__wrapper {
  max-width: 1194px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  .layout_twocol__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.layout--twocol-section--custom > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--twocol-section--custom.layout--twocol-section--custom--50-50 > .layout_twocol__wrapper .layout__region--first,
  .layout--twocol-section--custom.layout--twocol-section--custom--50-50 > .layout_twocol__wrapper .layout__region--second {
    flex: 0 1 50%;
  }

  .layout--twocol-section--custom.layout--twocol-section--custom--33-67 > .layout_twocol__wrapper .layout__region--first,
  .layout--twocol-section--custom.layout--twocol-section--custom--67-33 > .layout_twocol__wrapper .layout__region--second {
    flex: 0 1 33%;
  }

  .layout--twocol-section--custom.layout--twocol-section--custom--33-67 > .layout_twocol__wrapper .layout__region--second,
  .layout--twocol-section--custom.layout--twocol-section--custom--67-33 > .layout_twocol__wrapper .layout__region--first {
    flex: 0 1 67%;
  }

  .layout--twocol-section--custom.layout--twocol-section--custom--25-75 > .layout_twocol__wrapper .layout__region--first,
  .layout--twocol-section--custom.layout--twocol-section--custom--75-25 > .layout_twocol__wrapper .layout__region--second {
    flex: 0 1 25%;
  }

  .layout--twocol-section--custom.layout--twocol-section--custom--25-75 > .layout_twocol__wrapper .layout__region--second,
  .layout--twocol-section--custom.layout--twocol-section--custom--75-25 > .layout_twocol__wrapper .layout__region--first {
    flex: 0 1 75%;
  }
}
