/*
 * 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-strip {
  /* background: rgba($c-theme-general-rgb,.8); */
  /* padding-inline: var(--half-space); */
  display: block;
}

@media (min-width: 1271px) {

.section-strip {
    padding-left: 0;
    padding-right: 0
}
  }

.section-strip__inner {
    color: white;
    font-family: var(--sans-serif);
    text-transform: uppercase;
    font-size: var(--fs-h3);
    /* line-height: var(--lh-h3); */
    line-height: 1.1;
    margin-left: var(--space);
    margin-right: var(--space);
    padding: var(--space) 0 var(--half-space);
  }

@media (min-width: 569px) {

.section-strip__inner {
      margin-left: var(--space);
      margin-right: var(--space);
      /* margin-block-start: var(--half-space); */
      padding-left: var(--space);
      padding-right: var(--space)
  }
    }

@media (min-width: 1271px) {

.section-strip__inner {
      margin: auto;
      max-width: var(--max-width);
      padding-left: var(--double-space);
      padding-right: var(--double-space)
  }
    }

.section-strip__inner:after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
    background-image: url("../../images/dotted-white.png"); 
  background-repeat: repeat-x;
      margin-top: var(--quarter-space);
    }

.section-strip__inner h1 {
      line-height: 1;
    }

/* min-height: 5.5rem; */

@media (min-width: 569px) {

.section-strip--landing {
      /* min-height: 6.5rem; */
  }
    }

.section-strip--landing {
    display: flex;
    align-items: center;
}

.section-strip--landing h1 {
      margin: 0;
    }

.section-strip--landing .section-strip__inner {
    width: 100%;
  }

