/* Exploded evidence view: narration overlay at the bottom of the stage (explode-view.js). */
/* While the view is open the building name labels would sit on top of the photographs. */
#city-stage.xv-open .plot-label { display: none; }
.xv-narration {
  --xv-accent: #c8641e; --xv-accent-bright: #ff8c2a; --xv-ink: #24302b; --xv-muted: #5f6a65; --xv-line: #d9ddd4;
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); z-index: 6;
  width: min(440px, calc(100% - 44px)); box-sizing: border-box; padding: 12px 14px 10px;
  background: #faf9f5f0; border: 1px solid var(--xv-line); border-left: 4px solid var(--xv-accent); border-radius: 8px;
  box-shadow: 0 8px 28px #26392b26; color: var(--xv-ink); font-size: 12.5px; line-height: 1.45;
}
.xv-count { font-size: 10px; letter-spacing: .8px; text-transform: uppercase; color: var(--xv-muted); font-weight: 600; }
.xv-title { margin: 3px 0 5px; font-size: 15px; font-weight: 650; line-height: 1.2; letter-spacing: -.1px; }
.xv-detail { margin: 0; color: var(--xv-ink); }
.xv-note { margin: 6px 0 0; padding: 5px 8px; font-size: 11px; color: #6a4a20; background: #fff0d9; border-radius: 4px; }
.xv-note[hidden] { display: none; }
.xv-buttons { display: flex; gap: 6px; margin-top: 9px; }
.xv-buttons button { border: 1px solid var(--xv-line); border-radius: 5px; padding: 6px 12px; font-size: 12px; background: #fff; color: var(--xv-ink); cursor: pointer; }
.xv-buttons .xv-next { border-color: var(--xv-accent); background: var(--xv-accent); color: #fff; font-weight: 600; }
.xv-buttons .xv-next:disabled { background: #e6d8cc; border-color: #e6d8cc; color: #8a7466; }
.xv-buttons button:disabled { opacity: .55; cursor: default; }
.xv-buttons .xv-close { margin-left: auto; color: var(--xv-muted); }
.xv-buttons button:focus-visible { outline: 3px solid #bd7026; outline-offset: 2px; }
.xv-narration[data-kind=photo] .xv-title::before, .xv-narration[data-kind=crop] .xv-title::before,
.xv-narration[data-kind=mapping] .xv-title::before, .xv-narration[data-kind=surface] .xv-title::before, .xv-narration[data-kind=texture] .xv-title::before {
  content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; vertical-align: 1px; background: var(--xv-accent-bright);
}
.xv-narration[data-kind=texture] .xv-title::before { background: #9aa39f; }
@media (max-width: 700px) {
  .xv-narration { left: 12px; right: 12px; bottom: auto; top: 118px; transform: none; width: auto; padding: 9px 11px 8px; font-size: 11.5px; }
  .xv-title { font-size: 13px; }
}
