@media screen and (min-width: 751px) {
  .related_interview__list {
    display: flex;
    gap: 20px;
  }
  .person-card {
    flex: 1;
    max-width: -webkit-calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 750px) {
  .related_interview__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .person-card {
    width: 100%;
  }
}

.person-card a {
  text-decoration: none;
}
.person-card__thumbnail {
  padding-top: 66%;
  background: #ccc center / cover no-repeat;
}
.person-card__title {
  color: #333;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .person-card__title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .person-card__title {
    margin-top: 30px;
  }
}