.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

/* ===========================
 * 공지사항 목록
 * =========================== */
/* 기본: PC 화면 */
#noticeTable {
    width: 100%;
    border-collapse: collapse; /* 칸 경계 합치기 */
}
#noticeTable tr:hover {
    background-color: #f7fcff;
}

/* 모바일 화면 (480px 이하) */
@media screen and (max-width: 480px) {
    #noticeTable .col-board-no,
    #noticeTable .col-hit {
        display: none; /* 번호/조회수 숨기기 */
    }

    #noticeTable .col-title {
        text-align: left; /* 제목은 왼쪽 정렬 */
    }
}

#noticeDetail {
    width: 100%;
    border-collapse: collapse;
}