/* Modal */
.policy-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    font-family: system-ui, sans-serif;
}
/* Backdrop */
.policy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
/* Content */
.policy-modal__content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
/* Header */
.policy-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.policy-modal__header h2 {margin:0;font-size:1.4rem;}
.policy-modal__close {
    background:transparent;
    border:none;
    font-size:1.6rem;
    cursor:pointer;
}
.policy-modal__body {
    text-align: justify;
    line-height: 1.6;
}
.policy-modal__body h1 {
    text-align: left;
    margin-bottom: 1rem;
}
.policy-modal__body h2 {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.policy-modal__body p {
    text-align: justify;
    margin-bottom: 1rem;
}
.policy-modal__body ul,
.policy-modal__body ol {
    text-align: justify;
    margin-bottom: 1rem;
}
.policy-modal__body li {
    text-align: justify;
    margin-bottom: 0.5rem;
}
.policy-modal__footer {margin-top:1.5rem;text-align:right;}
.hidden {display:none;}
