/* ============================================================
   Pull component: green pull-quote / manifesto statement.

   .pull__text's font-size is a literal clamp(), not var(--fz-quote) —
   that token is only ever used here in the source, so it wasn't worth
   adding to base.css just for one component (unlike --pad-y, which is
   reused across most of this page's sections).
   ============================================================ */

.pull {
  padding: var(--pad-y) var(--pad-x);
  background: var(--green);
  color: var(--black);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.pull__inner {
  max-width: 65rem;
  margin: 0 auto;
  text-align: left;
}
.pull__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(7.5rem, 14vw, 15rem);
  line-height: 0.7;
  color: var(--black);
  margin-bottom: -1.25rem;
  opacity: 0.95;
}
.pull__text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.625rem, 6vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}
.pull__text em {
  font-style: italic;
  color: var(--blue);
}
.pull__cite {
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
}
.pull__cite span {
  display: block;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 0.25rem;
  letter-spacing: 0.07em;
  text-transform: none;
  font-size: 0.8125rem;
}
