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

/**
 * @file
 * Front page specific styles
 */

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

/* */

@media (min-width: 569px) {
    .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-row-gap: var(--double-space);
      margin-bottom: var(--double-space);
      align-items: stretch;
    }
        .path-frontpage .section--card-grid .layout__region .block > div {
          height: 100%;
        }
          .path-frontpage .section--card-grid .layout__region .block > div > .view {
            height: 100%;
          }
            .path-frontpage .section--card-grid .layout__region .block > div > .view > .view-content {
              height: 100%;
            }
              .path-frontpage .section--card-grid .layout__region .block > div > .view > .view-content > .card {
                height: 100%;
              }
  }

/*@media (width > $max-width) { */

/*  .layout:not(.section--in-the-know) .card.card--w-image:not(.card--hero) { */

/*    display: grid; */

/*    grid-template-areas: "image label" "image title" "image body"; */

/*    grid-template-columns: 1fr 1fr; */

/*    grid-template-rows: auto auto 1fr; */

/*    .card__image { */

/*      grid-area: image; */

/*      height: 100%; */

/*      min-width: 50%; */

/*    } */

/*    .card__label { */

/*      grid-area: label; */

/*    } */

/*    .card__title { */

/*      grid-area: title; */

/*    } */

/*    .card__body { */

/*      grid-area: body; */

/*    } */

/*  } */

/*} */

.path-frontpage .view-featured-content.hero .card .card__title {
      font-size: var(--fs-h1);
      line-height: var(--lh-h1);
    }

@media (min-width: 933px) {
      .path-frontpage .view-featured-content.hero .view-content .card {
        display: -ms-grid;
        display: grid;
            grid-template-areas: "hero";
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
      }
          .path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper {
            grid-area: hero;
            height: 100%;
            -ms-grid-row-align: center;
                align-self: center;
            width: 44vw;
            max-width: 36rem;
            margin: 0;
          }
          .path-frontpage .view-featured-content.hero .view-content .card .hero__card {
          padding: 0;
          height: 100%;
          margin: 0;
          background-color: rgba(255,255,255,.9);
          overflow: auto;
    }
        .path-frontpage .view-featured-content.hero .view-content .card .hero__image {
          grid-area: hero;
        }
  }

@media (min-width: 933px) {
      .path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
      }
      .path-frontpage .view-featured-content.hero .view-content .card .hero__image {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
      }
}

@media (min-width: 933px) {

.path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper {
      margin: auto;
      max-width: var(--max-width);
      padding-left: var(--space);
      padding-right: var(--space);
      width: 100%
      /*display: flex; */
      /*align-items: center; */
  }
      .path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper .hero__card {
        margin-left: var(--space);
        height: auto;
        margin-top: var(--triple-space);
        width: calc(65% - 32px);
      }
    }

@media (min-width: 1101px) {
      .path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper .hero__card {
        width: calc(60% - 64px);
      }
    }

@media (min-width: 1271px) {
    .path-frontpage .view-featured-content.hero .view-content .card .hero__card__wrapper .hero__card {
      width: calc(50% - 64px);
    }
  }

@media (min-width: 933px) and (max-width: 1100px) {
      .path-frontpage .view-featured-content.hero .card .card__title--length-35 {

      }
      .path-frontpage .view-featured-content.hero .card .card__title--length-50 {
        /*font-size: var(--fs-h2); */
        /*line-height: var(--lh-h2); */
      }
      .path-frontpage .view-featured-content.hero .card .card__title--length-63 {
        font-size: var(--fs-h2);
        line-height: var(--lh-h2);
      }
      .path-frontpage .view-featured-content.hero .card .card__title--length-75 {
        font-size: var(--fs-h3);
        line-height: var(--lh-h3);
      }
  }
