/* notice.css — 공지사항 페이지 (원본 사이트 동일) */

.nt-page {
    padding: 120px 0 160px;
}
.nt-page-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}
.nt-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.025em;
    line-height: var(--lh-1);
    margin: 0 0 80px;
}

/* 필터 탭 */
.nt-filters {
    display: flex;
    gap: 30px;
}
.nt-filter {
    font-size: 20px;
    line-height: var(--lh-1);
    font-weight: 500;
    color: #767676;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease;
}
.nt-filter.active,
.nt-filter:hover {
    color: #FF6E3F;
    border-bottom-color: #FF6E3F;
}

/* 테이블 헤더 */
.nt-thead {
    display: grid;
    grid-template-columns: 150px 1fr 177px;
    align-items: center;
    height: 56px;
    margin-top: 40px;
    border-top: 1px solid rgba(118, 118, 118, 0.3);
    border-bottom: 1px solid rgba(118, 118, 118, 0.3);
    background: #FAFAFA;
}
.nt-thead span {
    font-size: 16px;
    line-height: var(--lh-1);
    font-weight: 700;
    color: #767676;
    text-align: center;
    padding: 0 40px;
}

/* 공지 행 */
.nt-row {
    display: grid;
    grid-template-columns: 150px 1fr 177px;
    height: 78px;
    border-bottom: 1px solid rgba(118, 118, 118, 0.3);
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: background 0.15s ease;
}
.nt-row:hover {
    background: #fafafa;
}
.nt-row-cat {
    font-size: 18px;
    line-height: var(--lh-1);
    font-weight: 700;
    color: #222;
    text-align: center;
    padding: 0 40px;
}
.nt-row-cat--deadline {
    color: #FF6E3F;
}
.nt-row-title {
    font-size: 18px;
    line-height: var(--lh-1);
    font-weight: 700;
    color: #222;
    text-align: left;
    padding: 0 40px;
}
.nt-row-date {
    font-size: 18px;
    line-height: var(--lh-1);
    font-weight: 400;
    color: #222;
    text-align: center;
    padding: 0 40px;
    white-space: nowrap;
}
.nt-empty {
    text-align: center;
    color: #767676;
    padding: 60px 0;
    grid-column: 1 / -1;
}

/* 페이지네이션 */
.nt-pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.nt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    line-height: var(--lh-1);
    font-weight: 400;
    color: #767676;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.nt-pagination .page-numbers.current {
    color: #111;
    font-weight: 400;
}
.nt-pagination .page-numbers:hover:not(.current) {
    color: #111;
}
.nt-pagination .prev,
.nt-pagination .next {
    font-size: 18px;
    line-height: var(--lh-1);
}

/* 반응형 */
@media (max-width: 1366px) {
    .nt-page-inner { padding: 0 40px; }
}
@media (max-width: 1024px) {
    .nt-thead,
    .nt-row { grid-template-columns: 140px 1fr 140px; }
}
@media (max-width: 767px) {
    .nt-page { padding: 80px 0 80px; }
    .nt-page-inner { padding: 0 20px; }
    .nt-page-title { font-size: 24px; line-height: var(--lh-1); letter-spacing: -0.025em; margin-bottom: 24px; }
    .nt-filters { gap: 16px; flex-wrap: wrap; margin-bottom: 30px;}
    .nt-filter { font-size: 14px; line-height: var(--lh-1); }
    .nt-thead { display: none; }
    .nt-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px 0;
    }
    .nt-row-cat { font-size: 13px; line-height: var(--lh-1); color: #FF6E3F; text-align: left; }
    .nt-row-title { font-size: 14px; line-height: var(--lh-1); }
    .nt-row-date { font-size: 12px; line-height: var(--lh-1); color: #767676; text-align: left; }
    .nt-pagination { margin-top: 40px; }
    .nt-pagination .page-numbers { width: 36px; height: 36px; font-size: 14px; line-height: var(--lh-1); }
}
