/* hhconsent — registration page inline consents + modal */

.hhconsent-summary {
  color: #57534e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.hhconsent-view-full {
  color: #881337;
  font-weight: 500;
  text-decoration: underline;
}
.hhconsent-view-full:hover { color: #9f1239; }

/* Modal */
.hhconsent-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.hhconsent-modal[hidden] { display: none; }

.hhconsent-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.hhconsent-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 720px; width: 100%;
  max-height: 80vh; overflow: auto;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
}

.hhconsent-modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 28px; line-height: 1; cursor: pointer;
  color: #57534e;
}
.hhconsent-modal__close:hover { color: #1c1917; }

.hhconsent-modal__title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  color: #881337;
}

.hhconsent-modal__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #292524;
}
.hhconsent-modal__body p { margin: 0 0 12px; }
