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

/**
 * @file
 */

/*
  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) {

.bio {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "image title"  "image body";
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-grid-columns: 128px var(--double-space) auto;
    grid-template-columns: 128px auto;
    grid-column-gap: var(--double-space);
    margin-top: var(--double-space)
}
  }

@media (min-width: 901px) and (max-width: 1270px) {

.bio {
    display: flex;
    flex-direction: column
}
}

@media (min-width: 1271px) {

.bio {
    column-gap: var(--sesqui-space)
}
  }

.bio__image {
    grid-area: image;
  }

@media (min-width: 901px) and (max-width: 1270px) {

.bio__image {
      -ms-grid-row-align: center;
          align-self: center
  }
    }

.bio__image img {
      border-radius: 50%;
      margin-bottom: var(--space);
    }

@media (min-width: 901px) and (max-width: 1270px) {

.bio__image img {
        max-width: 230px;
        height: auto
    }
      }

.bio__title {
    margin-top: var(--space);
    grid-area: title;
    margin-bottom: var(--space);
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
  }

@media (min-width: 569px) {

.bio__title {
      margin-top: 0
  }
    }

.bio__body {
    grid-area: body;
  }

@media (min-width: 569px) {

.bio__image {
-ms-grid-row: 1;
-ms-grid-row-span: 2;
-ms-grid-column: 1
}

.bio__title {
-ms-grid-row: 1;
-ms-grid-column: 3
}

.bio__body {
-ms-grid-row: 2;
-ms-grid-column: 3
}
}

@media (min-width: 901px) {

.view-rtv-bios .view-content {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sesqui-space)
  }
      .view-rtv-bios .view-content .bio {
        /*width: min-content; */
        /*flex-grow: 1; */
        width: calc(33.33333% - var(--space));
        flex-grow: 0;
      }
    }

@media (min-width: 1271px) {

.view-rtv-bios .view-content {
      gap: var(--double-space)
  }
      .view-rtv-bios .view-content .bio {
        width: calc(50% - var(--space));
      }
    }

.page-node-type-rtv-bios .field--name-field-headshot {
    padding-bottom: var(--space);
  }

@media (min-width: 701px) {

.page-node-type-rtv-bios .field--name-field-headshot {
      float: left;
      padding-right: var(--space)
  }
    }
