/* Consent banner.
   Anchored bottom-LEFT rather than centred: a centred strip reads as page chrome
   and the eye skips it, while the lower-left corner is empty on every page here
   and sits where a left-to-right reader's gaze lands last. Bottom-right is left
   free for a support widget.

   Brand surface with white type, because the previous white-on-white card was
   invisible against the page. Both buttons stay equally prominent: making
   Reject the quiet one would raise the accept rate without raising consent —
   a choice that is not free is not consent, and it is the specific thing
   regulators look for. */
#fv-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: auto;
  z-index: 200;
  max-width: 420px;
  pointer-events: none;
}
#fv-consent .fvc-card {
  pointer-events: auto;
  background: linear-gradient(160deg, #4f46e5, #6d28d9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 30px 70px -24px rgba(49, 39, 132, 0.65);
  color: #fff;
}
#fv-consent .fvc-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
#fv-consent .fvc-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e7ff;
}
#fv-consent .fvc-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#fv-consent .fvc-actions {
  display: flex;
  gap: 10px;
}
#fv-consent .fvc-btn {
  flex: 1;
  font: 600 14px inherit;
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: 0.15s;
}
/* Same size, same weight, same row. Only the fill differs, and both are legible
   against the brand surface. */
#fv-consent .fvc-primary {
  background: #fff;
  color: #3730a3;
}
#fv-consent .fvc-primary:hover {
  background: #eef2ff;
}
#fv-consent .fvc-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
#fv-consent .fvc-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 560px) {
  #fv-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
