.block-people {
  font: var(--font-ingress);
  font-size: var(--font-size-small);
}
.block-people__filters {
  margin-bottom: 4em;
}
.block-people__live:empty {
  display: none;
}
.block-people__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2rem;
}
@media screen and (max-width: 1024px) {
  .block-people__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .block-people__list {
    font-size: 14px;
    gap: 2rem 1rem;
  }
}
.block-people__item {
  margin: 0;
}
.block-people__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.block-people__image {
  margin-bottom: 1.5rem;
}
.block-people__image-link {
  display: block;
  text-decoration: none;
}
.block-people__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.block-people__content {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  flex: 1;
}
.block-people__name {
  margin: 0;
  font: var(--fontbase);
  font-size: var(--font-size-h5);
  line-height: 1.2;
}
.block-people__name-link {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.block-people__name-link:hover, .block-people__name-link:focus {
  color: var(--fg);
  text-decoration: underline;
}
.block-people__titles {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.block-people__job-title, .block-people__job-title-2 {
  margin: 0;
}
.block-people__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
@media screen and (max-width: 600px) {
  .block-people__contact {
    word-break: break-all;
  }
}
.block-people__contact-link {
  color: inherit;
  text-decoration: none;
}
.block-people__contact-link:hover, .block-people__contact-link:focus {
  text-decoration: underline;
}
.block-people__expertise {
  margin-top: auto;
  white-space: pre-line;
}