.people .people-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.people .people-container .item {
  overflow: hidden;
  position: relative;
}
.people .people-container .item .item__content {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}
.people .people-container .item .item__content .name {
  font-weight: 500;
}
.people .people-container .item .item__content .position {
  opacity: 0.75;
}
.people .people-container .item .item__content .social-links {
  display: flex;
  gap: 16px;
}
.people .people-container .item .item__content .social-links a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.people .people-container .item .item__content .social-links a.linkedin {
  background-image: url(../../../../../../uploads/tenweb-theme/images/about_us/linkedin.svg);
}
.people .people-container .item .item__content .social-links a.x {
  background-image: url(../../../../../../uploads/tenweb-theme/images/about_us/x.svg);
}
