.faculty-modal.hidden {
    display: none
}

.faculty-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.faculty-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5)
}

.faculty-modal-dialog {
    position: relative;
    background: #fff;
    max-width: 720px;
    width: 90%;
    max-height: 80vh;
    overflow: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2)
}

.faculty-modal-close {
    position: absolute;
    right: 10px;
    top: 6px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer
}

.faculty-modal-title {
    margin: 0 0 12px 0;
    font-size: 20px
}

.faculty-modal-content ul {
    margin: 0 0 0 20px;
    list-style-type: disc;
    font-size: medium;
}