@charset "utf-8";

/* 게시판 텍스트 목록 */

@media (max-width: 768px) {
    /* '조회', '추천', '비추천' 열 숨기기 */
    th:has(a[href*="wr_hit"]),
    td:has(a[href*="wr_hit"]),
    th:has(a[href*="wr_good"]),
    td:has(a[href*="wr_good"]),
    th:has(a[href*="wr_nogood"]),
    td:has(a[href*="wr_nogood"]) {
        display: none;
    }
    /* 조회, 추천, 비추천 td 숨기기 */
    td.td_right:nth-child(3), /* '조회' */
    td.td_right:nth-child(4), /* '추천' */
    td.td_right:nth-child(5),
    td.td_right:nth-child(6) { /* '비추천' */
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .td_hit,
    .td_good,
    .td_nogood,
    .td_name {display: none !important;}
}
.td_num {width:70px;display:none !important;left: 0 !important;}
.td_cate {width: 80px;text-align: center !important;}
.td_name {width:100px;left: 0 !important;}

.td_subject {width:auto;padding-left: 0 !important;border-bottom: 1px solid #eee;}
.blue-border-top {border-top: 3px solid #ff0096 !important; /* 제목 상단테두리 */}
