.new_people {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.new_people__title {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}
.new_people__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.new_people__text p {
  margin-bottom: 28px;
}
.new_people__text p:last-child {
  margin-bottom: 0;
}
.new_people__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
  gap: 60px;
  background: #fafafa;
  border-radius: 12px;
  padding: 80px;
}
.new_people__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #7d7d82;
}
.new_people__item-img {
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
}
.new_people__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new_people__item-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #1c1c20;
  margin-bottom: 12px;
}
.new_people__item-position {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #7d7d82;
  margin-bottom: 12px;
}
.new_people__item-link {
  transition: all 0.3s ease-in-out;
}
.new_people__item-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .new_people__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .new_people {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .new_people__title {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 40px;
  }
  .new_people__text {
    font-size: 14px;
    line-height: 20px;
  }
  .new_people__text p {
    margin-bottom: 20px;
  }
  .new_people__text p:last-child {
    margin-bottom: 0;
  }
  .new_people__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 80px 40px;
  }
}