/* CR-PEX-033 TouchLineUp assistant-coach Discover CTA */
.touch-assistant-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 610px);
  min-height: 58px;
  padding: 10px 12px 10px 24px;
  border: 2px solid #b8e532;
  border-radius: 999px;
  background:
    radial-gradient(circle at 84% 18%, rgba(42, 112, 154, 0.22), transparent 30%),
    linear-gradient(135deg, #061c31 0%, #0b2e4e 100%);
  color: #fff;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.touch-assistant-cta > span {
  min-width: 0;
}

.touch-assistant-cta > b {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 2px solid #b8e532;
  border-radius: 50%;
  color: #b8e532;
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.touch-assistant-cta:hover,
.touch-assistant-cta:focus-visible {
  transform: translateY(-2px);
  border-color: #d2f45f;
  background:
    radial-gradient(circle at 84% 18%, rgba(54, 143, 194, 0.28), transparent 32%),
    linear-gradient(135deg, #08243d 0%, #10446d 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  outline: none;
}

.touch-assistant-cta:hover > b,
.touch-assistant-cta:focus-visible > b {
  transform: translateX(3px);
  background: #b8e532;
  color: #06212f;
}

@media (max-width: 640px) {
  .touch-assistant-cta {
    width: 100%;
    min-height: 58px;
    padding-left: 20px;
    gap: 14px;
    font-size: 0.98rem;
  }

  .touch-assistant-cta > b {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .touch-assistant-cta,
  .touch-assistant-cta > b {
    transition: none;
  }

  .touch-assistant-cta:hover,
  .touch-assistant-cta:focus-visible,
  .touch-assistant-cta:hover > b,
  .touch-assistant-cta:focus-visible > b {
    transform: none;
  }
}

