@charset "utf-8";
/* NAVER (developers@xpressengine.com) */
/* Board */


/* 이미지가 없을 때의 대체 스타일 */
.no-thumb {
    width: 100%; 
    height: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #f4f4f4; /* 배경색 살짝 추가 */
}

/* 로고를 흑백 그레이톤으로 변환 */
.no-thumb::after {
    content: "";
    display: block;
    width: 60%; /* 로고 크기 조절 */
    height: 60%;
    background-image: url('https://ifhme.or.kr/layouts/ifhme/img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* 여기서 색을 뺍니다 */
    filter: grayscale(100%) brightness(1.2) opacity(0.2); 
}

.board{max-width:1200px; margin:auto;width: 95%;}
.board img{border:0;}

.board a{text-decoration:none;color:#777;}

/* Category Tab */
.board .cTab {position:relative;margin: 0 0 50px;padding:0;list-style:none;zoom: 1;line-height:60px;border:1px solid #e0e0e0;}
.board .cTab:after {content: "";display: block;clear: both;}
.board .cTab li{float: left;;box-sizing:border-box;width:33.33333333%;text-align:Center;border-right:1px solid #e0e0e0;}
.board .cTab li:nth-child(3n){border-right:0;}
.board .cTab li a{position: relative;display:block;color:#888;font-size:18px;font-weight:400;text-decoration:none;}
.board .cTab li em {color: #767676;padding: 0 0 0 2px;}
.board .cTab li.on a{color:#fff;background-color:#fdab4b;}

.board .newsletter_page{margin:0px 0 0;padding:15px 15px;background-color:#f6f6f6;position:relative;border-top:1px solid #ddd;border-bottom:1px solid #ddd;}
.board .newsletter_page ul{margin:0;padding:0;list-style:none;}
.board .newsletter_page ul:after{content:"";display:block;clear:both;}
.board .newsletter_page ul li{float:left;margin-right:10px;}
.board .newsletter_page ul li:last-child{margin-right:0;}
.board .newsletter_page ul li select{border:1px solid #d3d3d3;height:40px;border-radius:4px;width:150px;font-size:14px;font-weight:400;background-color:#fff;-webkit-appearance:none;box-sizing:border-box;padding:0 32px 0 10px;background-image:url(./img/select_arrow.png);background-repeat:no-repeat;background-position:right 10px center;background-size:12px;}
.board .newsletter_page ul li select[name='document_srl']{width:auto;}
.board .newsletter_page ul li button{height:40px;border-radius:4px;border:1px solid #19a29b;background-color:#19a29b;color:#fff;font-weight:600;box-sizing:border-box;width:80px;font-size:16px;cursor:pointer;}

.board .newsletter_subscribe{padding:15px;background-color:#fff;text-align:right;}
.board .newsletter_subscribe ul{margin:0;padding:0;list-style:none;display:inline-block;}
.board .newsletter_subscribe ul:after{content:"";display:block;clear:both;}
.board .newsletter_subscribe ul li{float:left;margin-right:10px;}
.board .newsletter_subscribe ul li:last-child{margin-right:0;}
.board .newsletter_subscribe ul li input{border:1px solid #d3d3d3;height:40px;border-radius:4px;width:230px;font-size:14px;font-weight:400;background-color:#fff;-webkit-appearance:none;box-sizing:border-box;padding:0 10px;}
.board .newsletter_subscribe ul li button{height:40px;border-radius:4px;border:1px solid #19a29b;background-color:#19a29b;color:#fff;font-weight:600;box-sizing:border-box;padding:0 15px;font-size:16px;cursor:pointer;}



.custom_newsletter_wrap {
    display: flex;
    align-items: stretch; /* 좌우 박스 높이 동일 맞춤 */
    justify-content: space-between;
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 40px;
    
    /* 배경 이미지 */
    background-image: url('img/bg_newsletter.jpg'); /* 실제 경로로 수정 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f2f4f2; /* 이미지 로딩 전 기본 배경 */
}

/* 좌/우 분할 세부 박스 */
.custom_newsletter_wrap .nl_side_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 뱃지 라벨 */
.custom_newsletter_wrap .nl_badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.custom_newsletter_wrap .nl_badge.green {
    background-color: #e2f0e5;
    color: #3b824a;
}
.custom_newsletter_wrap .nl_badge.purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

/* 텍스트 영역 */
.custom_newsletter_wrap .text_area {
    padding-right: 0;
    margin-bottom: 25px;
}
.custom_newsletter_wrap .text_area h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
    margin-top: 0;
    word-break: keep-all;
}
.custom_newsletter_wrap .text_area p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    word-break: keep-all;
}

/* 중앙 구분선 */
.custom_newsletter_wrap .nl_divider {
    width: 1px;
    background-color: #dcdcdc;
    margin: 10px 0;
}

/* [좌측] 기존 폼 영역 스타일 */
.custom_newsletter_wrap .form_area {
    width: 100%;
    max-width: 100%;
}
.custom_newsletter_wrap form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.custom_newsletter_wrap form ul li input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fff;
    outline: none;
}
.custom_newsletter_wrap form ul li input::placeholder {
    color: #999;
}
.custom_newsletter_wrap form ul li button {
    width: 100%;
    padding: 15px;
    background-color: #82c382; /* 버튼 색상 */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.custom_newsletter_wrap form ul li button:hover {
    background-color: #6eb06e;
}

/* [우측] NKmedline 아웃링크 카드 & 버튼 스타일 */
.custom_newsletter_wrap .nk_link_area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.custom_newsletter_wrap .nk_preview_card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* 로고와 텍스트 사이 간격 */
    box-sizing: border-box;
      flex-direction: column;
}

/* 로고 이미지 박스 */
.custom_newsletter_wrap .nk_preview_card .logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* 이미지 크기 감소 방지 */
}
.custom_newsletter_wrap .nk_preview_card .logo_box img {
    height: 32px; /* 로고 높이에 맞게 조절 */
    width: auto;
    display: block;
}

/* 텍스트 박스 */
.custom_newsletter_wrap .nk_preview_card .card_txt {
    text-align: center; /* 정렬을 좌측으로 고정하여 레이아웃 안정화 */
}
.custom_newsletter_wrap .nk_preview_card .card_txt span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}
.custom_newsletter_wrap .nk_preview_card .card_txt strong {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 700;
}
.custom_newsletter_wrap .nk_outlink_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #6b21a8; /* NKmedline 보라색 포인트 */
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.3s;
}
.custom_newsletter_wrap .nk_outlink_btn:hover {
    background-color: #551887;
}

/* 버튼 내부 CSS 화살표 */
.custom_newsletter_wrap .css-arrow-white {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 1px;
}

/* =========================================
   모바일 반응형 스타일 (768px 이하)
========================================= */
@media (max-width: 768px) {
    .custom_newsletter_wrap {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 30px;
    }

    /* 구분선을 가로선으로 변경 */
    .custom_newsletter_wrap .nl_divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .custom_newsletter_wrap .text_area {
        margin-bottom: 20px;
    }

    .custom_newsletter_wrap .text_area h3 {
        font-size: 20px;
    }

    .custom_newsletter_wrap .text_area p br {
        display: none; /* 모바일에서 좁아지므로 p 태그 내부 강제 줄바꿈 해제 */
    }
    
    .custom_newsletter_wrap .nk_preview_card {
        padding: 12px 15px;
        justify-content: center;
    }
    .custom_newsletter_wrap .nk_preview_card .logo_box img {
        height: 28px; /* 모바일에서 로고 크기 살짝 축소 */
    }
}


/* PC 기본 스타일 */
/* PC 기본 스타일 (1:1:1 비율) */
.custom_search_box {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 50px auto;
}

.custom_search_box .search_flex_wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.custom_search_box .select_group {
    display: flex;
    gap: 10px;
    flex: 2; /* 전체의 2/3 영역 */
}

.custom_search_box .select_item {
    flex: 1; /* 각각 1/3씩 차지 */
}

.custom_search_box select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: none;
    border-radius: 6px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center;
    appearance: none;
    -webkit-appearance: none;
    font-size: 15px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.custom_search_box .btn_item {
    flex: 1; /* 전체의 1/3 영역 */
    display: flex;
}

.custom_search_box .btn_item button {
    width: 100%;
    height: 100%;
    background-color: #82c382;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.custom_search_box .btn_item button:hover {
    background-color: #6eb06e;
}

/* 모바일 반응형 스타일 */
@media (max-width: 768px) {
    .custom_search_box .select_group {
        flex-direction: column;
        flex: 1;
    }
    
    .custom_search_box .btn_item {
        flex: none;
        width: 100px;
    }
}

.board .board_title_box{padding:50px 0 70px;text-align:center;}
.board .board_title_box .title{font-size:50px;font-family: '210computa', sans-serif;color:#333333;font-style:italic;}
.board .board_title_box .explain{margin:20px 0 0;font-size:20px;font-weight:300;color:#333333;}


.board .btnArea{padding:30px 0;text-align:right;}
.board .btnArea .button{background-color:#e0e0e0;line-height:40px;height:40px;font-weight:400;display:inline-block;width:110px;text-align:center;font-size:14px;border:0;padding:0;margin:0;cursor:pointer;}
.board .btnArea .button.list{background-color:#2f2f2f;color:#fff;}
.board .btnArea .button.write{background-color:#00a29a;color:#fff;width:150px;}
.board .btn_insert{background-color:#00a29a;color:#fff;width:150px;line-height:40px;height:40px;font-weight:400;display:inline-block;width:110px;text-align:center;font-size:14px;border:0;padding:0;margin:0;cursor:pointer;}

/* Board List */
.board .search_box{background-color:#f3f3f3;padding:10px 10px;box-sizing:border-box;margin:50px 0 0;border:1px solid #e0e0e0; display:none;}
.board .search_box form{position:relative;}
.board .search_box .select{width:20%;position:absolute;left:0;top:0;box-sizing:border-box;padding:0 10px 0 0;}
.board .search_box .select select{width:100%;border:1px solid #ddd;height:40px;padding:0 30px 0 10px;box-sizing:border-box;font-size:14px;border-radius:0;-webkit-appearance: none;-webkit-border-radius: 0px;color:#888888;font-size:14px;}
.board .search_box .input{margin:0 110px 0 20%;}
.board .search_box .input input{border:1px solid #ddd;width:100%;height:40px;box-sizing:border-box;font-size:14px;padding:5px 10px;font-size:14px;}
.board .search_box button{position:absolute;right:0;top:0;width:100px;border-radius:0;background-color:#00a29a;color:#fff;font-size:14px;font-weight:600;border:0;margin:0;height:40px;}



/* list.html */
/* PC 기본 스타일 (모던웹 스타일) */
.board_list_normal { width: 100%; }
.board_list_normal table { width: 100%; border-collapse: collapse; border-spacing: 0;    border-top: 2px solid #7cc07e;
    border-left: 0;
    border-right: 0;}
.board_list_normal a { text-decoration: none; color: #333; transition: color 0.2s; }
.board_list_normal a:hover { color: #82c382; text-decoration: underline; }

/* 기존 가로/세로선 모두 제거 및 깔끔한 하단선만 적용 */
.board_list_normal th { border: 0; border-bottom: 1px solid #f4f4f4; background-color: #fff; padding: 16px 10px; font-size: 15px; font-weight: 600; color: #111; white-space: nowrap; }
.board_list_normal td { border: 0; border-bottom: 1px solid #f4f4f4; padding: 16px 10px; font-size: 14px; color: #666; text-align: center; white-space: nowrap; vertical-align: middle; }

/* 공지사항 스타일 */
.board_list_normal tr.notice td { background: #fafafa; }
.board_list_normal tr.notice td.title a { font-weight: 700; color: #111; }

/* 제목 영역 넓게 쓰기 */
.board_list_normal td.title { white-space: normal; line-height: 1.5; width: 100%; text-align: left; word-break: keep-all; }
.board_list_normal td.title a { font-size: 15px; display: inline-block; }

/* 기타 정렬 */
.board_list_normal td.thumbnail { padding: 5px 10px; }
.board_list_normal tr.no_article { height: 150px; font-size: 15px; }

/* 모바일 반응형 (768px 이하 해상도) */
@media (max-width: 768px) {
    .board_list_normal table { border-top: 2px solid #222; }
    
    /* PC용 테이블 헤더 숨김 */
    .board_list_normal thead { display: none; }
    
    /* 리스트를 블록 형태로 변환 */
    .board_list_normal tbody, 
    .board_list_normal tr { display: block; width: 100%; }
    .board_list_normal tr { border-bottom: 1px solid #eee; padding: 16px 10px; position: relative; }
    
    /* 기본적으로 모든 td를 숨기고 필요한 항목만 노출 */
    .board_list_normal td { display: none; padding: 0; border: none; text-align: left; }
    
    /* 모바일 노출 항목: 제목, 작성자, 날짜 */
    .board_list_normal td.title { display: block; width: 100%; margin-bottom: 8px; }
    .board_list_normal td.title a { font-size: 16px; font-weight: 500; color: #222; }
    
    .board_list_normal td.author,
    .board_list_normal td.time { display: inline-block; font-size: 13px; color: #999; margin-right: 12px; }
    
    /* 공지사항 라벨 처리 */
    .board_list_normal td.notice { display: inline-block; background: #222; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 4px; margin-bottom: 8px; margin-right: 8px; }
}


.board_list_setting {}
.board_list_setting table {border: 0;border-top: 2px solid #00a29a;border-bottom: 1px solid #e9e5e4;}
.board_list_setting a{text-decoration:none;color:#000;}
.board_list_setting th{border:0;border-bottom:1px solid #e0e0e0;border-right:1px solid #e0e0e0;background-color:#f4f4f4;padding:10px 50px;height:30px;white-space: nowrap;font-size:15px;font-weight:300;color:#333333;}
.board_list_setting tr.notice {background: #f8f8f8;}
.board_list_setting tr.notice td.title a{font-weight: bold;}
.board_list_setting td{text-align:Center;border:0;border-bottom:1px solid #e0e0e0;border-right:1px solid #e0e0e0 !important;padding:10px 15px;white-space: nowrap;font-size:14px;color:#888888;height:30px;}
.board_list_setting td a{color:#888888;}
.board_list_setting tr:last-child td {border: 0;}
.board_list_setting tr th:last-child{border-right:0 !important;}
.board_list_setting tr td:last-child{border-right:0 !important;}
.board_list_setting td.notice {}
.board_list_setting td.no {}
.board_list_setting td.title {white-space: normal;line-height: 1.4;width: 100%;text-align:left;}
.board_list_setting td.author img {position: relative;top: -1px;}
.board_list_setting td.time,
.board_list_setting td.readNum,
.board_list_setting td.voteNum,
.board_list_setting td.lastReply a {text-align:center;}
.board_list_setting td.lastReply sub{}
.board_list_setting td.thumbnail{padding:0;}
.board_list_setting td.check {text-align: center;}
.board_list_setting tr.no_article {height:150px;font-size:14px;}
.board_list_setting tr.no_article td {vertical-align: middle;}


.board_list_webzine {}
.board_list_webzine ul{margin:0;padding:0;list-style:none;display: grid;  grid-template-columns: repeat(4, 1fr);  gap:30px 15px}
.board_list_webzine ul li{/*overflow:auto; padding:30px 0; border-bottom: 1px solid #e9e5e4;*/ color:#888888;}
/*.board_list_webzine ul li:first-child{padding-top:0;}
.board_list_webzine ul li:last-child{border-bottom:0;}*/
.board_list_webzine ul li .box {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden; /* 내부 이미지가 둥근 모서리를 벗어나지 않도록 필수 */
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    height:100%;
}

.board_list_webzine ul li .box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 호버 시 부드러운 그림자 */
}
.board_list_webzine ul li .box .thumbnail{background-color:#efefef;width:340px;display:inline-block;float:left;background-image:url(img/no-image.png);background-color:#dddddd;background-size:cover;background-position:center center;}
.board_list_webzine ul li .box .thumbnail img{width:100%;vertical-align:middle;}
.board_list_webzine ul li .box .text{margin:0 0 0 0px; padding:25px 20px;}
.board_list_webzine ul li .box .text .mark{background-color: #fff;
    color: #4caf50;
    border: 1px solid #4caf50;
    border-radius: 20px;
    line-height: 25px; /* 테두리 1px 위아래 추가를 고려해 살짝 줄임 */
    padding: 0 15px;
    font-size: 13px;
    display: inline-block;
    font-weight: 400;
    margin: 0 0 15px;}
.board_list_webzine ul li .box .text .title{font-size:20px;font-weight:600;color:#000; line-height: 1.4}
.board_list_webzine ul li .box .text .title a{display: -webkit-box; -webkit-line-clamp: 2; /* 원하는 줄 수 */ -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-break: break-word;}

.board_list_webzine ul li .box .summary{margin:15px 0 0;font-size:14px;color:#666; /*height:60px;*/line-height:1.4;display: -webkit-box; -webkit-line-clamp: 2; /* 원하는 줄 수 */ -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-break: break-word;min-height: 40px;}
.board_list_webzine ul li .box .more{font-size:11px;color:#4a4a4a; display:none;}
.board_list_webzine a{text-decoration:none;color:#000;}
.board_list_webzine .no_article{line-height:150px;font-size:16px;}


@media screen and (max-width: 768px) {
    .board_list_webzine ul{    grid-template-columns: repeat(1, 1fr);}
    .board_list_webzine ul li .box .text .mark{line-height: 20px;
    padding: 0 10px;
    font-size: 12px;}
    .board_list_webzine ul li .box .text .title {
        font-size: 18px;}
    
}


/* 기본 초기화 및 공통 스타일 */
.board_list_campaign ul { margin: 0; padding: 0; list-style: none; }
.board_list_campaign ul li { padding: 40px 0; border-bottom: 1px solid #eaeaea; }
.board_list_campaign ul li:first-child { border-top: 2px solid #7cc07e; padding-top: 40px; }
.board_list_campaign a { text-decoration: none; color: #333; }

/* PC 레이아웃 (Flexbox 적용) */
.board_list_campaign ul li .box { display: flex; gap: 40px; align-items: center; }

/* 썸네일 영역 (모서리 둥글게, 꽉 차게) */
.board_list_campaign ul li .box .thumbnail { flex-shrink: 0; border-radius: 12px; overflow: hidden; background-color: #f4f4f4; position: relative;width: 40% !important; }
.board_list_campaign ul li .box .thumbnail img { width: 100%; height: 100%; object-fit: cover; position: static; transform: none; }

/* 텍스트 영역 (인라인 마진 무력화) */
.board_list_campaign ul li .box .text { flex: 1; display: flex; justify-content: space-between; align-items: center; margin-left: 0 !important; width: 100%; }
.board_list_campaign ul li .box .text .left_text { flex: 1; padding-right: 30px; }
.board_list_campaign ul li .box .text .right_text { flex-shrink: 0; }

/* 텍스트 상세 스타일 */
.board_list_campaign ul li .box .text .title { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 12px; word-break: keep-all; }
.board_list_campaign ul li .box .text .summary { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: auto; }
.board_list_campaign ul li .box .text .term { font-size: 14px; color: #888; margin-bottom: 24px; }

/* 자세히 보기 버튼 */
.board_list_campaign ul li .box .text .more .button { font-size: 14px; font-weight: 600; background-color: #7cc07e; color: #fff; padding: 12px 24px; border-radius: 6px; transition: background 0.3s; display: inline-block; }
.board_list_campaign ul li .box .text .more .button:hover { background-color: #7cc07e; }

/* 상태 표시 (원형 뱃지) */
.board_list_campaign ul li .box .text .status { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: #ccc; color: #fff; font-weight: 700; font-size: 18px; margin: 0; }
.board_list_campaign ul li .box .text .status:before { content: "마감"; }
.board_list_campaign ul li .box .text .status.on { background-color: #a20017; }
.board_list_campaign ul li .box .text .status.on:before { content: "진행중"; }

/* 관리자 버튼 */
.board_list_campaign ul li .btnArea { margin-top: 20px; text-align: right; }
.board_list_campaign ul li .btnArea .button { padding: 8px 16px; background: #eee; border-radius: 4px; font-size: 13px; margin-left: 5px; }

/* 게시글 없을 때 */
.board_list_campaign .no_article { text-align: center; padding: 100px 0; font-size: 16px; color: #666; }

/* 모바일 반응형 (768px 이하) */
@media (max-width: 768px) {
    .board_list_campaign ul li { padding: 30px 0; }
    .board_list_campaign ul li .box { flex-direction: column; gap: 20px; align-items: flex-start; }
    
    /* 썸네일 크기를 모바일 너비에 맞게 조정 (인라인 스타일 무력화) */
    .board_list_campaign ul li .box .thumbnail { width: 100% !important; height: auto !important; aspect-ratio: 16 / 9; }
    
    /* 모바일에서는 텍스트와 뱃지를 세로로 배치 */
    .board_list_campaign ul li .box .text { flex-direction: column; align-items: flex-start; gap: 20px; }
    .board_list_campaign ul li .box .text .left_text { padding-right: 0; width: 100%; }
    
    /* 모바일 상태 뱃지를 원형에서 라벨 형태로 변경해 가독성 확보 */
    .board_list_campaign ul li .box .text .status { width: auto; height: auto; padding: 6px 16px; border-radius: 20px; font-size: 14px; }
}




.board_list_faq ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 2px solid #7cc07e; /* 상단 선 강조 */
}

.board_list_faq ul li {
    border-bottom: 1px solid #e5e5e5;
}

.board_list_faq ul li .title {
    padding: 24px 20px 24px 70px; /* 여백 확대 및 좌측 아이콘 공간 확보 */
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    background-image: url('./img/icon_question.png');
    background-position: 25px 24px; /* 아이콘 위치 조정 */
    background-repeat: no-repeat;
    cursor: pointer;
    line-height: 1.5;
    word-break: keep-all; /* 모바일에서 텍스트가 잘리지 않고 자연스럽게 줄바꿈됨 */
    transition: background-color 0.2s ease;
}

.board_list_faq ul li .title:hover {
    background-color: #fafafa; /* 마우스 오버 시 살짝 밝은 회색 */
}

.board_list_faq ul li .text {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa; /* 답변 영역 배경색 추가로 시각적 분리 */
    transition: max-height 0.4s ease-in-out;
}

.board_list_faq ul li .text.active {
    max-height: 1500px; /* 내용이 길 경우를 대비해 넉넉하게 설정 */
    border-top: 1px solid #f1f1f1;
}

.board_list_faq ul li .text .text_inner {
    padding: 30px 20px 30px 20px; /* 질문과 텍스트 시작선을 맞춤 */
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.board_list_faq ul li .text .button_area {
    text-align: right;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .board_list_faq ul li .title {    padding: 25px 20px 24px 58px;     background-position: 10px 20px;}
}


.table_board{border: 0;border-bottom:1px solid #e9e5e4;width:100%;border-spacing:0;}
.table_board a{text-decoration:none;color:#000;}
.table_board thead th{border:0;border-top:1px solid #e0e0e0;border-right:1px solid #e0e0e0;background-color:#fff;padding:30px 20px;/*height:30px;white-space: nowrap;*/font-size:32px;font-weight:600;color:#000000; line-height: 1.4 }
.table_board thead th:last-child{border-right:0;}
.table_board thead tr:first-child th{border-top: 0px solid #00a29a;}
.table_board tbody tr.notice {background: #f6f6f6;}
.table_board tbody tr.notice td.title a{font-weight: bold;}
.table_board tbody th{border:0;border-top:0px solid #e0e0e0;background-color:#fff;padding:10px 20px; white-space: nowrap;font-size:15px;font-weight:300;color:#333333;width:110px;text-align:left;height:30px;}
.table_board tbody th em{color:#dd0000;font-style: normal;vertical-align:middle;}
.table_board tbody td{border:0;border-top:1px solid #e0e0e0;border-right:1px solid #e0e0e0;padding:10px 15px;
    /*white-space: nowrap;*/ line-height:25px;font-size:14px;color:#888888;font-weight:300; text-align: center;}
.table_board tbody td.tr_title{width:150px;}
.table_board tbody td a{color:#888888;}
.table_board tbody td a:hover{text-decoration:underline;color:#000;}
.table_board tbody tr th:last-child{border-right:0 !important;}
.table_board tbody tr td:last-child{border-right:0 !important;}
.table_board tbody tr td ul{margin:0;padding:0;list-style:none;}
.table_board tbody tr td ul li{display:inline-block;}
.table_board input[type='radio']{vertical-align:middle;}
.table_board input[type='checkbox']{vertical-align:middle;}
.table_board label{vertical-align:middle;padding:0 5px;}
.table_board input[type='text'],
.table_board input[type='password'],
.table_board input[type='email'],
.table_board input[type='tel']{width:100%;height:30px;border:1px solid #e0e0e0;box-sizing:border-box;font-size:16px;padding:5px;font-weight:400;}
.table_board textarea{width:100%;height:150px;border:1px solid #e0e0e0;box-sizing:border-box;resize:none;font-size:16px;padding:5px;font-weight:400;}
.table_board input.w200{width:200px;}
.table_board input.w400{width:400px;}


.table_board .article_info{margin:0;padding:0;list-style:none;}
.table_board .article_info li{border-right:1px solid #e0e0e0;display:inline-block;color:#888888;padding:0 10px 0 8px;line-height:12px;}
.table_board .article_info li:first-child{padding-left:0;}
.table_board .article_info li:last-child{margin:0;border:0;}


.table_board .fileList{margin:0;padding:0;list-style:none;}
.table_board .fileList li{display:block;}


.board .board_read_content{    padding: 50px 0;}
.board .board_read_content p{font-size:15px; line-height: 1.6; text-align: center;}


 .table_file th{display:none;}
.table_file td{border-top: 2px solid #7cc07e !important;border-bottom: 2px solid #7cc07e !important;}

@media screen and (max-width: 768px) {
    .table_board thead th{font-size:20px; padding:0 0 20px;}
   
}




.pagination{margin:0;padding:30px 0 0;list-style:none;text-align:center;}
.pagination li{display:inline-block;border:0px solid #e0e0e0;height:40px;min-width:40px;box-sizing:border-box;line-height:40px;font-weight:600;margin:0 5px;    border-radius: 100px;}
.pagination li a{padding:0 10px;color:#333;text-decoration:none;font-size:14px;font-weight:400;display:block;}
.pagination li.active{background-color:#4caf50;border-color:#4caf50;color:#fff;}
.pagination li.active a{color:#fff;}

@media screen and (max-width: 768px) {
    .pagination{display:flex;}
    .pagination li{height:20px; min-width:20px; line-height: 20px; margin:0 5px;}
}

/* Feedback (Trackback+Comment) */
/* _trackback.html | _comment.html */
.feedback {
	position: relative;
	color: #4b4b4b;
	margin: 0 0 20px 0;
}
.feedback .fbHeader {
	position: relative;
	height: 32px;
	padding: 10px 0 0 5px;
	line-height: 30px;
	border-top:1px solid #DDD;
}
#comment .fbHeader .wComment {
	position: absolute;
	top: 10px;
	right: 15px;
	padding: 0 0 0 18px;
	text-decoration: none;
	color: #666;
	line-height: 1;
}
.feedback .fbHeader h2 {
	margin: 0;
	font-size: 14px;
	display: inline;
}
.feedback .fbHeader h2 em {
	font-style: normal;
	color: #CDA25A;
}
.feedback .fbHeader .trackbackURL {
	position: absolute;
	top: 8px;
	right: 10px;
	margin: 0;
	line-height: 1;
	color: #666;
	font: 11px Tahoma, Geneva, sans-serif;
}
.feedback .fbHeader .trackbackURL a {
	text-decoration: none;
	color: #666;
}
.feedback .fbList {
	margin: 0;
	padding: 0;
}
.feedback .fbItem {
	padding: 20px 0 19px 0;
	border-bottom: 1px solid #E9E9E9;
	margin: 0 0 -1px 0;
	zoom: 1;
	list-style: none;
}
.feedback .fbItem:last-child {
	border-bottom:none;
}
.feedback .fbItem:after {
	content: "";
	display: block;
	clear: both;
}
.feedback .indent {
	background: url(icoIndent.gif) no-repeat;
}
.feedback .fbMeta {
	float: left;
	width: 184px;
	padding: 0 0 0 6px;
}
.feedback .fbMeta .profile {
	float: left;
	width: 38px;
	height: 38px;
	margin: 0 10px 5px 0;
	background: url(profile.gif) no-repeat;
	background-size:100%;
	border-radius: 100%;
}
.feedback .fbMeta .author {
	margin: 0;
	font-size: 12px;
}
.feedback .author a {
	text-decoration: none;
	color: #666;
}
.feedback .author a img {
	margin: 0 6px 0 0 !important;
	vertical-align: top !important;
}
.feedback .time {
	margin: 0;
	font: 11px Tahoma, Geneva, sans-serif;
	color: #8e8e8e;
}
.feedback .xe_content {
	margin: 0 0 0 200px;
	color: #666;
	line-height: 1.5;
}
.feedback .xe_content *:first-child {
	margin-top: 0;
}
#trackback .xe_content {
	color: #888;
}
#trackback .xe_content strong {
	color: #666;
	display: block;
	font-weight: normal;
}
.feedback .fileList {
	margin: 0 0 0 190px;
	padding: 8px 0 0 0;
	display: inline;
	float: left;
	clear: both;
}
.feedback .toggleFile {
	border: 0;
	background: none;
	cursor: pointer;
	overflow: visible;
	padding: 0;
	color: #767676;
}
.feedback .files {
	display: none;
	list-style: none;
	margin: 15px 0;
	padding: 0;
	line-height: 16px;
}
.feedback .files li {
	background: url(icoSet.gif) no-repeat 0 -28px;
	padding: 0 0 0 15px;
}
.feedback .files a {
	color: #767676;
	position: relative;
	text-decoration: none;
}
.feedback .files a .fileSize {
	visibility: hidden;
	position: absolute;
	padding: 1px 4px;
	left: 100%;
	top: -4px;
	border: 1px solid #ddd;
	font: 11px Tahoma, Geneva, sans-serif;
	background: #fff;
	white-space: nowrap;
}
.feedback .files a:hover .fileSize,
.feedback .files a:active .fileSize,
.feedback .files a:focus .fileSize {
	visibility: visible;
}
.feedback .action {
	margin: 0;
	padding: 10px 10px 0 0;
	white-space: nowrap;
	float: right;
}
.feedback .action .vote {
	margin: 0 10px 0 0;
	color: #767676;
}
.feedback .action a {
	padding: 0 0 0 4px;
	color: #767676;
	text-decoration: none;
}
.feedback .action a:hover {
	color:#CDA25A;
}
.feedback .action a.this {
	background: none;
	padding: 0;
	margin: 0 0 0 10px;
	text-decoration: underline;
}
.feedback .pagination {
	padding: 10px 0;
}
.feedback .indent1 {
	padding-left: 20px;
	background-position: 6px 15px;
}
.feedback .indent2 {
	padding-left: 40px;
	background-position: 26px 15px;
}
.feedback .indent3 {
	padding-left: 60px;
	background-position: 46px 15px;
}
.feedback .indent4 {
	padding-left: 80px;
	background-position: 66px 15px;
}
.feedback .indent5 {
	padding-left: 100px;
	background-position: 86px 15px;
}
.feedback .indent6 {
	padding-left: 120px;
	background-position: 106px 15px;
}
.feedback .indent7 {
	padding-left: 140px;
	background-position: 126px 15px;
}
.feedback .indent8 {
	padding-left: 160px;
	background-position: 146px 15px;
}
.feedback .indent9 {
	padding-left: 180px;
	background-position: 166px 15px;
}
.feedback .indent10 {
	padding-left: 200px;
	background-position: 186px 15px;
}
.feedback .indent11 {
	padding-left: 220px;
	background-position: 206px 15px;
}
.feedback .indent12 {
	padding-left: 240px;
	background-position: 226px 15px;
}
.feedback .indent12 .action {display: none}
.fbFooter {
	margin: -10px 0 10px 0;
}


/* Write Author */
/* _read.html | write_form.html | comment_form.html */
.write_author {
	float: left;
	margin: 0 4px 0 0;
}
.write_author .item {
	position: relative;
	display: inline-block;
	zoom: 1;
}
.write_author .iLabel {
	top: 6px;
	left: 12px;
	color: #666;
}
.write_author label {
	margin: 0 10px 0 0;
}
/* Write Comment */
/* _read.html | comment_form.html */
.write_comment {
	position: relative;
	margin: 10px 0 75px;
	zoom: 1;
}
.write_comment:after {
	content: "";
	display: block;
	clear: both;
}
.write_comment textarea {
	width: 645px;
	height: 37px;
	margin: 0 0 5px 0;
}
.write_comment .write_author {
	padding: 0 0 10px 0;
}
.write_comment .iText.userName,
.write_comment .iText.userPw {width:100px;}
.write_comment .iText.homePage {width:150px;}
/* Context Data | Context Message */
/* comment_form.html | delete_form.html | delete_comment_form.html | input_password_form.html | message.html */
.context_data {
	background: #f8f8f8;
	border-top: 2px solid #666;
	padding: 15px 20px;
	color: #666;
}
.context_data h3.author {
	margin: 0 0 10px 0;
	color: #333;
}
.context_data h3.title {
	margin: 0 0 10px 0;
	color: #333;
}
.context_data p.author {
	margin: 0;
}
.context_data p.author strong {
	font-weight: normal;
}
.context_data .xe_content {
	color: #666;
}
.context_message {
	text-align: center;
	border-top: 2px solid #666;
}
.context_message h1 {
	font-size: 16px;
	margin: 20px 0;
}
.context_message .btnArea {
	margin: 20px 0;
}

