.quote-external {
  display: flex;
  justify-content: center;
}

.quote-external__blockquote::before,
.quote-external__cite::after {
  content: '';
  background-image: url('../../images/quote.svg');
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 4.75rem;
  height: 2rem;
}

.quote-external__blockquote {
  margin: 0;
  font-size: var(--heading-h3);
  color: var(--c-primary-blue);
  line-height: 1.2;
}

.quote-external__blockquote::before {
  margin-bottom: var(--spacing-4);
}

.quote-external__cite {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-half);
  padding-right: 6rem;
  margin-top: var(--spacing-4);
  position: relative;
  font-style: normal;
}

.quote-external__cite::after {
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(180deg);
  margin-left: auto;
}

.quote-external__member {
  font-size: var(--heading-h5);
  line-height: 1.5;
}

.quote-external__role {
  font-size: var(--text-large);
  color: var(--c-primary-dark);
  line-height: 1.7;
}

.c-bg--blue .quote-external__blockquote,
.c-bg--blue .quote-external__role {
  color: var(--c-primary-light);
}

@media (min-width: 768px) {
  .quote-external__blockquote {
    width: 34.25rem;
  }

  .quote-external__blockquote::before {
    margin-bottom: var(--spacing-5);
  }

  .quote-external__cite {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-3);
  }
}

@media (min-width: 1200px) {
  .quote-external__blockquote {
    width: 64rem;
  }

  .quote-external__blockquote::before {
    margin-bottom: var(--spacing-6);
  }
}

@media (min-width: 1920px) {
  .quote-external__blockquote {
    width: 86.5rem;
  }
}
