/* Transition entre pages — fondu global */

html.pt-pending body {
  opacity: 0;
}

html.pt-visible body {
  opacity: 1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.pt-leaving body {
  opacity: 0;
  transition: opacity 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.pt-pending body,
  html.pt-visible body,
  html.pt-leaving body {
    opacity: 1 !important;
    transition: none !important;
  }
}
