/* 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 .footer-grid .footer-action > a.kk-footer-cta__button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #11110f;
  border-color: #11110f;
  color: #ffffff;
  box-shadow: none;
}
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button:hover {
  background: #262622;
  border-color: #262622;
  color: #ffffff;
}
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button:focus-visible {
  background: #11110f;
  border-color: #11110f;
  color: #ffffff;
  outline: 3px solid #6db7ff;
  outline-offset: 4px;
}
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button > span {
  position: relative;
  z-index: 2;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  opacity: 1;
  visibility: visible;
}
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button::before,
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button::after {
  content: none;
  display: none;
}
.kk-site-footer .footer-grid .footer-action > a.kk-footer-cta__button > span:last-child {
  transition: transform .2s ease;
}
.kk-site-footer .footer-grid .footer-action > a.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; }
}
