/* 공지사항 모바일 전용 스타일 */
/* PC 버전과 다른 페이지에 영향 없도록 모바일에서만 적용 */

@media (max-width: 768px) {
    /* title-cell 글자 크기 강제 적용 */
    .notice-table .title-cell {
        font-size: 13px !important;
    }
    
    .notice-table .title-cell a {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    /* 기존 스타일과 충돌 방지를 위한 추가 강제 적용 */
    .notice-table td.title-cell,
    .notice-table td.title-cell * {
        font-size: 13px !important;
    }
} 