.persons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .persons {
    gap: 44px 27px;
  }
}
.persons .person-card {
  position: relative;
  width: 100%;
  background: var(--ff);
  border-radius: 13px;
  padding: 17px 17px 17px 21px;
  transition: box-shadow 0.2s;
  min-height: 140px;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .persons .person-card {
    width: calc(50% - 13.5px);
    padding: 27px 27px 27px 33px;
  }
}
.persons .person-card:hover {
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.18), 0 3px 12px 0 rgba(0, 0, 0, 0.09);
}
.persons .person-card:first-child .person-img, .persons .person-card:last-child .person-img {
  border: 4px solid var(--75);
}
.persons .person-card.active {
  position: fixed;
  z-index: 333;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-height: 90vh;
  left: 50%;
  box-shadow: 0 0 333px 100vw var(--25);
}
@media screen and (min-width: 1200px) {
  .persons .person-card.active {
    width: min(647px, 90%);
  }
}
.persons .person-card.active .person-inner {
  max-height: calc(90vh - 52px);
  overflow: auto;
}
@media screen and (min-width: 640px) {
  .persons .person-card.active .person-inner {
    max-height: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  .persons .person-card.active .person-inner .person-years {
    font-size: 18px;
  }
}
.persons .person-card.active .person-link {
  transform: rotate(180deg);
}
.persons .person-card.active .person-text {
  display: block;
}
.persons .person-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}
.persons .person-photo {
  text-align: center;
}
.persons .person-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--bd);
  border: 4px solid var(--e4);
  display: inline-block;
}
@media screen and (min-width: 640px) {
  .persons .person-img {
    width: 120px;
    height: 120px;
  }
}
.persons .person-img--default {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--25);
  font-size: 16px;
  background: var(--bd);
}
.persons .person-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 17px;
  text-align: left;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .persons .person-info {
    max-width: calc(100% - 112px);
  }
}
.persons .person-name {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: var(--25);
}
@media screen and (min-width: 640px) {
  .persons .person-name {
    font-size: 32px;
    line-height: 100%;
  }
}
.persons .person-position {
  font-weight: 350;
  font-size: 14px;
  line-height: 100%;
  color: var(--25);
  margin-top: 7px;
}
@media screen and (min-width: 640px) {
  .persons .person-position {
    font-size: 26px;
    line-height: 92%;
  }
}
.persons .person-years {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  text-transform: uppercase;
  color: var(--e4);
  margin-top: 7px;
}
@media screen and (min-width: 640px) {
  .persons .person-years {
    font-size: 32px;
    line-height: 100%;
  }
}
.persons .person-slogan {
  font-weight: 400;
  width: calc(100% - 42px);
  font-size: 20px;
  line-height: 20px;
  color: var(--75);
  margin-top: 15px;
}
@media screen and (min-width: 1000px) {
  .persons .person-slogan {
    width: calc(100% - 56px);
    font-size: 32px;
    line-height: 106%;
  }
}
.persons .person-text {
  display: none;
  font-weight: 350;
  font-size: 14px;
  line-height: 14px;
  color: var(--25);
  padding-right: 41px;
  margin-top: 15px;
}
@media screen and (min-width: 640px) {
  .persons .person-text {
    font-size: 22px;
    line-height: 24px;
  }
}
.persons .person-link {
  position: absolute;
  bottom: 17px;
  right: 17px;
  width: 31px;
  height: 31px;
  cursor: pointer;
}
@media screen and (min-width: 640px) {
  .persons .person-link {
    bottom: 27px;
    right: 27px;
  }
}

/*# sourceMappingURL=style.css.map */
