section.people {
  --_card-bg: var(--card-bg, var(--blue-light));
  --_card-bg-hover: var(--card-bg-hover, var(--blue));
  --_btn-bg: var(--btn-bg, var(--yellow));
  --_btn-bg-hover: var(--btn-bg-hover, var(--yellow-light));
}
section.people .intro {
  text-align: center;
}
section.people.bg-blue-light {
  --card-bg: var(--white);
  --btn-bg: var(--white);
  --btn-bg-hover: var(--blue);
}
section.people .scroll-wrapper {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
section.people .scroll-wrapper .wrapper {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  max-width: none;
}
section.people .scroll-wrapper.autoscroll {
  overflow: hidden;
}
section.people .scroll-wrapper .ais-InfiniteHits-item {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
section.people .ais-InfiniteHits-item .person {
  width: 100%;
  display: -ms-grid;
  display: grid;
}
section.people .ais-InfiniteHits-item .person .img-wrapper {
  aspect-ratio: unset;
}
section.people .ais-InfiniteHits-item .person .img-wrapper img {
  aspect-ratio: 1;
}
section.people .person {
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  width: clamp(276px, 30vw, 360px);
}
section.people .person .img-wrapper {
  aspect-ratio: 360/261;
}
section.people .person .img-wrapper img {
  -webkit-transition: var(--bezier);
  transition: var(--bezier);
}
section.people .person .info {
  background: var(--_card-bg);
  padding: 0.9375rem 1.25rem;
  -webkit-transition: var(--bezier);
  transition: var(--bezier);
}
section.people .person .info h3 {
  font: var(--lead-font);
  font-weight: 500;
}
section.people .person .info span {
  font-size: 1rem;
  line-height: 1.4;
}
section.people .person .info mark {
  background: var(--highlight);
}
section.people .person .info .wrapper {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  grid-auto-flow: row;
  width: 100% !important;
}
section.people .person .info .wrapper .titles, section.people .person .info .wrapper .contact {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  row-gap: 0;
}
section.people .person:hover .img-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
section.people .person:hover .info {
  background: var(--_card-bg-hover);
}
section.people .btn {
  background: var(--_btn-bg);
}
section.people .btn:hover {
  background: var(--_btn-bg-hover);
}
section.people .filter .filter-search {
  position: relative;
}
section.people .filter .filter-search #article-suggestions {
  position: absolute;
  width: 150%;
  z-index: 5;
  max-width: unset;
}
section.people .filter .filter-search .ais-SearchBox {
  margin: 0;
}
@container main (min-width: 64.0625rem) {
  section.people .filter .filter-terms {
    padding-top: 10px;
  }
  section.people .filter .filter-terms > span {
    padding-top: 10px;
  }
}
section.people .filter .ais-RefinementList-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
section.people .filter .ais-RefinementList-list .btn {
  background: transparent;
  border: 1px solid var(--grey) !important;
  padding-block: 0.625rem;
}
section.people .filter .ais-RefinementList-list .ais-RefinementList-item--selected .btn {
  background: var(--blue-light) !important;
}

.page-intro + section.people {
  padding-top: 0;
}