@charset "UTF-8";
/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.

@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.

@returns {List} A list of converted values.
*/
.people-feed__filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
  padding: 0px 0 15px;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .people-feed__filters {
    width: calc(100% - 22px);
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .people-feed__filters {
    width: calc(100% - 28px);
  }
}

.people-feed__filter {
  width: 48%;
}

@media (min-width: 768px) {
  .people-feed__filter {
    width: auto;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .people-feed__filter.all {
    margin-right: auto;
  }
}

.people-feed__filter .people-filters__btn, .people-feed__filter .people-filter__clear {
  position: relative;
  margin: 0;
  font-size: 16px;
  color: #000;
}

@media (min-width: 576px) {
  .people-feed__filter .people-filters__btn, .people-feed__filter .people-filter__clear {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .people-feed__filter .people-filters__btn, .people-feed__filter .people-filter__clear {
    font-size: 20px;
  }
}

.people-feed__filter .people-filters__btn.active, .people-feed__filter .people-filter__clear.active {
  font-weight: 600;
  text-decoration: underline;
}

.people-feed__filter .people-filters__btn.active:after, .people-feed__filter .people-filter__clear.active:after {
  display: none;
}

.people-feed__name {
  font-size: 16px;
  line-height: 1.2;
  margin: 5px 0;
}

@media (min-width: 992px) {
  .people-feed__name {
    margin-top: 10px;
    font-size: 24px;
    margin: 10px 0 5px;
  }
}

.people-feed__job-title {
  font-size: 14px;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .people-feed__job-title {
    font-size: 16px;
  }
}

.people-feed__grid .people-grid__card-link:hover {
  text-decoration: none;
}

.people-feed__grid .people-grid__card picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}

.people-feed__grid .people-grid__card picture img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.people-name {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 5px;
}

.people-filter {
  max-height: 0;
  opacity: 0;
  padding: 30px 0 0;
  pointer-events: none;
  transform: translateY(-30px);
  transition: .4s;
}

.people-filter.active {
  max-height: 500px;
  margin-bottom: 0;
  opacity: 1;
  padding-bottom: 30px;
  pointer-events: all;
  transform: translateY(0);
}

.people-filters__btns {
  margin: 0 -10px 24px;
}

@media (min-width: 576px) {
  .people-filters__btns {
    margin-bottom: 0;
  }
}

.people-filters__btn {
  margin: 5px 10px;
}

.people-filters__btn:hover {
  text-decoration: underline;
}

.people-filters__btn.active {
  font-weight: 600;
  text-decoration: underline;
}

.people-filters__btn.active::after {
  content: '×';
}

.people-nav {
  display: flex;
  justify-content: space-between;
}

.people-nav__toggle-view {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.people-nav__toggle-view svg {
  margin-right: 15px;
}

.people-nav__toggle-view.active .people-nav__toggle-view--grid {
  opacity: 1;
}

.people-nav__toggle-view.active .people-nav__toggle-view--list {
  opacity: 0;
}

.people-nav__toggle-view--grid {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.people-container {
  position: relative;
}

.people-grid {
  margin: 0 0 0 -5px;
  width: calc(100% + 5px);
}

@media (min-width: 768px) {
  .people-grid {
    margin: 0 0 0 -15px;
    width: calc(100% + 15px);
  }
}

.people-grid__card {
  padding: 0 5px 20px;
}

@media (min-width: 768px) {
  .people-grid__card {
    padding: 0 15px 30px;
  }
}

.people-grid__sizer,
.people-grid__card {
  width: 50%;
  min-height: 225px;
  float: left;
  /*
	@include media-breakpoint-up(lg) {
		width: 25%;
		min-height: 336px;
	}
	@include media-breakpoint-up(xl) {
		width: 16.6666%;
		min-height: 348px;
	}
	*/
}

@media (min-width: 768px) {
  .people-grid__sizer,
  .people-grid__card {
    width: 33%;
  }
}

.people-grid__card-link {
  display: block;
  text-decoration: none;
}

.people-grid__card-link, .people-grid__card-link:hover, .people-grid__card-link:focus, .people-grid__card-link:active, .people-grid__card-link:active:focus {
  color: #000;
}

.people-grid__card-link:hover {
  text-decoration: underline;
}

.people-list,
.people-grid {
  opacity: 0;
  transition: .4s;
  transform: translateY(20px);
  pointer-events: none;
  display: none;
}

.people-list.active,
.people-grid.active {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.people-list {
  background: #FFF;
  position: absolute;
  transition: .4s;
  width: 100%;
  z-index: 3;
}

.people-list {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .people-list {
    font-size: calc(18px + 4 * ((100vw - 768px) / 224));
  }
}

@media screen and (min-width: 992px) {
  .people-list {
    font-size: 22px;
  }
}

.people-list__header {
  font-weight: bold;
  padding-bottom: 0.9375rem;
  text-transform: uppercase;
}

.people-list__header-inner {
  align-items: center;
  display: flex;
}

.people-list__sort {
  background: transparent no-repeat center/contain url("data:image/svg+xml;charset=utf8,%3Csvg height='16' viewBox='0 0 17 16' width='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.5 0 8.5 16h-17z'/%3E%3C/svg%3E");
  border: 0;
  display: block;
  height: 16px;
  padding: 0;
  width: 17px;
}

.people-list__sort--inactive {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg height='16' viewBox='0 0 17 16' width='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.5 0 8.5 16h-17z' fill='%23d9dbe2'/%3E%3C/svg%3E");
}

.people-list__sort--desc {
  transform: scaleY(-1);
}

.people-list__header-text {
  cursor: pointer;
  margin-left: 10px;
}

.people-list__link {
  display: block;
  padding: 4px 0;
  transition: .4s;
}

.people-list__link, .people-list__link:hover, .people-list__link:focus, .people-list__link:active, .people-list__link:active:focus {
  color: #000;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .people-list__row th:nth-child(n+2), .people-list__row td:nth-child(n+2) {
    display: none;
  }
}

.people-list__row.hide {
  display: none;
}

.people-list__row:hover .people-list__link {
  color: #333333;
}

.people__none {
  display: none;
  font-size: 28px;
  font-size: 1.75rem;
  padding: 2.5rem 0;
  text-align: center;
}

.people__none.show {
  display: block;
}

.people-filter__clear {
  font-size: 16px;
  font-size: 1rem;
}

.people-filter__clear:hover {
  text-decoration: none;
}

/*# sourceMappingURL=people-feed.css.map */
