@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: page-out 0.16s ease both;
}
::view-transition-new(root) {
  animation: page-in 0.36s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-5px);
  }
}
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.motion-ready .reveal-on-scroll {
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.motion-ready .reveal-on-scroll:not(.is-revealed) {
  opacity: 0;
  transform: translateY(30px);
}
.pill-button,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pill-button:before,
.button:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--deep);
  border-radius: 50%;
  transform: translateY(105%) scale(0.6);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  z-index: -1;
}
.pill-button:hover:before,
.button:hover:before {
  transform: translateY(0) scale(1.7);
}
.pill-button.light:before {
  background: var(--yellow);
}
.pill-button span {
  transition: transform 0.3s;
}
.pill-button:hover span {
  transform: translate(3px, -3px);
}
.hero-seal {
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.5);
}
.hero-seal:hover {
  transform: rotate(-12deg) scale(1.04);
}
.resource-card {
  transition:
    background 0.25s,
    transform 0.35s,
    box-shadow 0.35s;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #1323420d;
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root),
  .chapter-hero h1,
  .page-hero h1,
  .hero-type h1,
  .chapter-hero .eyebrow,
  .page-hero .eyebrow,
  .hero-type > .eyebrow,
  .chapter-hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    animation: none;
  }
  .motion-ready .reveal-on-scroll:not(.is-revealed) {
    opacity: 1;
    transform: none;
  }
  .motion-ready .reveal-on-scroll,
  .pill-button:before,
  .button:before,
  .pill-button span,
  .hero-seal,
  .resource-card {
    transition: none;
  }
}
@media print {
  .motion-ready .reveal-on-scroll,
  .ce-explorer .ce-section-body {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
