/* ==========================================================================
   Pull-quote + Provenance sections on item detail.

   The `.narrative-section*` rules that used to live here were retired in the
   Grail Story Moment migration (May 2026). The narrative slot now ships its
   own state-driven styling via grail_story.css; the previous dark-card
   wrapper has no remaining callers.

   Pull-quote rules below are still in use by app/views/items/_pull_quote.html.erb
   in non-story-slot contexts. Inside .story-slot, grail_story.css's
   scoped rules win on specificity.
   ========================================================================== */

/* --- Pull Quote --- */

.pull-quote {
  border-left: 3px solid var(--color-amber);
  padding-left: var(--space-4);
  margin-bottom: var(--space-5);
}

.pull-quote__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-ivory);
  margin: 0;
}

/* --- Provenance --- */

.provenance-section {
  margin-bottom: var(--space-6);
}

.provenance-section__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--color-ink);
  margin: 0 0 var(--space-4) 0;
}

.provenance-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-left: 2px solid var(--color-parch-2);
  padding-left: var(--space-4);
}

.provenance-event {
  position: relative;
}

.provenance-event__dot {
  position: absolute;
  left: calc(-1 * var(--space-4) - 5px);
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--color-ivory);
}

.provenance-event__emoji {
  font-size: 12px;
  margin-right: var(--space-1);
}

.provenance-timeline__add {
  margin-top: var(--space-3);
}

.provenance-form {
  margin-top: var(--space-3);
}

.provenance-event__type {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-ink);
}

.provenance-event__date {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-ink-muted);
  margin-left: var(--space-2);
}

.provenance-event__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-ink-2);
  margin: var(--space-1) 0 0 0;
}

