#team .s2 {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

#team .s2 .container-inner {
  position: relative;
  z-index: 10;
}

#team .s2 .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  row-gap: 3.5rem;
}

#team .s2 .person img {
  width: 100%;
}

#team .s2 .person .info {
  position: relative;
  padding-right: 2.3rem;
  margin-top: 1rem;
}

#team .s2 .person .info .name {
  font-size: 1.7rem;
  line-height: 1.17em;
  font-weight: 400;
  transition: all .3s ease;
}

#team .s2 .person .info .title {
  font-size: 1.2rem;
  line-height: 1em;
  margin-top: 5px;
}

#team .s2 .person .info::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: url(/i/svg/team-plus.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

#team .s2 .person:hover .name {
  background: linear-gradient(105deg, #C48E51 17.6%, #FFD9A1 92.59%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#team .s2 .person:hover .info::after {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  #team .s2 .wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  #team .s2 .person .info::after {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 980px) {
  #team .s2 .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  #team .s2 .wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  #team .s2 .person .info .name {
    font-size: 1.5rem;
  }
}
