/* ============================================================
   2026 리뉴얼 메인 CSS - 광주광역시 벤치마킹 v3 (대형폰트/시니어)
   ============================================================ */
:root {
    --primary: #6B3FA0;
    --primary-dark: #5a3188;
    --primary-light: #f3eefb;
    --primary-rgb: 107, 63, 160;
    --text-dark: #222;
    --text-mid: #555;
    --text-light: #888;
    --bg-section: #f4f5f7;
    --bg-white: #fff;
    --border: #e5e5e5;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-hover: 0 8px 28px rgba(0,0,0,0.13);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --max-width: 1280px;
}
section.sec { padding: 0; }

/* ============================================================
   헤더 - 높이 확대, 폰트 확대
   ============================================================ */
.header {
    background: #fff !important;
    border: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
}
.header.scrolled { box-shadow: var(--shadow-card); }

/* 유틸바 - 높이 확대 */
.header_topbar {
    background: #ece6f3;
    border-bottom: 1px solid #d5cce0;
    font-size: 14px;
}
.header_topbar .inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_topbar .site_name { font-weight: 700; color: var(--primary); font-size: 15px; }
.header_topbar a { color: var(--text-mid); margin-left: 18px; font-size: 14px; font-weight: 500; }
.header_topbar a:hover { color: var(--primary); }

/* 메인 네비 - 높이 80px */
.header_wrap {
    max-width: var(--max-width) !important;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    position: relative;
}
.header .logo_box img { height: 50px; width: auto; }
.header_menu.gnb_1 > li > a {
    padding: 26px 22px !important;
    font-size: 18px !important;
    font-weight: 700;
    color: var(--text-dark) !important;
    position: relative;
    transition: var(--transition);
}
.header_menu.gnb_1 > li > a::before { display: none !important; }
.header_menu.gnb_1 > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--primary);
    transition: var(--transition);
}
.header_menu.gnb_1 > li:hover > a::after,
.header_menu.gnb_1 > li > a.active::after { width: 80%; }
.header_menu.gnb_1 > li:hover > a,
.header_menu.gnb_1 > li > a.active { color: var(--primary) !important; }

/* 전체메뉴 버튼 */
.btn_all_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
    flex-shrink: 0;
}
.btn_all_menu:hover { background: var(--primary-dark); }

