/* ---- Quote ---- */
.quote {
  background: var(--bg);
  text-align: center;
}
.quote-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-mark {
  font-family: "Newsreader", serif;
  font-size: 80px;
  line-height: 0;
  color: var(--accent);
  position: absolute;
  top: 36px;
  left: 30px;
}
.quote-card blockquote {
  margin: 0;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-1);
  letter-spacing: -0.012em;
}
.quote-cite {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.quote-cite .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff3e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f5ddc0;
  overflow: hidden;
}
.quote-cite .av img {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
}
.quote-cite b {
  color: var(--ink-1);
  font-weight: 600;
}
