.quote-block {
  background: #f9f9ff;
  border-left: 4px solid #5585E2;
  padding: 20px;
  margin: 20px 0;
  font-family: sans-serif;
  border-radius: 8px;
  position: relative;
}

.quote-block blockquote {
  margin: 0;
  padding: 0;
  quotes: "“" "”" "‘" "’";
}

.quote-block blockquote:before {
  content: open-quote;
  font-size: 30px;
  color: #383AC0;
  line-height: 0;
  position: absolute;
  top: 15px;
  left: 15px;
}

.quote-block blockquote p {
  display: inline;
  background: rgba(85, 133, 226, 0.1);
  padding: 5px 8px;
  border-radius: 4px;
  line-height: 1.6;
}

.quote-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author {
  font-weight: bold;
  font-size: 14px;
}