/* transitions.css — view transitions between map and AR modes. */
#event-banner {
  position: fixed;
  inset-block-start: 0;
  inline-size: 100%;
  z-index: 20;
}

/* TODO: fade/slide transitions; respect prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
