/**
 * iNKPPL Design System v2.0 — Pull Quote Component (NEW)
 * Standalone editorial pull-quote: DM Serif Display italic, gold left border.
 * Use inside .prose or as a standalone breakout element.
 * AUDIT §2 "New components" specification.
 */

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  line-height: var(--line-height-tight);
  border-left: 3px solid var(--color-editorial-mark);
  padding-left: var(--space-6);
  margin: var(--space-10) 0;
  color: var(--color-text);
}

.pull-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* Breakout variant: larger, centered, for editorial feature openings */
.pull-quote--breakout {
  font-size: var(--text-3xl);
  text-align: center;
  border-left: none;
  padding-left: 0;
  border-top: 1px solid var(--color-editorial-mark);
  border-bottom: 1px solid var(--color-editorial-mark);
  padding: var(--space-6) 0;
  margin: var(--space-12) auto;
  max-width: 44ch;
}

.pull-quote--breakout cite {
  text-align: center;
}

@media (max-width: 767px) {
  .pull-quote {
    font-size: var(--text-xl);
  }

  .pull-quote--breakout {
    font-size: var(--text-2xl);
    max-width: none;
  }
}
