.hh-widget {
  position: relative;
  z-index: 1;
}
.hh-widget__content {
  border-radius: 16px;
  border: var(--border-blue-5);
  overflow: hidden;
}
.people-cards {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .people-cards {
    flex-direction: column;
  }
}
.people-cards__card {
  flex: 1;
  border: var(--border-blue-5);
}
.people-cards__card-image {
  width: 100%;
  aspect-ratio: 1.24/1;
  object-fit: cover;
}
.people-cards__card-content {
  padding: 32px 64px 32px 32px;
}
@media screen and (max-width: 900px) {
  .people-cards__card-content {
    padding: 24px 16px;
  }
}
.people-cards__card-content-title {
  margin-bottom: 4px;
}
.people-cards__card-content-text {
  margin-bottom: 40px;
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
