.testimonials {
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonials h2 {
  color: var(--grayish-blue);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 5rem;
}
.testimonial p {
  width: 80%;
  text-align: center;
  color: var(--very-dark-desaturated-blue);
}

.testimonials__articles {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.testimonial {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial h3 {
  font-weight: 900;
}

.testimonial__job {
  color: var(--grayish-blue) !important;
  margin-top: 1rem;
}

.portrait {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

@media screen and (max-width: 700px) {
  .testimonials {
    height: 100%;
  }
  .testimonials__articles {
    flex-direction: column;
    width: 100%;
  }
  .testimonial {
    width: 100%;
    margin-bottom: 4rem;
  }
  .testimonials h2 {
    margin-bottom: 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: normal;
    margin: 4rem 1rem;
  }
}
