.media-quote {
  position: relative;
  width: 100%;
}
.media-quote__media-wrapper {
  position: sticky;
  top: 1.5rem;
  bottom: 0;
  z-index: -1;
  height: calc(100vh - 3rem);
  margin-top: 0;
}
@media screen and (min-width: 35em) {
  .media-quote__media-wrapper {
    top: 2.5rem;
    height: calc(100vh - 5rem);
  }
}
.media-quote__media-wrapper video,
.media-quote__media-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.media-quote__content {
  height: 88vh;
  margin: 0;
  padding: 0 2rem;
}
.media-quote__text {
  margin: -14rem auto 6rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 38.75rem;
}
@media screen and (min-width: 50em) {
  .media-quote__text {
    padding: 3rem 4rem;
    font-size: 2rem;
  }
}
