/* Kate Kolody Text CTA */

.kk-text-cta,
.kk-text-cta * {
  box-sizing: border-box;
}

.kk-text-cta {
  width: 100%;
  background: transparent;
  color: inherit;
}

.kk-text-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.kk-text-cta-title {
  margin: 0;
  color: #CDC9B9;
}

.kk-text-cta-subtitle {
  margin: 0;
  color: #CDC9B9;
}

.kk-text-cta-link {
  --kk-text-cta-duration: 420ms;

  position: relative;
  display: inline-flex;
  width: fit-content;
  color: #CDC9B9;
  text-decoration: none !important;
  cursor: pointer;
  overflow: visible;
  transition: color 180ms ease;
}

.kk-text-cta-link:hover,
.kk-text-cta-link:focus-visible {
  text-decoration: none !important;
  outline: none;
}

.kk-text-cta-link::before,
.kk-text-cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  pointer-events: none;
}

.kk-text-cta-link::before {
  opacity: 0.28;
  transform: scaleX(1);
  transform-origin: left center;
}

.kk-text-cta-link::after {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--kk-text-cta-duration) cubic-bezier(.22,.61,.36,1);
}

.kk-text-cta-link:hover::after,
.kk-text-cta-link:focus-visible::after {
  transform: scaleX(1);
}

.kk-text-cta-link span {
  position: relative;
  z-index: 1;
}
