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

/* */

.partner {
  /*@media (width > $narrow) { */
  /*  display: grid; */
  /*  grid-template-areas: "title"  "body"; */
  /*  grid-template-rows: auto 1fr; */
  /*  grid-template-columns: auto; */
  /*  column-gap: var(--double-space); */
  /*  &--has-logo { */
  /*    grid-template-areas: "image title"  "image body"; */
  /*    grid-template-columns: 200px auto; */
  /*  } */
  /*} */
  /*@media (width > $desktop)  { */
  /*  grid-template-areas: "title" "body"; */
  /*  grid-template-rows: auto auto; */
  /*  grid-template-columns: auto; */
  /*  &--has-logo { */
  /*    grid-template-areas: "image" "title" "body"; */
  /*    grid-template-rows: 1fr auto auto; */
  /*  } */
  /*} */
  /*@media (width > $max-width) { */
  /*  column-gap: var(--sesqui-space); */
  /*} */
  /*&__image { */
  /* */
  /*  display: flex; */
  /*  justify-content: center; */
  /*  grid-area: image; */
  /*  @media (width > $desktop)  { */
  /*    align-self: stretch; */
  /*    margin-bottom: var(--space); */
  /*  } */
  /*  img { */
  /*    margin-bottom: var(--space); */
  /*    align-self: center; */
  /*    @media (width > $desktop)  { */
  /*      max-width: 230px; */
  /*      height: auto; */
  /*    } */
  /*  } */
  /*} */
  /*&__title { */
  /*  margin-top: var(--space); */
  /*  grid-area: title; */
  /*  margin-bottom: 0; */
  /*  font-size: var(--fs-h4); */
  /*  line-height: var(--lh-h4); */
  /*  @media (width > $narrow) { */
  /*    margin-top: 0; */
  /*  } */
  /*} */
  /*&__body { */
  /*  grid-area: body; */
  /*} */
}

.partner-card {
    background-color: white;
    padding: var(--double-space);
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

.partner-card.views-row {
      margin-bottom: 0  ;
    }

.partner__title {
    margin-top: var(--space);
    grid-area: title;
    margin-bottom: 0;
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: 500;
    font-family: var(--sans-serif);
  }

@media (min-width: 569px) {

.partner__title {
      margin-top: 0
  }
    }

.partner__logo {
    position: relative;
  }

.partner__logo svg.ext {
      position: absolute;
      right: -14px;
    }

.partner__logo + .partner__title {
    margin-top: var(--space);
  }

.partner__logo + .partner__location {
    margin-top: var(--space);
  }

.partner-card .partner__logo {
    display: flex;
    justify-content: center;
  }

a.partner-card:hover, a.partner-card:active {
  background-color: var(--c-light-blue);
}

@media (min-width: 901px) {

.view-villagers .view-content {
      display: -ms-grid;
      display: grid;
      grid-gap: var(--sesqui-space);
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      margin-bottom: var(--sesqui-space)
  }
      .view-villagers .view-content .bio {
        width: min-content;
        flex-grow: 1;
      }
    }

@media (min-width: 1271px) {

.view-villagers .view-content {
      gap: var(--double-space);
      margin-bottom: var(--double-space)
  }
    }
