[data-pressable] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transform: translateY(0);
  transform-origin: center;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

[data-pressable].is-pressing {
  transform: translateY(3px) scale(0.985);
}

@media (prefers-reduced-motion: reduce) {
  [data-pressable] {
    transition-duration: 0.001ms !important;
  }
}
