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

/**
 * @file
 * In the Know section on homepage
 */

/*
  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--in-the-know {
  background-color: white;
  margin-left: var(--half-space);
  margin-right: var(--half-space);
  overflow: auto;
  margin-bottom: var(--space);
}

.section--in-the-know .layout__region .block {
      margin: 0;
      padding-left: var(--responsive-block-padding);
      padding-right: var(--responsive-block-padding);
    }

@media (min-width: 569px) {

.section--in-the-know {
    margin-left: var(--space);
    margin-right: var(--space)
}
  }

@media (min-width: 901px) {

.section--in-the-know {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "heading heading heading" "first second third";
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr
  /*.layout__region { */
  /*    padding: var(--space); */
  /*  } */
}
  }

.section--in-the-know .layout__region--first {
      grid-area: first;
    }

.section--in-the-know .layout__region--second {
      grid-area: second;
    }

.section--in-the-know .layout__region--third {
      grid-area: third;
    }

@media (min-width: 901px) {

.section--in-the-know .layout__region--first {
    -ms-grid-row: 2;
    -ms-grid-column: 1
}

.section--in-the-know .layout__region--second {
    -ms-grid-row: 2;
    -ms-grid-column: 2
}

.section--in-the-know .layout__region--third {
    -ms-grid-row: 2;
    -ms-grid-column: 3
}
}

.section--in-the-know__heading {
    color: white;
    background-color: var(--c-blue);
    margin-left: var(--half-space);
    margin-right: var(--half-space);
    padding: var(--half-space) var(--responsive-block-padding);
    margin-bottom: 0;
  }

@media (min-width: 569px) {

.section--in-the-know__heading {
      margin-top: var(--sesqui-space);
      margin-left: var(--space);
      margin-right: var(--space)
  }
    }

.section--in-the-know .card {
    background-color: transparent;
    margin-bottom: 0;
    padding-bottom: var(--half-space);
  }

.section--in-the-know .card__label, .section--in-the-know .card__title, .section--in-the-know .card__body {
       margin-left: 0;
       margin-right: 0;
     }
