.post-quote-card {
  background: #F1F4F8;
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
}
.post-quote-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.post-quote-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
}
.post-quote-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-quote-card__head-info {
  min-width: 0;
}
.post-quote-card__title {
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
}
.post-quote-card__title a {
  color: inherit;
  text-decoration: none;
}
.post-quote-card__title a:hover {
  text-decoration: underline;
}
.post-quote-card__meta {
  margin-top: 2px;
  color: #575757;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.post-quote-card__mark {
  line-height: 0;
}
.post-quote-card__mark--open {
  margin: 19px 0 7px;
}
.post-quote-card__mark--close {
  margin-top: 12px;
  text-align: right;
}
.post-quote-card__mark--close svg {
  transform: rotate(180deg);
}
.post-quote-card__text {
  margin: 0;
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.post-quote-card__text p {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.post-quote-card__text p + p {
  margin-top: 20px;
}
.post-quote-card__text a {
  color: #D41028;
}

@media screen and (max-width: 768px) {
  .post-quote-card {
    padding: 15px;
    border-radius: 12px;
  }
  .post-quote-card__avatar {
    width: 44px;
    height: 44px;
  }
  .post-quote-card__title {
    font-size: 17px;
  }
  .post-quote-card__meta {
    font-size: 14px;
  }
  .post-quote-card__mark svg {
    width: 32px;
    height: 25px;
  }
  .post-quote-card__mark--open {
    margin: 18px 0 10px;
  }
  .post-quote-card__text {
    font-size: 20px;
  }
  .post-quote-card__text p + p {
    margin-top: 16px;
  }
}
