/* ===== 공지사항 PC (768px 이상) ===== */
@media (min-width: 768px) {
    .notice-content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px 60px;
    }

    .notice-content h1 {
        font-size: 26px;
        font-weight: 700;
        color: #212529;
        margin-bottom: 32px;
    }

    .notice-table-container {
        overflow-x: auto;
        margin-bottom: 32px;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        background: #fff;
    }

    .notice-table {
        width: 100%;
        border-collapse: collapse;
    }

    .notice-table thead {
        background: #f8f9fa;
    }

    .notice-table th {
        padding: 16px 20px;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
        color: #495057;
        border-bottom: 2px solid #dee2e6;
    }

    .notice-table th:first-child {
        width: 80px;
        text-align: center;
    }

    .notice-table th:nth-child(3) {
        width: 120px;
    }

    .notice-table th:last-child {
        width: 80px;
        text-align: center;
    }

    .notice-table td {
        padding: 16px 20px;
        font-size: 15px;
        color: #212529;
        border-bottom: 1px solid #e9ecef;
    }

    .notice-table td:first-child {
        text-align: center;
        color: #868e96;
        font-size: 14px;
    }

    .notice-table td:nth-child(2) a {
        color: #212529;
        font-weight: 500;
        transition: color 0.2s;
    }

    .notice-table td:nth-child(2) a:hover {
        color: #007bff;
    }

    .notice-table td:nth-child(3),
    .notice-table td:last-child {
        color: #868e96;
        font-size: 14px;
    }

    .notice-table td:last-child {
        text-align: center;
    }

    .notice-table tbody tr:hover {
        background: #f8f9fa;
    }

    .notice-table tbody tr:last-child td {
        border-bottom: none;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 32px;
    }

    .pagination a,
    .pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        padding: 10px 14px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #495057;
        background: #fff;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .pagination a:hover {
        background: #007bff;
        color: #fff;
        border-color: #007bff;
    }

    .pagination .current {
        background: #007bff;
        color: #fff;
        border-color: #007bff;
        cursor: default;
    }
}
