.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}
.privacy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.privacy-modal__panel {
    position: relative;
    background: #fff;
    width: min(760px, calc(100% - 32px));
    margin: 5vh auto;
    padding: 22px;
    border-radius: 10px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.privacy-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 26px;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}
body.privacy-modal-open {
    overflow: hidden;
}
.privacy-modal h2 {
    margin-top: 0;
}
.privacy-modal hr {
    margin: 18px 0;
}
