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

/**
 * @file
 * Base Layout.
 */

/*
  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. */

/* */

main {
  margin-bottom: var(--double-space);
}

@media (min-width: 569px) {

main {
    display: flex;
    justify-content: center
}
    main .main__inner {
      flex-grow: 1;
    }
  }

.region:not(.region-title) {
  margin: auto;
  max-width: var(--max-width);
  padding-left: var(--half-space);
  padding-right: var(--half-space);
}

@media (min-width: 569px) {

.region:not(.region-title) {
    padding-left: var(--space);
    padding-right: var(--space)
}
  }

.block {
  margin-left: var(--half-space);
  margin-right: var(--half-space);
}

@media (min-width: 569px) {

.block {
    margin-left: var(--space);
    margin-right: var(--space)
}
  }

.block .block {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 701px) {

.l-has-sidebar {
    display: flex;
    gap: var(--double-space)
}
    .l-has-sidebar .l-main {
      order: 1;
      /*flex-grow: 1 */
    }
    .l-has-sidebar .l-sidebar {
      flex-basis: 22rem;
      order: 2;
    }
      /*flex-grow: 0; */
      .l-has-sidebar .l-sidebar h2 {
        font-size: 1.75rem;
      }
  }

.l-has-sidebar .l-sidebar h2 {
      margin-top: 0;
      font-size: 1.5rem;
      margin-bottom: var(--half-space);
    }

.region-breadcrumb {
  margin-bottom: var(--space);
}

@media (min-width: 569px) {
    body:not(.path-frontpage) .section--card-grid .layout__region {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-auto-flow: row;
      grid-gap: var(--double-space);
      margin-bottom: var(--double-space);
      align-items: stretch;
    }
      body:not(.path-frontpage) .section--card-grid .layout__region .block--card {
        display: flex;
        flex-direction: column;
        align-content: stretch;
      }
        body:not(.path-frontpage) .section--card-grid .layout__region .block--card .card {
          background-color: transparent;
        }
        body:not(.path-frontpage) .section--card-grid .layout__region .block--card > div {
          flex: 1;
          background-color: var(--c-block-bg);
        }
  }

@media (min-width: 901px) {
  .path-node .region-content {
    /*width: 100vw;*/
  }
}

@media (min-width: 901px) {
    .l--fullwidth .block-page-title-block {
      margin-left: auto;
      margin-right: auto;
      max-width: var(--max-width);
    }
      .l--fullwidth .block-page-title-block h1.page-title {
        margin-left: var(--double-space);
        margin-right: var(--double-space);
      }
    .l--fullwidth .main {
      max-width: var(--max-width);
      margin-left: auto;
      margin-right: auto;
    }
      .l--fullwidth .main .main__inner {
        max-width: none;
        max-width: initial;
        width: 100%;
        margin-left: var(--double-space);
        margin-right: var(--double-space);
      }
  }
