.quote {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  color: #000000;
  min-height: 11.25rem;
}
.bg-gray .quote, .bg-gray-dark .quote, .quote--image {
  color: white;
}
.quote__content {
  position: relative;
}
.quote__content:not(:last-child) {
  margin-bottom: 1.5rem;
}
.quote__text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.875rem;
  font-style: italic;
  line-height: 1.5;
  color: inherit;
  font-weight: 300;
}
.quote__title {
  font-size: 1.125rem;
  color: inherit;
  font-style: italic;
}
.quote__title:not(:last-child) {
  margin-bottom: 2rem;
}
.quote__photo {
  width: 6.25rem;
}
.quote__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.quote__background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
}
.quote__background svg {
  max-width: 12.5rem;
  height: auto;
}
.bg-gray .quote__background, .bg-gray-dark .quote__background {
  opacity: 0.1;
}
.quote--image .quote__title {
  font-style: normal;
  text-transform: uppercase;
  border-bottom: 0.0625rem solid #ffc70b;
}
@media (min-width: 40rem) {
  .quote {
    padding: 3.75rem 2.5rem;
  }
  .quote__photo {
    width: 9.375rem;
  }
  .quote__text {
    font-size: 2.5rem;
    line-height: 1.5;
  }
  .quote--visual .quote__text {
    font-size: 1.875rem;
  }
  .quote__background svg {
    max-width: 17.8125rem;
  }
}
@media (min-width: 64rem) {
  .quote {
    max-width: 62.5rem;
    margin: 0 auto;
    min-height: 15.5rem;
  }
  .quote__text {
    font-size: 3rem;
  }
}
