.theme-text .quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid #cdb6ff;
}

.theme-text .quote-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 24px;
  line-height: 1.16;
  color: var(--body-text-color);
  font-family: Newsreader,serif;
}

.theme-text .quote-text p {
  margin: 0;
}

.theme-text .author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.theme-text .author-info p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight:600;
  color: var(--body-text-color);
}

.theme-text .author-info p span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight:400;
  color: var(--body-text-secondary-color);
}

.theme-text .author-info .svg {
  display: block;
  width: 46px;
  height: auto;
}
@media (max-width:767px){
  .theme-text .quote-text {
    font-size: 20px;
  }
}
}