.headline-text {
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

#notice_wrapper {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #BCBCD3;
}

.notice-header, .notice {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    margin: 0;
    padding: 0 36px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #EBEBFA;
    cursor: pointer;
}

.notice-no {
    width: 90px;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}

.notice-title {
    width: -webkit-fill-available;
    padding: 0px 30px;
}

.mt-date {
    display: none;
    line-height: 23px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.notice-date {
    width: 95px;
    text-align: right;
    color: rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.notice-arrow {
    display: none;
    height: 12px;
}

#page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 40px;
    margin: 0 auto;
}

.page-item {
    width: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

    .page-item.active {
        font-weight: 600;
        color: #6133E2;
    }

@media (max-width : 1140px) {
    .headline-text {
        font-size: 16px;
    }

    #notice_wrapper {
        border-top: 1px solid #F7F7F7;
    }

    .notice-header {
        display: none;
    }

    .notice {
        gap: 12px;
        height: 62px;
        padding: 0 16px;
        border-bottom: 1px solid #F7F7F7;
    }

    .notice-no, .notice-title, .notice-date {
        padding: 0;
    }

    .notice-no, .notice-date {
        width: auto;
    }

    .mt-date {
        display: block;
    }

    .notice-date {
        font-size: 0;
    }

    .notice-arrow {
        display: flex;
    }

    .delete-btn {
        display: none;
    }
}

@media (max-width: 800px) {
    .notice {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .headline-text {
        font-size: 14px;
    }

    .notice {
        font-size: 12px;
    }

    #page-wrapper {
        height: 20px;
    }

    .page-item {
        width: 20px;
        font-size: 12px;
    }
}