/* ===== Notice Page ===== */
.notice-page {
    padding: 50px 0 120px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 타이틀 */
.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #1e1e1e;
    letter-spacing: -0.72px;
    line-height: 1;
}

/* 필터 바 */
.notice-list-section .filter-bar {
    padding: 0 0 20px;
}

/* 본문 */
.notice-link {
    min-height: 80px;
}

.notice-link .td-col {
    color: #333;
}

/* 컬럼 너비 */
.col-no {
    width: 12.987%;
    flex-shrink: 0;
    text-align: center;
}

.col-title {
    flex: 1;
    min-width: 0;
}

.col-date {
    width: 12.987%;
    flex-shrink: 0;
    text-align: center;
}

/* 제목 한 줄 처리 */
.notice-title {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

/* 모바일 date */
.notice-date {
    color: #6C6C6C;
    font-size: 12px;
    font-weight: 500;
}

/* 공지 뱃지 */
.notice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    border: 1.5px solid #009f9e;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    color: #009f9e;
    letter-spacing: -0.36px;
    line-height: 1.5;
}

.notice-empty {
    text-align: center;
    padding: 50px 0;
    width: 100%;
}


@media (max-width: 1023px) {

    /* 컬럼 너비 */
    .col-no {
        width: 16%;
    }
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .notice-page {
        padding: 45px 0 50px;
        gap: 30px;
    }

    /* 타이틀 */
    .page-title {
        font-size: 28px;
    }

    /* 필터 바 */
    .notice-list-section .filter-bar {
        padding-bottom: 10px;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .notice-list-section .filter-bar .list-count {
        font-size: 14px;
    }

    /* 본문 */
    .notice-link {
        padding: 21px 0;
        min-height: 0;
    }

    /* 컬럼 너비 */
    .col-no {
        width: 27%;
    }

    .col-title {
        width: 100%;
    }

    .td-col.col-title {
        padding: 0 12px;
    }

    .notice-title {
        margin-bottom: 6px;
        white-space: wrap;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .notice-badge {
        font-size: 16px;
    }

    .notice-page .pagination {
        padding: 0;
    }
}