.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal-overlay.is-open {
  display: flex;
}

body.privacy-modal-open {
  overflow: hidden;
}

.privacy-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 6px;
  padding: 48px 44px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.privacy-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

.privacy-modal-close:hover {
  color: #111;
}

.privacy-modal-body h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #111;
  margin-bottom: 24px;
}

.privacy-modal-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 26px 0 8px;
}

.privacy-modal-body h3:first-of-type {
  margin-top: 0;
}

.privacy-modal-body p {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 6px;
}

.privacy-modal-body ul {
  padding-left: 18px;
  margin: 4px 0 14px;
}

.privacy-modal-body li {
  list-style: disc;
  font-size: 13px;
  line-height: 1.75;
  color: #444;
}

.privacy-modal-loading,
.privacy-modal-error {
  text-align: center;
  color: #999;
  font-size: 13px;
}
