.person {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .person {
    flex-direction: row-reverse;
  }
}
.person__sidebar {
  margin: 0 0 3rem;
}
@media screen and (min-width: 769px) {
  .person__sidebar {
    width: 30%;
    padding: 0 0 0 3rem;
  }
}
.person__sidebar img {
  margin: 0 auto 1rem;
  border-radius: 1rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .person__content {
    width: 70%;
  }
}
.person h2 {
  font-weight: normal;
  line-height: 4rem;
}
.person--body {
  line-height: 3.2rem;
}
.person__profile {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  position: relative;
  border-radius: 1.2rem;
  background-color: #ffffff;
  box-shadow: 0.2rem 0.4rem 1rem 0 rgba(174, 181, 184, 0.4);
}
.person__profile.card {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .person__profile.card {
    margin: 0 auto 1.5rem;
  }
}
.person__profile.card:hover {
  text-decoration: underline;
}
.person__profile.card:hover .card__link-text {
  text-decoration: underline;
}
.person__profile.card:hover .card__link-text .fa-arrow-right::before {
  display: inline-block;
}
.person__profile .card__title {
  font-family: Merriweather, Georgia, serif;
  font-weight: normal;
}
.person__profile .card__title, .person__profile .card__content {
  padding: 0;
  margin: 1.6rem 1.6rem 0;
}
.person__profile .card__content {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 769px) {
  .person__profile {
    flex-basis: 23%;
  }
}
.person__name {
  color: #01579b;
  text-transform: uppercase;
  font-weight: bold;
}
.person__bio a {
  font-weight: bold;
}