/* Standalone "Slow motion" screen (views/slow_mo_clip.js).
   Three stacked cards, one column — the screen asks three questions in the
   order the owner answers them, so there is nothing to lay out side by side. */

.slow-mo-hint {
  max-width: 60ch;
  margin: 0 0 16px;
}

.slow-mo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
  max-width: 360px;
}

/* Typed numbers (speed %, ramp seconds, ramp steepness) are short — a
   full-width box beside a one-word answer invites a sentence. */
.slow-mo-number {
  max-width: 140px;
}

/* The answer to "what am I about to get?", so it reads louder than the
   hints around it without becoming a heading. */
.slow-mo-length {
  margin: 12px 0 0;
  font-weight: 600;
}

/* Full paths are long and must never be shortened into a lie about where a
   file went; they wrap instead. */
.slow-mo-path {
  margin: 8px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}
