.about-page-team {
  padding-top: 300px;
}
.about-page-team-top {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.about-page-team-top-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.about-page-team-top-column .title-label {
  position: absolute;
  top: -35px;
}
.about-page-team-top .description {
  max-width: 520px;
}
.about-page-team-photo {
  position: relative;
  flex: 0 0 calc(20% - 8px);
  overflow: hidden;
}
.about-page-team-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1);
}
.about-page-team-photo::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  height: calc(100% - 20px);
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.about-page-team-photo:hover::after {
  opacity: 1;
}
.about-page-team-photo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 110px 30px 0;
}

.about-page-team-photo-button {
  display: none;
}

.team-lazy-img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.team-lazy-img.loaded {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 992px) {
  .about-page-team {
    padding-top: 120px;
  }
  .about-page-team-top {
    flex-direction: column;
    gap: 25px;
  }
  .about-page-team-top-column {
    gap: 25px;
  }
  .about-page-team-photo-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about-page-team-photo {
    width: calc(50% - 8px);
    flex: initial;
  }
  .about-page-team-photo-button {
    margin: 0 auto;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    border: none;
    position: relative;
  }
  .about-page-team-photo-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
      #000 0deg 90deg,
      rgba(0, 0, 0, 0.1215686275) 90deg 360deg
    );
    -webkit-mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 2px),
      #000 calc(100% - 1px)
    );
    mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 2px),
      #000 calc(100% - 1px)
    );
  }
}
