/* Intentional, action-specific motion for the approved button system. */
.button,
.kk100-approved-hero__button { position: relative; overflow: hidden; }
.kk-action--order::after,
.kk-action--submit::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transform: translateX(0);
  transition: transform .2s ease;
}
.kk-action--order:hover,
.kk-action--submit:hover { background: var(--kk-brand-red-hover); }
.kk-action--order:hover::after,
.kk-action--submit:hover::after { transform: translateX(4px); }
.kk100-approved-hero__button--primary:hover { background: var(--kk-brand-red-hover); }
.kk100-approved-hero__button--primary > span,
.kk100-approved-hero__button--secondary > span { transition: transform .2s ease; }
.kk100-approved-hero__button--primary:hover > span,
.kk100-approved-hero__button--secondary:hover > span { transform: translateX(4px); }

.kk-action--mission::before { content: none; display: none; }
.kk-action--mission::after {
  content: "↗";
  display: inline-block;
  margin-left: 10px;
  transition: transform .2s ease;
}
.kk-action--mission:hover::after { transform: translate(3px,-2px); }

.kk-action--info::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.22);
  transform-origin: left center;
  transition: transform .2s ease;
}
.kk-action--info:hover::after,
.kk-action--info:focus-visible::after { transform: scaleX(1); }

.kk-site-footer .kk-footer-cta__button {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: none;
}
.kk-site-footer .kk-footer-cta__button:hover {
  background: #fff;
  border-color: #fff;
  color: #11110f;
}
.kk-site-footer .kk-footer-cta__button:focus-visible {
  background: #11110f;
  border-color: #11110f;
  color: #fff;
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.kk-site-footer .kk-footer-cta__button > span,
.kk-site-footer .kk-footer-cta__button > strong,
.kk-site-footer .kk-footer-cta__button > svg { position: relative; z-index: 2; color: inherit; opacity: 1; visibility: visible; background: transparent; border: 0; outline: 0; box-shadow: none; }
.kk-site-footer .kk-footer-cta__button::before,
.kk-site-footer .kk-footer-cta__button::after { z-index: 0; pointer-events: none; }
.kk-site-footer .kk-footer-cta__button > span:last-child { transition: transform .2s ease; }
.kk-site-footer .kk-footer-cta__button:hover > span:last-child { transform: translateX(3px); }

.final-cta .button--light:hover,
.final-cta .button--light:focus-visible,
.final-cta .button--outline-light:hover,
.final-cta .button--outline-light:focus-visible { background: #11110f; border-color: #11110f; color: #fff; }
.final-cta .button--light > span,
.final-cta .button--light > strong,
.final-cta .button--light > svg,
.final-cta .button--outline-light > span,
.final-cta .button--outline-light > strong,
.final-cta .button--outline-light > svg { color: inherit; }

.text-link { transition: color .2s ease, border-color .2s ease; }
.text-link:hover,
.text-link:focus-visible { color: var(--kk-brand-red); border-bottom-color: var(--kk-brand-red); }

@media (prefers-reduced-motion: reduce) {
  .button,
  .kk100-approved-hero__button,
  .kk-action--order::after,
  .kk-action--submit::after,
  .kk-action--mission::after,
  .kk-action--info::after,
  .kk-footer-cta__button > span:last-child { transition: none !important; }
}
