.quote-component {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-component header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.quote-component header .quote-image {
  height: 120px;
  width: 120px;
  min-width: 120px;
  margin-inline: auto;
  margin-bottom: 0;
}
.quote-component header .quote-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.quote-component header h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.quote-component blockquote {
  font-size: 1rem;
  font-weight: 400;
}
.quote-component blockquote a {
  color: #562C80;
}
.quote-component blockquote p {
  margin: 0;
}
.quote-component blockquote {
  position: relative;
  margin-bottom: 0;
}
.quote-component blockquote svg {
  fill: #562C80;
  position: absolute;
  top: -20px;
  left: -20px;
  height: 70px;
  width: 70px;
  opacity: 0.15;
}
.quote-component svg {
  position: absolute;
}

.white_background .quote-component, .purple_background .quote-component {
  padding: 40px 60px;
  border-radius: 12px;
}

.white_background .quote-component {
  background-color: #FFFFFF;
}

.purple_background .quote-component {
  background-color: #562C80;
}
.purple_background .quote-component * {
  color: #FFFFFF;
}
.purple_background .quote-component a {
  color: #D2C9DF;
}
.purple_background .quote-component svg {
  filter: brightness(7);
  opacity: 0.3;
}

@media (width >= 768px) {
  .quote-component header {
    flex-direction: row;
  }
  .quote-component header .quote-image {
    height: 120px;
    min-width: 120px;
    margin-inline: 0;
  }
}

/*# sourceMappingURL=quote-component-style.css.map */
