/* Keep the mobile Explore FAB anchored during iOS momentum scrolling. */
@media (max-width: 900px) {
  .mobile-explore-fab,
  .mobile-explore-fab:hover,
  .mobile-explore-fab:focus-visible,
  .mobile-explore-fab.is-open,
  .mobile-explore-fab.is-suppressed:not(.is-open) {
    transform: none !important;
    will-change: auto !important;
  }

  .mobile-explore-fab {
    transition:
      background-color 0.18s var(--ease),
      box-shadow 0.18s var(--ease),
      opacity 0.18s var(--ease),
      visibility 0.18s var(--ease) !important;
  }

  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .mobile-explore-fab {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }
  }
}
