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

/**
 * @file
 * (Site) Section Strip aka that big color bar that says what section of the site you are on
 */

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

/* */

.section__header {
  background-color: var(--c-block-bg);
  padding: var(--space) var(--responsive-block-padding) 0;
  padding-top: 0;
  margin-bottom: var(--double-space);
  overflow: auto;
  margin-left: calc(var(--space)*-1);
  margin-right: calc(var(--space)*-1);
}

@media (min-width: 569px) {

.section__header {
    margin-left: calc(var(--double-space)*-1);
    margin-right: calc(var(--double-space)*-1);
    padding-left: var(--double-space);
    padding-right: var(--double-space)
}
  }

@media (min-width: 769px) {

.section__header {
    display: flex;
    gap: var(--double-space);
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0
}
    .section__header.layout--twocol-section {
      padding: 0;
    }
    .section__header .layout__region--first {
      order: 2;
      flex-basis: 50%;
    }
    .section__header .layout__region--second {
      order: 1;
      flex-basis: 50%;
      padding: var(--space) 0 var(--sesqui-space) var(--responsive-block-padding);
    }
  }

.section__header .block-field-blocknodesectionsfield-featured-image .field--name-field-featured-image {
      margin-bottom: 0;
    }

.section__header .block-field-blocknodesectionsfield-featured-image .field--name-field-featured-image .field__item {
        margin-bottom: 0;
      }

.section__header .block-field-blocknodesectionsfield-featured-image img {
      width: 100%;
    }

.section__header .block-field-blocknodesectionsfield-featured-image {
    height: 50vw;
    margin-left: calc(var(--space)*-1);
    margin-right: calc(var(--space)*-1);
}

@media (min-width: 569px) {

.section__header .block-field-blocknodesectionsfield-featured-image {
        margin-left: calc(var(--double-space)*-1);
        margin-right: calc(var(--double-space)*-1)
  }
    }

@media (min-width: 769px) {

.section__header .block-field-blocknodesectionsfield-featured-image {
      margin-left: 0;
      margin-right: 0;
      height: 100%
  }
    }

.section__header .block-field-blocknodesectionsfield-featured-image--bg {
      height: 100%;
      background-size: cover;
      background-position: center center;
    }

.section__header .block-field-blocknodesectionsbody {
    padding-top: var(--space);
    margin: 0;
  }

.section__header .field--name-field-call-to-actions {
    margin-bottom: var(--space);
  }

.section__header .field--name-field-call-to-actions--link {
      font-weight: 500;
      display: block;
      line-height: 1.4;
    }

.section__header .field--name-field-call-to-actions--link--image--wrapper {
        display: inline-flex;
        width: 1rem;
        position: relative;
        margin-left: var(--half-space);
      }

.section__header .field--name-field-call-to-actions--link svg {
        position: relative;
      }

/* top: 3px; */

.section__header .field--name-field-call-to-actions--link svg path {
          fill: var(--c-link); 
        }

.section__header .field--name-field-call-to-actions--link:hover svg path {
            fill: var(--c-link-hover);
          }

.block-field-blocknodesectionsfield-call-to-actions {
  margin-bottom: var(--double-space);
}

.block-field-blocknodesectionsfield-call-to-actions a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }