@charset "utf-8";

/* ============================================================
   게시글 없음 메시지
   ============================================================ */
.photo_no_data, .video_no_data, .now_no_data { width: 100%; padding: 60px 0; text-align: center; font-size: 16px; color: #888; }

/* ============================================================
   공통
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
#wrap { min-width: 0; max-width: 2600px; margin: 0 auto; position: relative; overflow-x: hidden; }
#container > div { clear: both; position: relative; }
#container a { transition: ease-in-out 0.2s; }
.inner { width: 1400px; max-width: 100%; margin: 0 auto; position: relative; box-sizing: border-box; }

/* 섹션 공통 헤더 */
.section_hd { display: flex; align-items: center; justify-content: space-between; padding: 60px 0 40px; }
.section_hd .section_tit { font-size: 36px; font-weight: 800; color: #111; letter-spacing: -0.5px; }
.section_hd .tit_ko { font-size: 36px; font-weight: 800; color: #111; margin-right: 20px; }
.section_hd .tit_sub { font-size: 20px; font-weight: 500; color: #111; }

/* 더보기 원형 버튼 */
.btn_more_circle { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid #111; color: #111; font-size: 22px; font-weight: 300; text-decoration: none; transition: all 0.2s; }
.btn_more_circle:hover { border-color: #1464C8; color: #1464C8; }

/* 이전/다음 원형 버튼 */
.section_ctrl { display: flex; align-items: center; gap: 8px; }
.section_ctrl a,
.now_prev, .now_next,
.video_prev, .video_next { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid #111; background: #fff; text-indent: -9999px; position: relative; transition: all 0.2s; }
.section_ctrl .btn_more_circle { text-indent: 0; }
.section_ctrl a:hover,
.now_prev:hover, .now_next:hover,
.video_prev:hover, .video_next:hover { border-color: #1464C8; }
.now_prev::after,
.video_prev::after { content: ''; display: block; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-left: 2px solid #555; border-bottom: 2px solid #555; transform: translate(-30%, -50%) rotate(45deg); }
.now_next::after,
.video_next::after { content: ''; display: block; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-right: 2px solid #555; border-top: 2px solid #555; transform: translate(-70%, -50%) rotate(45deg); }


/* ============================================================
   메인 비주얼 – 이미지 비율(1920:960 = 2:1) 유지하여 넓은 뷰포트에서도 텍스트 표시
   ============================================================ */
.main_vis { height: clamp(700px, 50vw, 1200px); width: 100%; position: relative; overflow: hidden; z-index: 1; }
.main_vis .vis_list { height: clamp(700px, 50vw, 1200px); }
.main_vis .vis_list li { height: clamp(700px, 50vw, 1200px); width: 100%; text-indent: 9999px; background-size: cover; background-position: center top; background-repeat: no-repeat; }
.main_vis .vis_list li.vis01 { background-image: url("/images/mayor2026/main/banner-01.jpg"); }
.main_vis .vis_list li.vis02 { background-image: url("/images/mayor2026/main/banner-02.jpg"); }
.main_vis .vis_list li.vis03 { background-image: url("/images/mayor2026/main/banner-03.jpg"); }

/* bxslider 래퍼 초기화 */
.main_vis > .bx-wrapper { border: none; box-shadow: none; background: none; width: 100% !important; max-width: 100%; overflow: hidden; }
.main_vis > .bx-wrapper .bx-viewport { height: clamp(700px, 50vw, 1200px) !important; overflow: hidden !important; }

/* 비주얼 페이저 – inner(1400px 중앙) 왼쪽 끝에 맞춤 */
.vis_pager { position: absolute; bottom: 130px; left: calc(50% - 700px); display: flex; align-items: center; gap: 10px; z-index: 10; }
.vis_prev, .vis_next { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); text-indent: -9999px; position: relative; transition: all 0.2s; flex-shrink: 0; }
.vis_prev:hover, .vis_next:hover { background: rgba(255,255,255,0.2); }
.vis_prev::after { content: ''; display: block; position: absolute; top: 50%; left: 55%; width: 8px; height: 8px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: translate(-50%, -50%) rotate(45deg); }
.vis_next::after { content: ''; display: block; position: absolute; top: 50%; left: 45%; width: 8px; height: 8px; border-right: 2px solid #fff; border-top: 2px solid #fff; transform: translate(-50%, -50%) rotate(45deg); }
.vis_counter { font-size: 16px; color: rgba(255,255,255,0.9); letter-spacing: 1px; min-width: 36px; text-align: center; }
.vis_counter .vis_current { font-style: normal; font-weight: 700; }
.vis_counter .vis_total { color: rgba(255,255,255,0.6); }


/* ============================================================
   일정 바 – main_vis 내부 절대 위치 (hero 하단 100px 오버레이)
   ============================================================ */
.schedule_bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.40);
    border: none;
    z-index: 10;
    box-sizing: border-box;
}
.schedule_bar .inner { display: flex; align-items: center; height: 100px; gap: 0; }
.schedule_left { flex: 1; display: flex; align-items: center; gap: 20px; }
.week_info { display: flex; align-items: center; gap: 20px; }
.week_label { font-size: 15px; font-weight: 600; color: #fff; white-space: nowrap; }
.week_dates { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.week_dates li a {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    font-size: 16px; font-weight: 900; color: #fff;
    border: 1px solid transparent; border-radius: 50%;
    text-decoration: none; transition: all 0.15s;
}
.week_dates li a:hover { border-color: rgba(255,255,255,0.4); }
.week_dates li.active a {
    background: radial-gradient(circle, #000A11 0%, #085C79 100%);
    color: #6BE6FF;
    border-color: transparent;
}
.week_nav { display: flex; gap: 6px; margin-right: 32px; }
.week_prev, .week_next {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: #fff; border: none; border-radius: 50%;
    text-indent: -9999px; position: relative; transition: all 0.15s;
}
.week_prev:hover, .week_next:hover { background: #e8e8e8; }
.week_prev::after { content: ''; display: block; position: absolute; top: 50%; left: 55%; width: 7px; height: 7px; border-left: 2px solid #000; border-bottom: 2px solid #000; transform: translate(-50%, -50%) rotate(45deg); }
.week_next::after { content: ''; display: block; position: absolute; top: 50%; left: 45%; width: 7px; height: 7px; border-right: 2px solid #000; border-top: 2px solid #000; transform: translate(-50%, -50%) rotate(45deg); }

.schedule_right { flex: 1; padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.25); height: 50px; display: flex; align-items: center; gap: 12px; }
.schedule_slider { flex: 1; margin: 0; padding: 0; list-style: none; overflow: hidden; }
.schedule_slider li { font-size: 16px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left; }
.schedule_slider li a { color: #fff; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left; display: block; }
.schedule_slider li a:hover { color: rgba(255,255,255,0.75); }
.sch_time { margin-right: 6px; opacity: 0.7; }
.schedule_bar .bx-wrapper { border: none; box-shadow: none; background: none; width: 100% !important; max-width: 100% !important; }

/* 일정 상하 네비게이션 */
.schedule_nav { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.schedule_prev, .schedule_next { display: flex; align-items: center; justify-content: center; width: 22px; height: 18px; text-indent: -9999px; position: relative; transition: opacity 0.2s; }
.schedule_prev:hover, .schedule_next:hover { opacity: 0.7; }
.schedule_prev::after { content: ''; display: block; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-left: 2px solid #fff; border-top: 2px solid #fff; transform: translate(-50%, -30%) rotate(45deg); }
.schedule_next::after { content: ''; display: block; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: translate(-50%, -70%) rotate(45deg); }


/* ============================================================
   퀵 링크 바 – hero 하단 독립 섹션 (흰색 배경)
   ============================================================ */
.quick_bar {
    position: relative;
    width: 100%;
    height: 125px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    overflow: visible;
    z-index: 50;
}
.quick_bar .inner { display: flex; align-items: center; height: 125px; }

.mayor_wish { flex-shrink: 0; min-width: 320px; }
.mayor_wish a { display: flex; align-items: center; gap: 16px; text-decoration: none; width: 100%; justify-content: space-between; }
.mayor_wish .wish_txt { font-size: 26px; font-weight: 900; color: #111; }
.mayor_wish .wish_ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #111; border-radius: 50%; position: relative; flex-shrink: 0; transition: background 0.2s; }
.mayor_wish .wish_ico::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
}
.mayor_wish a:hover .wish_ico { background: #333; }

.quick_divider { width: 1px; align-self: stretch; background: #ddd; margin: 0 50px; flex-shrink: 0; }

.sns_wrap { display: flex; align-items: center; gap: 40px; flex-shrink: 0; }
.sns_label { font-size: 26px; font-weight: 900; color: #111; }
.sns_list { display: flex; list-style: none; margin: 0; padding: 0; gap: 10px; align-items: center; }
.sns_list li a { display: block; width: 46px; height: 46px; transition: transform 0.2s; }
.sns_list li a:hover { transform: translateY(-5px); }
.sns_list li a img { display: block; width: 100%; height: 100%; }

/* 시민소통폰 – 반원 (Figma: Ellipse 7, 333×334px, 그라데이션, 중심점이 quick_bar 바닥선) */
.citizen_phone { margin-left: auto; flex-shrink: 0; position: relative; align-self: stretch; display: flex; align-items: center; }
.citizen_phone a { display: flex; flex-direction: row; align-items: center; gap: 16px; text-decoration: none; padding: 0 70px; height: 100%; position: relative; }
.citizen_phone a::before {
    content: '';
    position: absolute;
    width: 333px;
    height: 166.5px;
    background: linear-gradient(to right, #0098E1, #0B5D92);
    border-radius: 166.5px 166.5px 0 0;
    left: calc(50% - 166.5px);
    bottom: 0;
    z-index: 0;
}
.citizen_phone a > * { position: relative; z-index: 1; }
/* 시민소통폰 아이콘: PNG 이미지 */
.phone_ico_wrap {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-image: url("/images/mayor2026/main/commu_phone.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.phone_ico_wrap::before,
.phone_ico_wrap::after { display: none; }
.phone_ico { display: none; }
.phone_text_wrap { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.phone_label_row { display: flex; align-items: center; gap: 8px; }
.phone_label { display: block; font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1; }
.phone_num { display: block; font-size: 28px; font-weight: 900; color: #fff; letter-spacing: 0.5px; line-height: 1.2; }


/* ============================================================
   서영학 NOW
   ============================================================ */
.mayor_now { padding-bottom: 80px; background: #fff; position: relative; }
.mayor_now .section_hd { border-bottom: none; padding-top: 30px; padding-bottom: 28px; }
.section_tit { font-size: 36px; font-weight: 800; color: #111; letter-spacing: -0.5px; }
.now_list { display: flex !important; list-style: none; margin: 0; padding: 0; gap: 30px; }
.now_list > li { flex: 1; border-bottom: 1px solid #000; padding-bottom: 24px; }
.now_list > li > a { display: block; text-decoration: none; color: inherit; }
.now_list > li > a:hover .now_thumb img { transform: scale(1.04); }
.now_thumb { display: block; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.now_thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.now_tit { display: block; font-size: 18px; font-weight: 700; color: #111; margin-bottom: 10px; line-height: 1.4; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.now_desc { display: -webkit-box; font-size: 14px; font-weight: 400; color: #555; line-height: 1.65; margin-bottom: 12px; overflow: hidden; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; }
.now_date { display: block; font-size: 13px; font-weight: 500; color: #757575; }

/* bxSlider 초기화 시 block 전환 (> 3 items 일 때만 적용) */
.now_list.bxslider { display: block !important; }
/* ≤ 3 items: JS가 bxslider 제거 후 static_list 추가 → 원래 flex 복원 */
.now_list.static_list { display: flex !important; gap: 30px; }
.now_list.static_list > li { flex: 0 0 calc(33.33% - 20px); }
.mayor_now .bx-wrapper { border: none; box-shadow: none; background: none; }


/* ============================================================
   민선9기 시정방침
   ============================================================ */
.policy_wrap { background: url("/images/mayor2026/main/hero_bg.png") center/cover no-repeat; padding: 70px 0 80px; position: relative; }

/* 타이틀 – 중앙 정렬 */
.policy_title_area { text-align: center; margin-bottom: 32px; }
.policy_sub_tit { font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 24px; }
.policy_main_tit { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -1px; }

/* 탭 – 비활성: 일반 폰트+밑줄, 활성: 흰 배경+볼드 */
.policy_tab_wrap { margin-bottom: 24px; }
.policy_tabs { display: flex; list-style: none; margin: 0; padding: 0; gap: 12px; width: 100%; }
.policy_tabs li { flex: 1; }
.policy_tabs li a {
    display: flex; align-items: center; justify-content: center;
    height: 55px; border-radius: 10px 10px 0 0;
    font-size: 18px; font-weight: 400; color: #fff;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    text-decoration: none; padding: 0;
    transition: all 0.2s; white-space: nowrap;
}
.policy_tabs li a:hover { background: rgba(255,255,255,0.15); }
.policy_tabs li.on a { background: #fff; color: #0d3665; font-weight: 700; border-bottom: none; border-radius: 10px; }

/* 슬라이드 카드 – Figma: 1503×457px, r=20, black fill, 텍스트 좌측/이미지 우측 */
.policy_content_wrap { position: relative; width: 1400px; margin: 0 auto; }
.policy_slider { margin: 0; padding: 0; list-style: none; }

/* 카드: 배경 이미지 위에 텍스트 오버레이 */
.policy_slide {
    display: flex !important;
    height: 520px;
    background: #060f1e;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
/* 이미지 위 텍스트 가독성 그라데이션 오버레이 */
.policy_slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,15,30,0.92) 0%, rgba(6,15,30,0.75) 40%, rgba(6,15,30,0.35) 70%, rgba(6,15,30,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}
/* 슬라이드별 배경 이미지 */
.policy_slide.slide01 { background-image: url("/images/mayor2026/main/photo_section_large1.png"); }
.policy_slide.slide02 { background-image: url("/images/mayor2026/main/photo_section_large2.png"); }
.policy_slide.slide03 { background-image: url("/images/mayor2026/main/photo_section_large3.png"); }
.policy_slide.slide04 { background-image: url("/images/mayor2026/main/photo_section_large4.png"); }
.policy_slide.slide05 { background-image: url("/images/mayor2026/main/photo_section_large5.png"); }

/* 좌측 텍스트 컬럼 – 카드 전체 너비로 확장 */
.policy_card_left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: none;
}
.policy_text { width: 100%; }
.policy_text h3 { font-size: 40px; font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 24px; }
.policy_text p { font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.75; }

/* 우측 이미지 컬럼 – 배경으로 이동했으므로 숨김 */
.policy_card_right { display: none; }

/* prev/next – 카드 바깥 좌우 (Figma: 카드 밖 ~60px) */
.policy_prev, .policy_next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.5);
    text-indent: -9999px; transition: all 0.2s;
}
.policy_prev { left: -70px; }
.policy_next { right: -70px; }
.policy_prev:hover, .policy_next:hover { background: rgba(255,255,255,0.3); }
.policy_prev::after { content: ''; display: block; position: absolute; top: 50%; left: 55%; width: 10px; height: 10px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: translate(-50%, -50%) rotate(45deg); }
.policy_next::after { content: ''; display: block; position: absolute; top: 50%; left: 45%; width: 10px; height: 10px; border-right: 2px solid #fff; border-top: 2px solid #fff; transform: translate(-50%, -50%) rotate(45deg); }

.policy_wrap .bx-wrapper { border: none; box-shadow: none; background: none; margin: 0 !important; }
.policy_wrap .bx-wrapper .bx-viewport { height: 520px !important; }


/* ============================================================
   포토
   ============================================================ */
.photo_section { padding-bottom: 80px; background: #fff; }
.photo_section .section_hd { padding-bottom: 28px; }
.photo_section .section_tit_wrap h2 { display: flex; align-items: baseline; gap: 18px; }

.photo_content { display: flex; gap: 80px; }
.photo_main_col { flex: 0 0 660px; }
.photo_main_link { display: block; overflow: hidden; height: 100%; }
.photo_main_link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s, transform 0.3s; }
.photo_main_link:hover img { transform: scale(1.03); }

.photo_list_col { flex: 1; padding-top: 0; display: flex; flex-direction: column; }
.photo_date_hd { display: none; }

/* 포토 목록 – 왼쪽 이미지 높이(660px)에 맞춰 flex로 채움 */
.photo_list { list-style: none; margin: 0; padding: 0; border-top: 3px solid #111; flex: 1; display: flex; flex-direction: column; }
.photo_list li { flex: 1; display: flex; align-items: center; border-bottom: 1px solid #cdcdcd; }
.photo_list li:only-child { align-items: flex-start; }
.photo_list li:last-child { border-bottom: 3px solid #111; }
/* 기본(비활성): 전체 회색 */
.photo_list li a { display: flex; align-items: center; gap: 24px; height: 100%; padding: 16px 0; width: 100%; box-sizing: border-box; text-decoration: none; color: #B7B7B7; transition: color 0.2s; }
/* 활성 + hover: 전체 검정 */
.photo_list li.active a,
.photo_list li a:hover { color: #000; }

/* 왼쪽 컬럼: 날짜 원+월년 (background 없음, font-color만 상속) */
.photo_li_left {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 6px;
    width: 58px; flex-shrink: 0;
}
.photo_li_num {
    display: flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    border: 1.5px solid currentColor; font-size: 24px; font-weight: 700;
    color: inherit; background: transparent; flex-shrink: 0;
}
.photo_li_date { font-size: 14px; font-weight: 400; color: inherit; white-space: nowrap; }

/* 오른쪽: 타이틀 */
.photo_li_tit { font-size: 20px; font-weight: 700; color: inherit; flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; transition: color 0.2s; }


/* ============================================================
   영상
   ============================================================ */
.video_section { padding-bottom: 80px; background: #fff; }
.video_section .section_hd { border-bottom: none; padding-bottom: 28px; }
.video_section .section_tit_wrap h2 { display: flex; align-items: baseline; gap: 18px; }

.video_list { display: flex; list-style: none; margin: 0; padding: 0; gap: 20px; }
.video_list > li { flex: 0 0 calc(25% - 15px); transition: transform 0.3s; }
.video_list > li:hover { transform: translateY(-10px); }
.video_list.bxslider { display: block !important; }
.video_list.static_list { display: flex !important; gap: 20px; }
.video_list.static_list > li { flex: 0 0 calc(25% - 15px); }
.video_item { display: block; position: relative; text-decoration: none; }
.video_thumb { display: block; overflow: hidden; aspect-ratio: 326/224; border-radius: 20px; }
.video_thumb img { width: 100%; height: 100%; object-fit: cover; }
.video_play { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; background: rgba(255,255,255,0.2); border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); transition: all 0.2s; }
.video_play::after { content: ''; display: block; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent rgba(255,255,255,0.9); }
.video_list > li:hover .video_play { background: rgba(255,255,255,0.35); border-color: #fff; }

.video_section .bx-wrapper { border: none; box-shadow: none; background: none; }
.video_section .bx-wrapper .bx-viewport { overflow: visible !important; }


/* ============================================================
   푸터
   ============================================================ */
#footer { margin-top: 0; }

/* www 공통 레이아웃의 반응형 마진·가상요소 무효화 */
@media screen and (max-width:1699px){
    #footer { margin-top: 0 !important; padding-bottom: 0 !important; }
    #footer::before { display: none !important; }
}


/* ============================================================
   메인 페이지 헤더 – 히어로 위 투명 오버레이
   (main.css는 default_main.html 전용 → 서브페이지 영향 없음)
   ============================================================ */
#header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: transparent !important;
    border-bottom: none !important;
    z-index: 200 !important;
}

/* GNB 텍스트 흰색 + 밝은 배경 대비용 그림자 */
.gnb_box .gnb .gnbA > a {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35) !important;
}
.gnb_box .gnb .gnbA > a:hover,
.gnb_box .gnb .gnbA.on > a { color: rgba(255,255,255,0.85) !important; }

/* 검색 아이콘 흰색 */
.header_right li.btn_search > a::before,
.header_right li.btn_search > span > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
/* 전체메뉴 아이콘 흰색 */
.header_right li.sitemap > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16'%3E%3Crect width='22' height='2' fill='%23ffffff'/%3E%3Crect y='7' width='22' height='2' fill='%23ffffff'/%3E%3Crect y='14' width='22' height='2' fill='%23ffffff'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* ============================================================
   스크롤 나타나기 효과
   ============================================================ */
.reveal-item {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }


/* ============================================================
   태블릿 반응형 – 1차 (≤1499px): inner 여백, 페이저·정책 위치 보정
   ============================================================ */
@media screen and (max-width: 1499px) {
    .inner { padding: 0 40px; }

    /* 비주얼 페이저: calc(50%-700px) → 고정 left */
    .vis_pager { left: 40px; }

    /* 정책 슬라이더: 1400px 고정폭 → fluid */
    .policy_content_wrap { width: auto; margin: 0 80px; }

    /* 검색 레이어 우측 기준 */
    .search_layer { right: 40px; }
}


/* ============================================================
   태블릿 반응형 – 2차 (≤1199px): 전반적 사이즈 축소
   ============================================================ */
@media screen and (max-width: 1199px) {
    /* 공통 */
    .inner { padding: 0 32px; }
    .section_hd { padding: 44px 0 28px; }
    .section_hd .section_tit,
    .section_tit { font-size: 30px; }
    .section_hd .tit_ko { font-size: 30px; }
    .section_hd .tit_sub { font-size: 17px; }
    .btn_more_circle,
    .now_prev, .now_next,
    .video_prev, .video_next { width: 44px; height: 44px; }

    /* 비주얼 페이저 */
    .vis_pager { left: 32px; }

    /* 퀵바 */
    .quick_bar { height: 100px; }
    .quick_bar .inner { height: 100px; }
    .mayor_wish { min-width: 200px; }
    .mayor_wish .wish_txt { font-size: 21px; }
    .sns_label { font-size: 21px; }
    .sns_list li a { width: 40px; height: 40px; }
    .quick_divider { margin: 0 30px; }
    /* 시민소통폰 반원 축소 */
    .citizen_phone a::before { width: 240px; height: 120px; border-radius: 120px 120px 0 0; left: calc(50% - 120px); }
    .citizen_phone a { padding: 0 44px; }
    .phone_num { font-size: 22px; }
    .phone_label { font-size: 15px; }

    /* NOW */
    .now_tit { font-size: 16px; }
    .now_list,
    .now_list.static_list { gap: 20px; }
    .now_list.static_list > li { flex: 0 0 calc(33.33% - 14px); }

    /* 정책 */
    .policy_content_wrap { margin: 0 60px; }
    .policy_prev { left: -50px; }
    .policy_next { right: -50px; }
    .policy_slide { height: 460px; }
    .policy_wrap .bx-wrapper .bx-viewport { height: 460px !important; }
    .policy_card_left { padding: 48px 56px; }
    .policy_text h3 { font-size: 34px; margin-bottom: 18px; }
    .policy_text p { font-size: 18px; }
    .policy_main_tit { font-size: 36px; }
    .policy_sub_tit { font-size: 20px; }
    .policy_tabs li a { font-size: 16px; height: 48px; }

    /* 포토 */
    .photo_content { gap: 50px; }
    .photo_main_col { flex: 0 0 480px; }
    .photo_main_link img { height: 100%; }
    .photo_li_num { width: 50px; height: 50px; font-size: 20px; }
    .photo_li_tit { font-size: 18px; }

    /* 영상 (4열 유지, gap 축소) */
    .video_list,
    .video_list.static_list { gap: 14px; }
    .video_list > li,
    .video_list.static_list > li { flex: 0 0 calc(25% - 10.5px); }

}


/* ============================================================
   태블릿 반응형 – 3차 (≤999px): 구조 변경
   ============================================================ */
@media screen and (max-width: 999px) {
    /* 공통 */
    .inner { padding: 0 24px; }
    .section_hd { padding: 36px 0 20px; }
    .section_hd .section_tit,
    .section_tit { font-size: 26px; }
    .section_hd .tit_ko { font-size: 26px; }
    .section_hd .tit_sub { font-size: 15px; }

    /* 비주얼 페이저 */
    .vis_pager { left: 24px; }

    /* 일정바 – 높이 축소 */
    .schedule_bar { height: 80px; }
    .schedule_bar .inner { height: 80px; }
    .week_dates li a { width: 36px; height: 36px; font-size: 13px; }
    .week_label { font-size: 12px; }
    .week_nav { margin-right: 16px; }
    .schedule_slider li a { font-size: 14px; }

    /* 퀵바 – 세로 스택 */
    .quick_bar { height: auto; }
    .quick_bar .inner { flex-direction: column; align-items: stretch; height: auto; gap: 0; }
    .mayor_wish { width: 100%; min-width: unset; padding: 18px 0; border-bottom: 1px solid #eee; }
    .mayor_wish .wish_txt { font-size: 20px; }
    .quick_divider { display: none; }
    .sns_wrap { width: 100%; padding: 18px 0; border-bottom: 1px solid #eee; gap: 20px; }
    .sns_label { font-size: 20px; }
    /* 시민소통폰 – 반원 제거, 풀너비 카드 */
    .citizen_phone { width: 100%; margin-left: 0; align-self: auto; }
    .citizen_phone a {
        padding: 16px 24px; height: auto; gap: 14px;
        background: linear-gradient(to right, #0098E1, #0B5D92);
    }
    .citizen_phone a::before { display: none; }
    .citizen_phone a > * { position: static; }
    .phone_text_wrap { flex-direction: row; gap: 20px; align-items: center; }
    .phone_num { font-size: 22px; }
    .phone_label { font-size: 14px; color: rgba(255,255,255,0.9); }

    /* NOW */
    .now_list,
    .now_list.static_list { gap: 16px; }
    .now_list.static_list > li { flex: 0 0 calc(33.33% - 11px); }
    .now_tit { font-size: 15px; }
    .now_desc { font-size: 13px; }

    /* 정책 */
    .policy_wrap { padding: 50px 0 60px; }
    .policy_content_wrap { margin: 0 44px; }
    .policy_prev { left: -36px; }
    .policy_next { right: -36px; }
    .policy_slide { height: 380px; }
    .policy_wrap .bx-wrapper .bx-viewport { height: 380px !important; }
    .policy_card_left { padding: 38px 44px; }
    .policy_text h3 { font-size: 26px; margin-bottom: 14px; }
    .policy_text p { font-size: 16px; }
    .policy_main_tit { font-size: 28px; }
    .policy_sub_tit { font-size: 17px; margin-bottom: 18px; }
    .policy_tabs { gap: 8px; }
    .policy_tabs li a { font-size: 14px; height: 44px; }

    /* 포토 – 세로 스택 */
    .photo_content { flex-direction: column; gap: 0; }
    .photo_main_col { flex: none; width: 100%; }
    .photo_main_link img { height: 56vw; max-height: 420px; }
    .photo_list_col { padding-top: 0; }
    /* 세로 스택 시 flex:1 대신 min-height */
    .photo_list { flex: none; }
    .photo_list li { flex: none; min-height: 68px; }
    .photo_li_num { width: 44px; height: 44px; font-size: 17px; }
    .photo_li_tit { font-size: 16px; }

    /* 영상 – 3열 */
    .video_list,
    .video_list.static_list { gap: 14px; }
    .video_list > li,
    .video_list.static_list > li { flex: 0 0 calc(33.33% - 9.4px); }

}
