/* =========================
   Tiny Consent Checkboxes
   ========================= */

.checkbox-group.tiny {
  font-size: 11px;
  color: #cfcfcf;
  margin: 10px 0;
}

.checkbox-group.tiny label {
  display: flex;
  align-items: flex-start;   /* FIX: top-align for long text */
  gap: 8px;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 6px;
  text-align: left;
}
/* =========================
   Tiny Consent Checkboxes
   ========================= */

.checkbox-group.tiny {
  font-size: 11px;
  color: #cfcfcf;
  margin: 10px 0;
}

.checkbox-group.tiny label {
  display: flex;
  align-items: flex-start;   /* top-align checkbox with first line */
  gap: 8px;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 6px;
  text-align: left;
}

.checkbox-group.tiny input[type="checkbox"] {
  transform: scale(0.85);
  margin-top: 1px;        /* KEY FIX */
  flex-shrink: 0;
}


/* =========================
   Email consent block
   ========================= */

.checkbox-group.tiny .email-consent {
  margin-top: 6px;
}

.checkbox-group.tiny .email-consent span {
  display: block;
  max-width: 420px;
  font-size: 9px;
  line-height: 1.45;
  color: #cfcfcf;
}

/* De-emphasize secondary lines */
.checkbox-group.tiny .email-consent span br {
  content: "";
  display: block;
  margin-top: 4px;
}

.checkbox-group.tiny .email-consent span br + * {
  font-size: 9px;
  color: #9a9a9a;
  line-height: 1.5;
}





/* =========================
   Footer (Compliance Layer)
   ========================= */
/* Footer layout is defined in style.css
   This file only provides compliance-level polish */

.site-footer nav {
  flex-wrap: wrap;
}

.site-footer {
  position: relative;
  margin-top: 40px;
}


/* =========================
   Minor Compliance Polish
   ========================= */

.consent {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.grow-btn {
  margin-top: 12px;
}


/* start of Accessibility */

.accessibility-section {
  margin-top: 48px;
}

.accessibility-section h2 {
  margin-bottom: 12px;
}

.accessibility-section h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.accessibility-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}
#userwayAccessibilityIcon,
.userway-accessibility-icon {
  top: auto !important;
  bottom: 20px !important;
  right: 20px !important;
  left: auto !important;
  position: fixed !important;
  z-index: 99999;
}

/* end of Accessibility */

/* =========================
   Highlighted Legal Headings
   ========================= */

.legal-highlight {
  color: #d4af37; /* gold */
  font-weight: 700;
}

/* =========================
   Home Popup (Terms Page)
   ========================= */

.home-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
}

.home-popup-btn {
  background: #ffffff;
  color: #000;
  border: 1px solid #ccc;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.home-popup-btn:hover {
  background: #f5f5f5;
}

/* Accessibility */
.home-popup-btn:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}


<script>
  function goHome() {
    window.location.href = "/";
  }
</script>


/* Ensure large CTA never touches footer on small screens */
@media (max-width: 768px) {
  .grow-btn {
    margin-bottom: 140px;
  }
}

.grecaptcha-badge {
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  z-index: 9999 !important;
}
