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

/**
 * @file
 * Area specific theming
 */

/*
  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: linear-gradient(var(--c-theme-color), var(--c-theme-color-shade));
}

@media (min-width: 901px) {
    .section-strip--node {
      background: linear-gradient(var(--c-theme-color), var(--c-theme-color-shade-80) );
    }
  }

.path-node .block-page-title-block h1.page-title {
    border-top: solid 8px var(--c-theme-color);
  }

.path-node .block-page-title-block.has-featured-category h1.page-title {
    border-top: none;
  }

.path-node .block-page-title-block .field--name-field-featured-content-category {
    border-top: solid 8px var(--c-theme-color);
  }

.block--themed .block__heading, .block--card .block__heading {
    background: linear-gradient(var(--c-theme-color), var(--c-theme-color-shade));
    color: white;
    margin: 0;
    padding: calc(var(--sesqui-space)/2) var(--responsive-block-padding);
  }
