.back-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-bottom: 30px;
  padding: 6px 16px 6px 7px;
  border: 1px solid rgba(8, 102, 198, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(19, 69, 120, 0.08);
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.back-link span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e7f2ff;
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.back-link:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 69, 120, 0.13);
}

.back-link:hover span {
  transform: translateX(-2px);
  background: var(--blue);
  color: #fff;
}

.back-link:focus-visible {
  outline: 3px solid rgba(8, 102, 198, 0.28);
  outline-offset: 3px;
}

.back-link:active { transform: translateY(0); }

@media (max-width: 760px) {
  .back-link { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .back-link,
  .back-link span { transition: none; }
}
