/* Pull quote: centred cream band */

.pullquote {
  background-color: var(--cream);
  padding-block: calc(var(--section-y) * 1.15);
  text-align: center;
}

.pullquote__eyebrow {
  margin-bottom: 2.5rem;
}

.pullquote__quote {
  margin: 0 auto;
  max-width: 60ch;
}

.pullquote__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}

.pullquote__attribution {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 2.5rem 0 0;
}

.pullquote__rule {
  border-top: 1px solid var(--hairline-light);
  margin-top: 5rem;
}

.pullquote__values {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  list-style: none;
  max-width: 52rem;
  margin: 2rem auto 0;
  padding: 0;
}

.pullquote__values li {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 767.98px) {
  .pullquote__values {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
