/* 공지사항 */
.notice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}


.notice-modal.hidden {
    display: none;
}



.notice-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}



.notice-modal .modal-content {
    position: relative;
    z-index: 2;
    width: 600px;
    max-height: 80vh;
    background: #fff;
    margin: 1% auto;
    padding: 45px 60px;
    border-radius: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.notice-modal .modal-close {
    padding: 8px 20px;
    background: rgba(30, 100, 255, 0.7);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
    width: 75px;

}


.modal-close:hover {
    padding: 8px 20px;
    background: rgba(46, 118, 255, 0.99);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
    width: 75px;
}




.notice-title:hover {
    text-decoration: underline;
    font-weight: 500 !important
}




.notice {
    padding: 20px 0;

}


.notice .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
}






.notice-item2 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 80px;
    width: 100%;
    overflow: scroll;
}





.notice-item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    width: 60%;
    position: relative;
    left: 60px;
}


.noticeSection1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 18px;
    max-height: calc(1.6em * 3);

}


.notice-title:hover {
    text-decoration: underline !important;
    font-weight: 500 !important;
}