.quote-with-author-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 72px;
  margin-bottom: 72px;
}

.quote-with-author-block__quote strong {
  font-weight: 700;
}

.quote-with-author-block__author-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}

.quote-with-author-block__image-wrap img {
  border-radius: 24px;
  max-width: 52px;
  width: 100%;
  height: auto;
}

.quote-with-author-block__author-content {
  display: flex;
  flex-direction: column;
}

.quote-with-author-block__author-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
}

.quote-with-author-block__author-position {
  color: #5b6278;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .quote-with-author-block__author-wrap {
    flex-direction: column;
  }

  .quote-with-author-block__author-content {
    text-align: center;
  }
}