/* 전체메뉴 오버레이 */
.fullmenu_overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.fullmenu_overlay.active { display: block; }
.fullmenu_panel {
    position: fixed;
    top: 0; right: -450px;
    width: 420px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.fullmenu_panel.active { right: 0; }
.fullmenu_header {
    background: var(--primary);
    color: #fff;
    padding: 25px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fullmenu_header h3 { font-size: 20px; font-weight: 700; margin: 0; color: #fff; }
.fullmenu_close {
    background: none; border: none;
    color: #fff; font-size: 24px; cursor: pointer;
}
.fullmenu_body { padding: 20px 25px; }
.fullmenu_body .fm_group { margin-bottom: 25px; }
.fullmenu_body .fm_group h4 {
    font-size: 18px; font-weight: 700;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 10px;
}
.fullmenu_body .fm_group a {
    display: block;
    padding: 10px 12px;
    font-size: 16px;
    color: var(--text-mid);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}
.fullmenu_body .fm_group a i { width: 24px; text-align: center; color: var(--primary); margin-right: 8px; }
.fullmenu_body .fm_group a:hover { background: var(--primary-light); color: var(--primary); }

/* 2차 드롭다운 - 깔끔한 가로 정렬 */
.gnb_2 {
    border-top: 3px solid var(--primary) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    top: 100% !important;
    z-index: 9999 !important;
    width: 100% !important;
    left: 0 !important;
    background: #fff !important;
}
.gnb_2 > div {
    max-width: var(--max-width) !important;
    min-height: auto !important;
    background: none !important;
    padding: 20px 30px !important;
    margin: 0 auto !important;
}
.gnb_2 > div > .row {
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin: 0 !important;
}
.gnb_2 > div > .row > .col-3 {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}
.gnb_2 a.submenu_link {
    font-size: 15px !important;
    padding: 14px 24px !important;
    border-radius: 8px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 110px;
    text-align: center;
    white-space: nowrap;
}
.gnb_2 a.submenu_link:hover,
.gnb_2 a.submenu_link.active {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
}
.gnb_2 .submenu_icon {
    font-size: 24px !important;
    color: var(--primary);
    margin-bottom: 0;
}
.gnb_2 .submenu_link span {
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.3;
    word-break: keep-all;
}

/* ============================================================
   메인 비주얼 - 크게 확대
   ============================================================ */
.main_visual_2026 {
    max-width: var(--max-width);
    margin: 30px auto 0;
    padding: 0 20px;
    display: flex;
    gap: 18px;
    height: 460px;
}
.main_visual_left {
    flex: 0 0 65%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
}
.main_visual_left .splide,
.main_visual_left .splide__track,
.main_visual_left .splide__list,
.main_visual_left .splide__slide {
    height: 100% !important;
}
.main_visual_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    height: 100%;
}
.slide_items {
    padding-top: 0 !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}
.slide_items > img {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}
.slide_items.is-active > img { transform: scale(1.04); }
.slide_items .text_box {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
    display: flex;
    align-items: flex-end;
}
.slide_items .text_box > div { padding: 35px 40px; width: 100%; }
.slide_items .text_box .text_wrap p {
    transition: 0.6s ease-out;
    opacity: 0; transform: translateY(20px);
}
.slide_items .text_box .text_wrap p:nth-child(2) { transition-delay: 0.15s; }
.slide_items.is-active .text_box .text_wrap p { opacity: 1; transform: translateY(0); }

/* 슬라이더 화살표 */
.main_slider .splide__arrows {
    position: absolute; bottom: 22px; right: 24px; z-index: 20; display: flex; gap: 4px;
}
.main_slider .splide__arrow {
    position: static !important;
    width: 38px !important; height: 38px !important;
    background: rgba(0,0,0,0.45) !important;
    border-radius: 4px !important;
    opacity: 1 !important; transform: none !important;
}
.main_slider .splide__arrow svg { fill: #fff !important; width: 16px !important; height: 16px !important; }
.main_slider .splide__arrow:hover { background: var(--primary) !important; }
.main_slider .splide__pagination {
    bottom: 26px; left: 40px; right: auto; padding: 0; justify-content: flex-start;
}
.main_slider .splide__pagination__page {
    background: rgba(255,255,255,0.4); width: 12px; height: 12px; margin: 0 4px;
}
.main_slider .splide__pagination__page.is-active { background: #fff; transform: scale(1.2); }

/* 우측 카드 - 배경색 */
.visual_right_card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    min-height: 0;
}
.visual_right_card:nth-child(1) { background: #f8f5fd; }
.visual_right_card:nth-child(2) { background: #f0f8ff; }
.visual_right_card:nth-child(3) { background: #fdf5f0; }
.visual_right_card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
}
.visual_right_card .card_icon {
    font-size: 28px; color: var(--primary);
    margin-bottom: 12px;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(107,63,160,0.12);
    border-radius: 50%;
}
.visual_right_card .card_title {
    font-size: 19px; font-weight: 800;
    color: var(--text-dark); margin-bottom: 6px;
}
.visual_right_card .card_desc {
    font-size: 14px; color: var(--text-mid); line-height: 1.6;
}

/* ============================================================
   퀵 메뉴 - 대형
   ============================================================ */
.quick_menu_2026 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 45px 20px 35px;
    display: flex;
    justify-content: center;
    gap: 16px;
    background: none;
}
.quick_menu_2026 a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 12px 22px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: #f8f6fc;
    border: 1px solid #ece6f3;
}
.quick_menu_2026 a:nth-child(1) { background: #f3eefb; }
.quick_menu_2026 a:nth-child(2) { background: #edf6ff; }
.quick_menu_2026 a:nth-child(3) { background: #fff5ee; }
.quick_menu_2026 a:nth-child(4) { background: #eefbf3; }
.quick_menu_2026 a:nth-child(5) { background: #fdf2f8; }
.quick_menu_2026 a:nth-child(6) { background: #f0f4ff; }
.quick_menu_2026 a:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(107,63,160,0.18);
    border-color: var(--primary);
}
.quick_menu_2026 a .icon_wrap {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #d5cce0;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.quick_menu_2026 a:hover .icon_wrap {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 6px 18px rgba(107,63,160,0.35);
}
.quick_menu_2026 a .icon_wrap img {
    width: 42px; height: 42px;
    object-fit: contain;
    transition: var(--transition);
}
.quick_menu_2026 a:hover .icon_wrap img { filter: brightness(0) invert(1); }
.quick_menu_2026 a span {
    font-size: 17px; font-weight: 700;
    color: var(--text-dark);
    text-align: center; word-break: keep-all;
}

/* ============================================================
   알립니다 - 대형, 회색 배경
   ============================================================ */
.news_section_2026 {
    padding: 70px 0 90px;
    background: var(--bg-section);
}
.news_section_2026 .inner {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 20px;
}
.news_layout { display: flex; gap: 35px; }
.news_sidebar { width: 220px; flex-shrink: 0; }
.news_sidebar h3 {
    font-size: 32px; font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}
.news_sidebar .side_tabs { display: flex; flex-direction: column; gap: 4px; }
.news_sidebar .side_tabs a {
    display: block;
    padding: 14px 20px;
    font-size: 17px; font-weight: 500;
    color: var(--text-mid);
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none; cursor: pointer;
}
.news_sidebar .side_tabs a:hover { background: var(--primary-light); color: var(--primary); }
.news_sidebar .side_tabs a.active {
    background: var(--primary); color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(107,63,160,0.3);
}
.news_cards_wrap { flex: 1; min-width: 0; }
.news_tab_panel { width: 100%; }
.news_card_splide .splide__pagination {
    bottom: -30px; padding: 0;
}
.news_card_splide .splide__pagination__page {
    background: #d0c4e0; width: 10px; height: 10px; margin: 0 5px;
    transition: var(--transition);
}
.news_card_splide .splide__pagination__page.is-active {
    background: var(--primary); transform: scale(1.3);
}
.news_card_item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: none;
    height: 100%;
}
.news_card_item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    text-decoration: none;
}
.news_card_item .card_thumb {
    position: relative;
    padding-top: 72%;
    overflow: hidden; background: #f0f0f0;
}
.news_card_item .card_thumb img {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news_card_item:hover .card_thumb img { transform: scale(1.06); }
.news_card_item .card_badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 12px; font-weight: 700;
    padding: 5px 14px;
    border-radius: 14px; z-index: 2;
}
.card_badge { background: var(--primary); color: #fff; }
.card_badge.badge_notice { background: var(--primary); }
.card_badge.badge_photo { background: #2ecc71; }
.card_badge.badge_welfare { background: #e67e22; }
.news_card_item .card_body {
    padding: 20px;
    flex: 1; display: flex; flex-direction: column;
}
.news_card_item .card_body h4 {
    font-size: 18px; font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5; margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_card_item .card_body .card_date {
    font-size: 14px; color: var(--text-light); margin-top: auto;
}

/* ============================================================
   소식지/정보제공 - 흰 배경, 확대
   ============================================================ */
.board_gallery_section {
    padding: 70px 0 90px;
    background: #fff;
}
.board_gallery_section .inner {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 20px;
}
.board_gallery_section .board_row { display: flex; gap: 30px; }
.board_gallery_col { flex: 1; min-width: 0; }
.board_col_header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 35px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}
.board_gallery_col .tab_pills a {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 24px;
    font-size: 17px; font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.board_gallery_col .tab_pills a.active {
    background: var(--primary); color: #fff;
    border-color: var(--primary);
}
.board_gallery_col .tab_pills a:hover:not(.active) {
    border-color: var(--primary); color: var(--primary);
}
.btn_more_2026.notice_gallery {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff; font-size: 20px; font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn_more_2026.notice_gallery:hover { background: var(--primary-dark); transform: scale(1.1); }

/* 갤러리 그리드 - 확대 */
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.gallery_item {
    display: block; background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden; text-decoration: none;
    transition: var(--transition);
}
.gallery_item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px); text-decoration: none;
}
.gallery_thumb {
    position: relative;
    padding-top: 78%;
    overflow: hidden; background: #f0f0f0;
}
.gallery_thumb img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery_item:hover .gallery_thumb img { transform: scale(1.06); }
.gallery_info { padding: 18px 20px; }
.gallery_tit {
    font-size: 17px; font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px; line-height: 1.5;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gallery_date { font-size: 14px; color: var(--text-light); }


/* ============================================================
   소식지/사진첩 Splide 슬라이더 - 대형 썸네일
   ============================================================ */
.slider_wrap { position: relative; }
.news_splide,
.photo_splide {
    position: relative;
}
.news_splide .splide__pagination,
.photo_splide .splide__pagination {
    bottom: -35px; padding: 0;
}
.news_splide .splide__pagination__page,
.photo_splide .splide__pagination__page {
    background: #d0c4e0; width: 10px; height: 10px; margin: 0 5px;
    transition: var(--transition);
}
.news_splide .splide__pagination__page.is-active,
.photo_splide .splide__pagination__page.is-active {
    background: var(--primary); transform: scale(1.3);
}

/* 슬라이더 아이템 - 대형 썸네일 */
.gallery_slide_item {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}
.gallery_slide_item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    text-decoration: none;
}
.gallery_slide_thumb {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}
.gallery_slide_thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery_slide_item:hover .gallery_slide_thumb img {
    transform: scale(1.06);
}
.gallery_slide_info {
    padding: 18px 20px;
}
.gallery_slide_tit {
    font-size: 17px; font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px; line-height: 1.5;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gallery_slide_date {
    font-size: 14px; color: var(--text-light);
}

/* 탭 pill 버튼 스타일 (커스텀 탭) */
.tab_pill_btn {
    display: inline-block !important;
    padding: 10px 26px !important;
    border-radius: 24px !important;
    font-size: 17px !important; font-weight: 700 !important;
    color: var(--text-light) !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    border: 2px solid transparent !important;
    cursor: pointer;
}
.tab_pill_btn.active {
    background: var(--primary) !important; color: #fff !important;
    border-color: var(--primary) !important;
}
.tab_pill_btn:hover:not(.active) {
    border-color: var(--primary) !important; color: var(--primary) !important;
}

/* ============================================================
   사진첩 - 회색 배경, 확대
   ============================================================ */
.gallery_section_2026 {
    padding: 70px 0 90px;
    background: var(--bg-section);
}
.gallery_section_2026 .inner {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 20px;
}
.gallery_section_2026 .sec_heading {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}
.gallery_section_2026 .sec_heading h2 {
    font-size: 28px; font-weight: 800; color: var(--text-dark);
}
.btn_more_gallery {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: #fff;
    font-size: 20px; font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn_more_gallery:hover { background: var(--primary-dark); transform: scale(1.1); color: #fff; text-decoration: none; }
section.sec_3 { background: var(--bg-section); padding: 0; }

/* ============================================================
   주요서비스 - 흰 배경, 확대
   ============================================================ */
.service_section_2026 {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.service_section_2026 .inner {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 20px;
}
.service_section_2026 h2 {
    font-size: 28px; font-weight: 800;
    color: var(--text-dark); margin-bottom: 28px;
}
.service_section_2026 h2 i { color: var(--primary); font-size: 24px; }
.service_pills {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 12px; margin-bottom: 28px;
}
.service_pills a {
    display: inline-block;
    padding: 12px 26px;
    border: 1.5px solid var(--border);
    border-radius: 28px;
    font-size: 16px; font-weight: 600;
    color: var(--text-mid); background: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.service_pills a:hover {
    border-color: var(--primary); color: #fff;
    background: var(--primary);
}

/* ============================================================
   파트너 배너
   ============================================================ */
.partner_section_2026 {
    padding: 40px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
section.sec_4 { background: var(--bg-section); padding: 0; }
.sec_4 .img_banner { display: none; }
.partner .items { padding: 0 8px !important; }
.partner .items img {
    height: 65px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px; background: #fff;
    transition: var(--transition);
}
.partner .items img:hover { box-shadow: var(--shadow-card); }

/* ============================================================
   푸터
   ============================================================ */
footer.footer { background: #37374a !important; border-top: none !important; padding: 0 !important; }
.footer_top_2026 { background: #2e2e3e; padding: 14px 0; }
.footer_top_2026 .inner {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 20px;
    display: flex; gap: 25px;
}
.footer_top_2026 a { color: #b0b0c0; font-size: 14px; text-decoration: none; transition: var(--transition); }
.footer_top_2026 a:hover { color: #fff; }
.footer_warp { max-width: var(--max-width) !important; padding: 35px 20px !important; }
footer .h16, footer .h18, footer .h22, footer a.h16, footer p.h16 { color: #a0a0b0 !important; font-size: 14px !important; }
footer a.h16:hover { color: #fff !important; }
footer .h18 { color: #d0d0e0 !important; font-size: 16px !important; font-weight: 600; }
footer .border-start { border-color: rgba(255,255,255,0.08) !important; }
footer .copyright { max-width: var(--max-width); margin: 0 auto; padding: 15px 20px !important; border-top: 1px solid rgba(255,255,255,0.06); }
footer .copyright .h14 { color: #666680 !important; font-size: 13px !important; }
.footer_news li a { color: #a0a0b0 !important; }
.footer_news li a:hover { color: #fff !important; }

.quick_up { bottom: 30px; right: 25px; z-index: 999; }
.quick_up i {
    width: 48px; height: 48px;
    display: flex !important; align-items: center; justify-content: center;
    background: var(--primary) !important; color: #fff;
    border: none !important; border-radius: 50% !important;
    font-size: 18px; box-shadow: var(--shadow-card); cursor: pointer;
}
.quick_up i:hover { background: var(--primary-dark) !important; }
section.sec_1 { display: none; }
section.sec_2 { display: none; }
section.sec_4 .img_banner { display: none; }

/* ============================================================
   서브메뉴 아이콘
   ============================================================ */
.submenu_link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.submenu_link:hover { color: var(--primary) !important; background: #f8f4fd !important; }
.submenu_icon { font-size: 22px; color: var(--primary); display: block; margin-bottom: 2px; }
.submenu_link span { font-size: 14px; line-height: 1.3; word-break: keep-all; }

/* ============================================================
   반응형
   ============================================================ */
/* ============================================================
   태블릿 (max-width: 991px)
   ============================================================ */
@media(max-width:991px) {
    /* 메인 비주얼 */
    .main_visual_2026 { flex-direction: column; height: auto; gap: 12px; }
    .main_visual_left { flex: none; height: 320px; }
    .main_visual_right { flex: none; flex-direction: row; gap: 10px; height: auto; }
    .visual_right_card { padding: 18px 16px; }
    .visual_right_card .card_icon { width: 44px; height: 44px; font-size: 22px; }
    .visual_right_card .card_title { font-size: 17px; }
    .visual_right_card .card_desc { font-size: 13px; }

    /* 퀵메뉴 */
    .quick_menu_2026 { gap: 10px; padding: 30px 15px 25px; }
    .quick_menu_2026 a .icon_wrap { width: 72px; height: 72px; }
    .quick_menu_2026 a .icon_wrap img { width: 36px; height: 36px; }

    /* 알립니다 */
    .news_layout { flex-direction: column; gap: 20px; }
    .news_sidebar { width: 100%; }
    .news_sidebar h3 { font-size: 26px; margin-bottom: 14px; padding-bottom: 10px; }
    .news_sidebar .side_tabs { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .news_sidebar .side_tabs a { padding: 10px 18px; font-size: 15px; }

    /* 소식지/사진첩 */
    .board_gallery_section .board_row { flex-direction: column; }
    .gallery_grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ============================================================
   모바일 (max-width: 767px)
   ============================================================ */
@media(max-width:767px) {
    /* 헤더 */
    .header_topbar { display: none; }
    .header_wrap { height: 60px; }

    /* 메인 비주얼 */
    .main_visual_2026 { padding: 10px 12px 0; gap: 10px; margin-top: 8px; height: auto; }
    .main_visual_left { height: 220px; border-radius: var(--radius); }
    .main_visual_right { flex-direction: column; gap: 8px; }
    .visual_right_card { padding: 16px 14px; flex-direction: row; align-items: center; gap: 14px; }
    .visual_right_card .card_icon { width: 42px; height: 42px; font-size: 20px; margin-bottom: 0; flex-shrink: 0; }
    .visual_right_card .card_title { font-size: 16px; margin-bottom: 2px; }
    .visual_right_card .card_desc { font-size: 13px; line-height: 1.4; }
    .slide_items .text_box > div { padding: 20px; }
    .slide_items .text_box .text_wrap p.h50 { font-size: 20px !important; }
    .slide_items .text_box .text_wrap p.h35 { font-size: 15px !important; }
    .main_slider .splide__arrows { bottom: 12px; right: 12px; }
    .main_slider .splide__arrow { width: 32px !important; height: 32px !important; }
    .main_slider .splide__pagination { bottom: 14px; left: 16px; }
    .main_slider .splide__pagination__page { width: 8px; height: 8px; }

    /* 퀵메뉴 */
    .quick_menu_2026 { flex-wrap: wrap; padding: 20px 10px 15px; gap: 8px; }
    .quick_menu_2026 a { flex: 0 0 calc(33.33% - 6px); max-width: calc(33.33% - 6px); padding: 16px 6px 12px; border-radius: var(--radius); }
    .quick_menu_2026 a .icon_wrap { width: 58px; height: 58px; }
    .quick_menu_2026 a .icon_wrap img { width: 28px; height: 28px; }
    .quick_menu_2026 a span { font-size: 13px; }

    /* 알립니다 */
    .news_section_2026 { padding: 40px 0 60px; }
    .news_section_2026 .inner { padding: 0 12px; }
    .news_sidebar h3 { font-size: 22px; margin-bottom: 12px; padding-bottom: 8px; }
    .news_sidebar .side_tabs a { padding: 8px 14px; font-size: 14px; }
    .news_card_item .card_thumb { padding-top: 65%; }
    .news_card_item .card_body { padding: 14px; }
    .news_card_item .card_body h4 { font-size: 15px; margin-bottom: 6px; }
    .news_card_item .card_body .card_date { font-size: 13px; }
    .news_card_splide .splide__pagination { bottom: -25px; }

    /* 소식지/정보제공 */
    .board_gallery_section { padding: 40px 0 65px; }
    .board_gallery_section .inner { padding: 0 12px; }
    .board_col_header { margin-bottom: 24px; padding-bottom: 12px; }
    .tab_pill_btn { padding: 8px 18px !important; font-size: 15px !important; }
    .gallery_slide_thumb { padding-top: 70%; }
    .gallery_slide_info { padding: 14px 16px; }
    .gallery_slide_tit { font-size: 15px; }
    .gallery_slide_date { font-size: 13px; }
    .gallery_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .news_splide .splide__pagination,
    .photo_splide .splide__pagination { bottom: -25px; }

    /* 사진첩 */
    .gallery_section_2026 { padding: 40px 0 65px; }
    .gallery_section_2026 .inner { padding: 0 12px; }
    .gallery_section_2026 .sec_heading { margin-bottom: 20px; padding-bottom: 10px; }
    .gallery_section_2026 .sec_heading h2 { font-size: 22px; }

    /* 주요서비스 */
    .service_section_2026 { padding: 35px 0; }
    .service_section_2026 .inner { padding: 0 12px; }
    .service_section_2026 h2 { font-size: 22px; margin-bottom: 18px; }
    .service_pills { gap: 8px; margin-bottom: 18px; }
    .service_pills a { font-size: 14px; padding: 9px 16px; }

    /* 파트너 */
    .partner_section_2026 { padding: 25px 0; }
    .partner .items { padding: 0 5px !important; }
    .partner .items img { height: 55px; padding: 8px 12px; border-radius: 6px; }

    /* 푸터 */
    .footer_top_2026 .inner { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .footer_top_2026 a { font-size: 13px; }
    .footer_warp { padding: 25px 15px !important; }
    .footer .d-flex.ps-3 { flex-direction: column; gap: 15px; }
    .footer .d-flex.ps-3 nav { width: 100% !important; max-width: 100% !important; flex: none !important; }
    .footer .border-start { border: none !important; padding-left: 0 !important; }
    footer .copyright { padding: 12px 15px !important; }
    footer .copyright .h14 { font-size: 12px !important; }

    /* 전체메뉴 패널 */
    .fullmenu_panel { width: 88%; }
    .fullmenu_body { padding: 15px 18px; }
    .fullmenu_body .fm_group h4 { font-size: 16px; }
    .fullmenu_body .fm_group a { font-size: 15px; padding: 9px 10px; }

    /* 서브메뉴 드롭다운 (PC only) */
    .gnb_2 { display: none !important; }
}

/* ============================================================
   소형 모바일 (max-width: 400px)
   ============================================================ */
@media(max-width:400px) {
    .main_visual_left { height: 180px; }
    .visual_right_card { padding: 12px; gap: 10px; }
    .visual_right_card .card_icon { width: 36px; height: 36px; font-size: 18px; }
    .visual_right_card .card_title { font-size: 15px; }
    .quick_menu_2026 a .icon_wrap { width: 50px; height: 50px; }
    .quick_menu_2026 a .icon_wrap img { width: 24px; height: 24px; }
    .quick_menu_2026 a span { font-size: 12px; }
    .news_sidebar .side_tabs a { padding: 7px 12px; font-size: 13px; }
    .fullmenu_panel { width: 92%; }
}
