/* Contact widget used only where explicit contact buttons are placed. */
.legal-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #6f3fd4;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(111, 63, 212, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.legal-contact-btn:hover,
.legal-contact-btn:focus-visible {
  transform: translateY(-1px);
  background: #5d31bd;
  box-shadow: 0 16px 32px rgba(111, 63, 212, 0.22);
  outline: none;
}

.lj-contact-modal .lj-feedback-kicker {
  color: #7c3aed;
}

@media (max-width: 760px) {
  .legal-contact-btn {
    width: 100%;
  }
}
