.person_profile {
  display: flex;
  align-items: center;
  gap: 32px;
}

.person_profile .h3-basis {
  margin-top: 0;
}

.person_profile p {
  font-size: 1.5rem;
}

.person_profile.type-2 {
  align-items: flex-start;
  gap: 20px;
}

.person_profile img {
  width: 150px;
}

.person_profile.type-2 img {
  width: 100px;
}
@media screen and (max-width: 979px) {
  .person_profile {
    gap: 24px;
  }

  .person_profile.type-2 {
    flex-direction: column;
    gap: 4px;
  }

  .person_profile.type-2 .h5-basis {
    margin-bottom: 0;
  }

  .person_profile.type-2 p {
    line-height: 1.6;
  }

  .person_profile.type-2 img {
    width: 76px;
  }
}


