<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.quote-wrapper {
  margin: 40px 0;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}
.quote-wrapper img {
  width: 280px;
  object-fit: cover;
}
.quote-copy {
  padding: 35px 35px 27px;
}
.quote-copy img {
  margin-bottom: 20px;
  height: 65px;
  object-fit: contain;
  object-position: left;
}

.quote-button {
  margin: 50px 0 27px;
}

@media (max-width: 768px) {
  .quote-wrapper {
    display: flex;
    flex-direction: column;
  }
  .quote-wrapper img {
    width: 100%;
    max-height: 20vh
    object-fit: cover;
  }
  .quote-copy img {
    height: 35px;
    object-fit: contain;
  }
}</pre></body></html>