/**
 * wc-hc-pull-quote.css
 * Centred italic patient quote block.
 */

.pull-quote {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  position: relative;
  margin-top: var(--sp-lg);
}

.pull-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--red-bright);
  margin: 0 auto var(--sp-sm);
  border-radius: 2px;
}

.pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--red-mid);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto var(--sp-xs);
  overflow-wrap: break-word;
}

.pull-quote-attr {
  font-size: var(--t-small);
  color: var(--body-text);
  font-style: italic;
  margin-top: var(--sp-xs);
  text-align: center;
}
