/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

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

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*12px */

/*20px */

/*24px, */

/*32px */

/*44px (named after omicron variant BS.2.75.2) */

/*48px */

/*desktop + 32px; */

/*max-width + 64px; */

/* RGB colors, useful for when you need to include a color in an RGBA set. */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

.layout--twocol-section {

}

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

@media (min-width: 769px) {
.layout--twocol-section {
  display: -ms-grid;
  display: grid;
  grid-gap: var(--double-space);
}
  .layout--twocol-section.layout--twocol-section--50-50 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  /*.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first, */
  /*.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second { */
  /*  flex: 0 1 50%; */
  /*} */
  /* */
  /*.layout--twocol-section.layout--twocol-section--33-67 > .layout__region--first, */
  /*.layout--twocol-section.layout--twocol-section--67-33 > .layout__region--second { */
  /*  flex: 0 1 33%; */
  /*} */
  /* */
  /*.layout--twocol-section.layout--twocol-section--33-67 > .layout__region--second, */
  /*.layout--twocol-section.layout--twocol-section--67-33 > .layout__region--first { */
  /*  flex: 0 1 67%; */
  /*} */
  /* */
  /*.layout--twocol-section.layout--twocol-section--25-75 > .layout__region--first, */
  /*.layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second { */
  /*  flex: 0 1 25%; */
  /*} */
  /* */
  /*.layout--twocol-section.layout--twocol-section--25-75 > .layout__region--second, */
  /*.layout--twocol-section.layout--twocol-section--75-25 > .layout__region--first { */
  /*  flex: 0 1 75%; */
  /*} */
}
