.featured-quote {
  background-color: color-mix(in srgb, var(--primary-light) 10%, transparent);
}

.featured-quote__figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-m);
  max-width: 70ch;
  margin-inline: auto;
}

.featured-quote__icon {
  width: 3rem;
  height: auto;
}

.featured-quote [data-icon] {
  --icon-size: 48px;
}

.featured-quote__quote {
  font-size: var(--h2);
  line-height: calc(4px + 2ex);
  quotes: none;
  margin: 0;
  padding: 0;
  border: none;
  width: 55ch;
}

.featured-quote__quote::before {
  content: '\201E';
}

.featured-quote__quote::after {
  content: '\201D';
}

.featured-quote__author {
  font-weight: 600;
  opacity: 0.7;
}

.featured-quote__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}
