.single-quote {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding: 40px 40px 40px 24px;
  background: rgba(152, 40, 60, 0.06);
}

.single-quote__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-quote__content p,
.single-quote__content p strong,
.single-quote__content p a {
  color: #405363;
  font-family: "EB-Garamond";
  font-size: 24px;
  line-height: 140%;
}

.single-quote__content p a {
  text-decoration: underline;
}

.single-quote__content .single-quote__author {
  color: #98283C;
  font-size: 20px;
  font-weight: 600;
}

.single-quote::before {
  content: '';
  min-width: 40px;
  height: 40px;
  background-image: url(/wp-content/themes/euvatandas.tr/images/blog/quote.svg);
  background-size: cover;
}

@media (max-width: 768px) {

  .single-quote {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .single-quote__content p,
  .single-quote__content p strong {
    font-size: 20px;
  }

  .single-quote__content .single-quote__author {
    font-size: 18px;
  }

  .single-quote::before {
    width: 30px;
    height: 30px;
  }
}