﻿/* //2026-08-13 main_2026.css 정리: 일열 포맷 / 중복·미사용 제거 / 전 섹션 반응형 */
/* //2026-08-18 padding % → px 원복 */

/* ========================================
   RESET / BASE
======================================== */
* {
  box-sizing: border-box;
}

/* //2026-08-13 Pretendard GOV 전체 폰트 적용 */

body,
input,
button,
select,
textarea {
  font-family: "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

/* //2026-08-27 수정 내용: 메인에서 헤더 #h_switch(서브검색)와 GNB 겹침 방지 */
body.main_renewal_2026 #h_switch {
  display: none !important;
}

a {
  text-decoration: none;
}

fieldset {
  border: none;
  min-width: 0;
  padding: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 3px;
  color: transparent;
  line-height: 0;
  overflow: hidden;
}

.inner {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* //2026-09-01 수정 내용: Swiper lock 시 네비 버튼 숨김 해제 (CDN CSS가 뒤에 로드되므로 !important) */
.swiper-button-lock {
  display: flex !important;
}

/* ========================================
   1. VISUAL SECTION
======================================== */
.visual_section {
  width: 100%;
  padding: 30px 0;
  position: relative;
}



/* 로고 + 검색 + 유틸 */
.top_header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.top_header .logo {
  flex: 0 0 auto;
}

.top_header .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.search-box {
  width: 473px;
  max-width: 100%;
}

.search-box .inputbox {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 70px;
  padding-left: 36px;
  padding-right: 96px;
  background-color: #fff;
  border: 2px solid #585AA5;
  border-radius: 100px;
  font-size: 20px;
  color: #222;
  line-height: 66px;
  letter-spacing: -0.04em;
  font-weight: 500;
  font-family: "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, "Noto Sans KR", "Malgun Gothic", sans-serif;
  word-break: keep-all;
}

.search-box .submitbox {
  position: absolute;
  right: -24px;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
}

.search-box .submitbox input {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: url(/_gmi/niam/main_scarch.png) center center / cover no-repeat;
  border: none;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.util {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-left: auto;
}

.util_item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.util_item .icon {
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
   transition: opacity 0.3s ease;
}

.util_item:nth-child(1) .icon {
  background-image: url("/_gmi/niam/ico_staff.png");
}
.util_item:nth-child(1):hover .icon {
  background-image: url(/_gmi/niam/ico_staff_on.png);
}

.util_item:nth-child(2) .icon {
  background-image: url("/_gmi/niam/ico_location.png");
}
.util_item:nth-child(2):hover .icon {
  background-image: url("/_gmi/niam/ico_location_on.png");
}
.util_item:nth-child(3) .icon {
  background-image: url("/_gmi/niam/ico_sitemap.png");
}
.util_item:nth-child(3):hover .icon {
  background-image: url("/_gmi/niam/ico_sitemap_on.png");
}
.util_item span {
  font-size: 17px;
  font-weight: 500;
  color: #495977;
}

/* 메인 배너 + 구청 이미지 */
.flex_box {
  display: flex;
  gap: 50px;
}

/* //2026-08-26 수정 내용: PC 왼쪽 배너 874x400 */
.left-area {
  width: 874px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
}



.left-area .mySwiper {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.left-area .mySwiper .swiper-slide {
  display: block;
  text-align: left;
  font-size: inherit;
}

/* //2026-08-27 수정 내용: 팝업존 링크 슬라이드 이미지 풀블리드 */
.left-area .mySwiper .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}

.left-area .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.btn_wrap {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px;
  border-radius: 20px;
}

/* //2026-08-31 수정 내용: 메인 비주얼 컨트롤 + View All을 오른쪽 하단에 나란히 */
.visual_ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 10px;
}

/* //2026-08-31 수정 내용: 배너 모아보기 버튼 32px (원본 깨짐 방지) */
.visual_ctrl .btn_view_all {
  width: 32px;
  height: 32px;
}

.btn_wrap .swiper-button-next,
.btn_wrap .swiper-button-prev {
  position: static !important;
  width: 11px;
  height: 20px;
  min-width: 11px;
  margin-top: 0;
}

.btn_wrap .swiper-button-prev {
  background: url(/_gmi/niam/prev.png) no-repeat;
}

.btn_wrap .swiper-button-next {
  background: url(/_gmi/niam/next.png) no-repeat;
}

.btn_wrap .swiper-pagination {
  position: static;
  min-width: 50px;
  margin-right: 18px;
  color: #fff;
  font-size: 16px;
}

.btn_wrap .swiper-pagination-current {
  font-weight: 700;
}

.btn_wrap .btn_play {
  min-width: 20px;
  height: 20px;
  margin: 0 12px;
  padding: 0;
  border: 0;
  background: url(/_gmi/niam/stop.png) no-repeat center;
  cursor: pointer;
  position: relative;
}

.btn_wrap .btn_play.is-paused {
  background: url(/_gmi/niam/play_btn.png) no-repeat center;
}

/* //2026-08-26 수정 내용: PC 구청장인사말 세로 400 */
.side_area {
  width: calc(40% - 18px);
  height: 400px;
  position: relative;
  min-width: 0;
  display: flex;
  overflow: hidden;
  border-radius: 20px;

}

.side_area .office_photo {
  position: relative;
  width: 100%;
}

.side_area .office_photo > img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.side_area .sns {
  position: absolute;
  right: 16px;
  bottom: 90px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.side_area .sns a {
  display: inline-block;
  line-height: 0;
}

.side_area .sns img {
  display: block;
  max-width: 100%;
  height: auto;
}

.side_btn {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
}

.side_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 52px;
  padding: 23px 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-align: center;
  text-decoration: none;
}

.side_btn a:first-child {
  background: #336699;
}

.side_btn a:last-child {
  background: #1764D0;
}

/* ========================================
   2. INFO SECTION (자주찾는 메뉴)
======================================== */
.info_section {
  position: relative;
  overflow: hidden;
  padding: 40px 0 55px;
  background: #f4f9f9;
  margin-bottom: 50px;
}

.info_section .inner {
  position: relative;
  z-index: 1;
}

.info_section .menu_swiper_box {
  position: relative;
}

.info_section .mySwiper2 {
  padding: 0 !important;
  margin: 0 50px;
  width: auto;
  height: auto;
  overflow: hidden;
}

.info_section h2.tit {
  margin: 0 0 40px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1em;
}

.info_section .mySwiper2 .swiper-slide {
  position: relative;
  box-sizing: border-box;
  display: block;
  height: auto;
  text-align: center;
  font-size: inherit;
}

.info_section .mySwiper2 .swiper-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.info_section .mySwiper2 .swiper-slide a span {
  font-size: 16px;
  line-height: 1.4em;
  color: #444;
  font-weight: 500;
}

.info_section .mySwiper2 .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.info_section .mySwiper2 .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.info_section .mySwiper2 .img {
  display: block;
  width: 100%;
  position: relative;
  min-height: 55px;
}

/* //2026-08-26 수정 내용: 점선은 완전히 보이는 메뉴 사이에만, 화살표 옆 끝선 제거 */
.info_section .mySwiper2 .img::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 50px;
  border-right: 1px dashed #ddd;
  display: none;
}

.info_section .mySwiper2 .swiper-slide-fully-visible:has(+ .swiper-slide-fully-visible) .img::after {
  display: block;
}

.info_section .mySwiper2 .text {
  display: block;
}

.info_section .swiper-button-prev,
.info_section .swiper-button-next {
  width: 21px;
  min-width: 21px;
  height: 33px;
  margin-top: -16px;
}

.info_section .swiper-button-prev {
  left: 0;
  background: url(/_gmi/niam/infro_prev.png) no-repeat;
}

.info_section .swiper-button-next {
  right: 0;
  background: url(/_gmi/niam/infro_next.png) no-repeat;
}

/* ========================================
   3. QUICK / POLICY SECTION
======================================== */
.quick {
  padding: 50px 0;
}

.service_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 44px;
}

/* //2026-08-21 수정 내용: 오른쪽 칼럼 안에서 새빛정책 스와이퍼가 부모 너비를 넘지 않도록 고정 */
.news_section .right_column .service_wrap {
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.news_section .right_column .service_wrap .info_wrap {
  width: 100%;
}

.service_wrap .info_wrap {
  width: 874px;
  max-width: 100%;
  display: flex;
  gap: 30px;
  flex: 1 1 auto;
  min-width: 0;
}

.service_wrap .info_wrap .info_box {
  width: 50%;
  height: 150px;
  padding: 20px 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_wrap .info_wrap .info_box:first-child {
  background: #178276 url(/_gmi/niam/info_bg01.png) no-repeat calc(100% + 5px) center;
}

.service_wrap .info_wrap .info_box:last-child {
  background: #212853 url(/_gmi/niam/info_bg02.png) no-repeat calc(100% + 5px) center;
}

.service_wrap .info_wrap .info_box .tit {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.service_wrap .info_wrap .info_box .btn {
  width: 108px;
  height: 32px;
}

.service_wrap .info_wrap .info_box .btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  background: #fff;
  border-radius: 20px;
  font-size: 15px;
  color: #444;
  line-height: 1;
}

.service_wrap .info_wrap .info_box .btn a img {
  display: block;
  transition: transform 0.3s ease;
}

.service_wrap .info_wrap .info_box .btn a:hover img {
  transform: translateX(5px);
}

/* //2026-08-13 mySwiper3 카드/슬라이드 깨짐 보정 */

.service_wrap .policy {
  width: 100%;
  min-width: 280px;
  min-height: 150px;
  height: auto;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex: 0 1 auto;
}

.service_wrap .policy .tit_wrap {
  min-width: 124px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.service_wrap .policy .tit_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service_wrap .policy h2.tit {
  margin: 0;
  font-size: 30px;
  color: #222;
}

/* //2026-08-31 수정 내용: 새빛정책·메인 비주얼 공통 View All 버튼 */
.btn_view_all {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  background: url("/_gmi/niam/View All.png") no-repeat center / contain;
  cursor: pointer;
  flex-shrink: 0;
}

.service_wrap .policy .control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service_wrap .policy .swiper-button-next,
.service_wrap .policy .swiper-button-prev {
  position: static;
  width: 36px;
  min-width: 36px;
  height: 36px;
  margin-top: 0;
}

.policy .swiper-button-next {
  background: url(/_gmi/niam/policy_next.png) no-repeat center / contain;
}

.policy .swiper-button-prev {
  background: url(/_gmi/niam/policy_prev.png) no-repeat center / contain;
}

.policy .control button,
.policy .control .btn_stop {
  width: 36px;
  min-width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: url(/_gmi/niam/policy_stop.png) no-repeat center / contain;
  cursor: pointer;
  position: relative;
}

/* //2026-08-18 새빛정책 일시정지 → 재생 아이콘 */
.policy .control .btn_stop.is-paused {
  background: url(/_gmi/niam/policy_play.png) no-repeat center / contain;
}



.policy .mySwiper3 {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: auto;
  background: #E8EDF8;
  border-radius: 10px;
  padding: 40px 17px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.policy .mySwiper3 .swiper-wrapper {
  align-items: stretch;
}

.policy .mySwiper3 .swiper-slide {
  position: relative;
  display: block;
  height: auto;
  box-sizing: border-box;
  background: transparent;
  text-align: center;
  font-size: inherit;
}

.policy .mySwiper3 .swiper-slide a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 88px;
  padding: 30px 10px 10px;
  background: #fff;
  border-radius: 15px;
  font-size: 19px;
  color: #222;
  font-weight: 500;
  letter-spacing: -1px;
  text-align: center;
  box-sizing: border-box;
}

.policy .mySwiper3 .swiper-slide span {
  display: block;
  width: 100%;
  padding-top: 0;
  line-height: 1.3;
  word-break: keep-all;
}

/* //2026-08-26 수정 내용: 새빛정책 아이콘은 원본 비율 유지, 위치만 정수 px */
.policy .mySwiper3 .swiper-slide img {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: 0 auto;
  transform: none;
  object-fit: contain;
  pointer-events: none;
}

/* //2026-08-31 수정 내용: 새빛정책 전체보기 레이어 */
.policy_all {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

.policy_all[hidden] {
  display: none;
}

.policy_all_dim {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
}

.policy_all_panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: auto;
  padding: 28px 28px 32px;
  background: #e8edf8;
  border-radius: 16px;
  box-sizing: border-box;
}

.policy_all_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.policy_all_top h3 {
  margin: 0;
  font-size: 24px;
  color: #222;
}

.policy_all_close {
  width: 36px;
  height: 36px;
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.policy_all_close::before,
.policy_all_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #333;
}

.policy_all_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.policy_all_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.policy_all_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 16px;
}

.policy_all_grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 88px;
  padding: 30px 8px 10px;
  background: #fff;
  border-radius: 15px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  letter-spacing: -1px;
  text-align: center;
  box-sizing: border-box;
}

.policy_all_grid img {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  pointer-events: none;
}

.policy_all_grid span {
  display: block;
  width: 100%;
  line-height: 1.3;
  word-break: keep-all;
}

/* //2026-08-31 수정 내용: 메인팝업 전체목록 2열, 이미지 칸 채움, 타이틀 강조 */
.visual_all .policy_all_panel {
  max-width: 1180px;
  max-height: 90vh;
  overflow: auto;
}

.visual_all .policy_all_top {
  position: sticky;
  top: -28px;
  z-index: 1;
  align-items: center;
  justify-content: center;
  margin: -8px 0 20px;
  padding: 8px 0 16px;
  background: #e8edf8;
  border-bottom: 0;
}

.visual_all .policy_all_top h3 {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #111;
  line-height: 1.3;
  text-align: center;
}

.visual_all .policy_all_close {
  position: absolute;
  top: 8px;
  right: 0;
}

.visual_all .policy_all_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.visual_all .policy_all_grid a,
.visual_all .policy_all_grid > span {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 0;
  min-height: 0;
  padding: 0;
  padding-top: 45.77%;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.visual_all .policy_all_grid img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  border-radius: 0;
}

@media (max-width: 1200px) {
  .policy_all_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .policy_all_panel {
    padding: 20px 16px 24px;
  }

  .policy_all_top h3 {
    font-size: 20px;
  }

  .policy_all_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .policy_all_grid a {
    font-size: 14px;
    min-height: 80px;
  }

  /* //2026-08-31 수정 내용: 모바일 메인팝업 전체목록 1열, 이미지 칸 꽉 채움 */
  .visual_all .policy_all_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #visualAllLayer .policy_all_grid a,
  #visualAllLayer .policy_all_grid > span {
    display: block;
    width: 100%;
    height: 0;
    min-height: 0;
    padding: 0;
    padding-top: 45.77%;
    overflow: hidden;
  }

  #visualAllLayer .policy_all_grid img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .visual_all .policy_all_top h3 {
    font-size: 20px;
  }
}
/* ========================================
   4. NEWS SECTION
======================================== */
.news_section {
  padding: 40px 0;
  background: #F6F9FB;
}

/* //2026-08-28 수정 내용: 영통구소식·새빛정책 동일폭(1fr), 행정복지센터 고정 */
.news_section .news_wrap {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 35px;
  align-items: start;
  width: 100%;
}

/* left_column 래퍼 해제 → 3칸(소식|행정복지|새빛)이 한 줄로 배치 */
.news_section .left_column {
  display: contents;
}

.news_section .left_section {
  width: auto;
  min-width: 0;
}

.news_section .tit_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.news_section .tit_area .tit {
  margin: 0;
  font-size: 30px;
  color: #222;
}

.news_section .tit_area .more_btn {
  width: 40px;
  height: 40px;
  display: block;
  border: 0;
  background: url("/_gmi/niam/more.png") no-repeat !important;
  cursor: pointer;
  /* //2026-08-27 수정 내용: a.more_btn 연동용 */
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
}

.news_section .news_box {
  width: 100%;
  height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
}

.news_section .news_box .list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news_section .news_box .item {
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_section .news_box .item:last-child {
  margin-bottom: 0;
}

.news_section .news_box .item > a {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding-left: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
}

.news_section .news_box .item > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #616161;
  transform: translateY(-50%);
}

.news_section .news_box .item > a:hover {
  color: #1758b4;
}

.news_section .news_box .date {
  flex: 0 0 auto;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

/* 행정복지센터 소식 (가운데 고정폭) */
.news_section .center_section {
  width: auto;
  min-width: 0;
}

.news_section .center_wrap .box {
  width: 100%;
  padding: 20px;
  background: #E0F4E5;
  border-radius: 24px;
}

.news_section .center_wrap ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news_section .center_wrap li {
  min-width: 0;
}

.news_section .center_wrap li a {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #86B2A5;
  border-radius: 10px;
  background: #fff;
  color: #53796C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news_section .center_wrap li a:hover {
  border-color: #53796C;
  background: #53796C;
  color: #fff;
}

/* //2026-08-24 수정 내용: 행정복지센터 옆 칼럼(기부/교육/새빛정책) */
/* //2026-08-28 수정 내용: 영통구소식과 동일 비율(1fr) — 고정 620px 제거 */
.news_section .right_column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: auto;
  min-width: 0;
  height: auto;
}

.right_column .tabs {
  width: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: #1D2F9A;
  border-radius: 20px;
  flex-shrink: 0;
}

.right_column .tab {
  position: relative;
  z-index: 1;
  margin-left: 10px;
  padding: 20px;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.right_column .tab.active {
  z-index: 2;
  margin-right: -27px;
  padding-right: 40px;
  background-color: #0D6FF0;
  border-radius: 10px 0 10px 10px;
  font-weight: bold;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
}

.right_column .content {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 28px 20px;
}

.right_column .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.right_column .item a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 57px;
  padding: 0 13px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  letter-spacing: -1px;
  transition: 0.2s;
}

.right_column .item a:hover {
  background-color: #f9f9f9;
  border-color: #2196f3;
}

.right_column .icon {
  min-width: 32px;
  height: auto;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.right_column .item:nth-child(1) .icon {
  height: 31px;
  background-image: url("/_gmi/niam/estate01.png");
}

.right_column .item:nth-child(2) .icon {
  height: 28px;
  background-image: url("/_gmi/niam/estate02.png");
}

.right_column .item:nth-child(3) .icon {
  height: 32px;
  background-image: url("/_gmi/niam/estate03.png");
}

.right_column .item:nth-child(4) .icon {
  height: 34px;
  background-image: url("/_gmi/niam/estate04.png");
}

.right_column .item:nth-child(5) .icon {
  height: 31px;
  background-image: url("/_gmi/niam/estate05.png");
}

.right_column .item:nth-child(6) .icon {
  height: 28px;
  background-image: url("/_gmi/niam/estate06.png");
}

.right_column .item:nth-child(7) .icon {
  height: 22px;
  background-image: url("/_gmi/niam/estate07.png");
}

.right_column .item:nth-child(8) .icon {
  height: 31px;
  background-image: url("/_gmi/niam/estate08.png");
}

/* ========================================
   5. GALLERY SECTION
======================================== */
.gallery {
  width: 100%;
  padding: 60px 0;
  background: #fff;
}

.gallery .inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gallery_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery_menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery_menu button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  cursor: pointer;
  line-height: 1;
}


.gallery_menu button.active {
  border-color: #434586;
  background: #434586;
  color: #fff;
}

.gallery_menu button.active .ico {
  background: url(/_gmi/niam/active_ico.png) left center no-repeat;
  width: 24px;
  height: 24px;
  display: inline;
}

.gallery_ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* //2026-08-18 갤러리 컨트롤 버튼 이미지 적용 */
.gallery_ctrl .ctrl {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  line-height: 0;
  overflow: visible;
}

.gallery_ctrl .ctrl.prev {
  background-image: url("/_gmi/niam/gallery_prev.png");
}

.gallery_ctrl .ctrl.pause {
  background-image: url("/_gmi/niam/gallery_pause.png");
}

.gallery_ctrl .ctrl.next {
  background-image: url("/_gmi/niam/gallery_next.png");
}

.gallery_ctrl .ctrl.more {
  background-image: url("/_gmi/niam/more.png");
}

/* //2026-08-24 수정 내용: 갤러리 일시정지 → play.png */
.gallery_ctrl .ctrl.pause.is-paused {
  background-image: url("/_gmi/niam/play.png");
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.gallery_ctrl .ctrl.pause.is-paused::before {
  display: none;
}

.gallery_list {
  display: none;
  width: 100%;
  min-width: 0;
}

.gallery_list.active {
  display: block;
}

.gallery_list .mySwiper4 {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.gallery_list .mySwiper4 .swiper-wrapper {
  align-items: stretch;
}

.gallery_list .mySwiper4 .swiper-slide {
  display: block;
  height: auto;
  text-align: left;
  font-size: inherit;
}

.gallery_item {
  min-width: 0;
  height: auto;
}

.gallery_item a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery_img {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
  border-radius: 25px;
  background: #f2f2f2;
  overflow: hidden;
}

.gallery_img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 2px 0;
}

.gallery_txt .tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: #222;
  margin-bottom: 20px;
}

.gallery_txt .meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
  line-height: 1;
}

.gallery_txt .meta em {
  font-style: normal;
}

.gallery_txt .meta .bar {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #d0d0d0;
}

/* ========================================
   6. FOOTER
======================================== */
.footer {

  clear: both;
  padding-top:20px;
}
.footer .footer_top{
  position: relative;
  z-index: 30;
  margin-bottom: 30px;
  overflow: visible;
}

.footer_quick {
  display: flex;
  position: relative;
  z-index: 30;
  overflow: visible;
}

.footer_quick_item {
  position: relative;
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.footer_quick_item.active {
  z-index: 40;
}
.footer_inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer_quick_btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ccc;
  color: #444;
  border-left: 0;
}
.footer_quick_item:first-child {
  border-left: 1px solid #ccc;
}
.footer_quick_btn i {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url('/_gmi/niam/ico_more.png') center / contain no-repeat;
}
.footer_quick_list a {
  background: url('/_gmi/niam/ico_more.png') right center / 16px 16px no-repeat;
  padding-right: 24px;
}

.footer_quick_list {
  position: absolute;
  left: 0;
  bottom: 47px;
  z-index: 50;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease,
    visibility 0.3s ease,
    padding 0.3s ease;
}

.footer_quick_item.active .footer_quick_list {
  max-height: 420px;
  padding: 15px 18px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer_quick_list a {
  display: block;
  padding: 9px 0;
  color: #444;
  font-size: 16px;
  text-decoration: none;
}

.footer_quick_item.active .footer_quick_btn i {
  transform: none;
  background-image: url("/_gmi/niam/ico_close.png");
  width: 14px;
}

.footer_bottom {
  border-bottom: 1px solid #D9D9D9;
    border-top:1px solid #d9d9d9;

}

.footer_info {
  flex: 1;
  min-width: 0;
}

.footer_info_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  min-height: 30px;
  padding: 20px 0;
}

.footer_links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer_links a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
}

/* //2026-08-28 구분선(|) 세로 중앙 정렬 */
.footer_links a + a {
  position: relative;
  margin-left: 41px;
}

.footer_links a + a::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #666;
  transform: translateY(-50%);
}

.footer_links a.privacy {
  font-weight: bold;
}

.footer_file {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.footer_file a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_file img {
  display: block;
  object-fit: contain;
}
.footer_file a span{
  font-size: 14px;
  color: #444;
}
.foot_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 30px 0;
}
.foot_area .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.foot_info p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.foot_info p span{
  color: #0657B5;
  font-weight: bold;
}
.foot_info a {
  text-decoration: none;
}

.foot_info .tel span {
  font-weight: bold;
}

.foot_info .copyright {
  margin-top: 8px;
  color: #666;
}

/* ========================================
   RESPONSIVE
======================================== */
/* 1400px 이하 */
@media (max-width: 1400px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }

  .flex_box,
  .news_section .news_wrap,
  .service_wrap {
    gap: 30px;
  }

  .news_section .left_column {
    width: calc(100% - 480px);
    gap: 20px;
  }

  .news_section .right_column {
    width: 450px;
    height: auto;
    min-height: 320px;
  }

  .right_column .tabs {
    width: 130px;
  }

  .right_column .tab {
    padding: 16px 12px;
    font-size: 15px;
  }

  .right_column .tab.active {
    margin-right: -20px;
    padding-right: 28px;
  }

  /* //2026-08-21 수정 내용: 1400~1201px에서 width:auto로 슬라이드가 커지던 문제 수정 */
  .service_wrap .info_wrap {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .service_wrap .policy {
    width: 100%;
    max-width: 100%;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    min-width: 0;
  }

  .service_wrap .policy .tit_wrap {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .policy .mySwiper3 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .gallery_txt .tit {
    font-size: 16px;
  }
}

/* 1200px 이하 */
@media (max-width: 1200px) {
  .visual_section {
    padding: 30px 0;
  }


  .visual_section::after,
  .left-area::after {
    display: none;
  }

  .top_header {
    gap: 20px;
  }

  .search-box {
    width: 100%;
    order: 3;
    flex: 1 1 100%;
  }

  .search-box input {
    height: 60px;
    padding-left: 24px;
    padding-right: 80px;
    font-size: 17px;
    line-height: 56px;
  }

  .search-box .submitbox {
    width: 48px;
    height: 48px;
  }

  .flex_box {
    flex-direction: column;
  }

  .left-area,
  .side_area {
    width: 100%;
    height: auto;
  }

  /* //2026-08-31 수정 내용: 모바일 메인 배너 비율 유지, 이미지 칸 꽉 채움 */
  .left-area .mySwiper {
    height: auto;
    aspect-ratio: 874 / 400;
  }

  .left-area .mySwiper .swiper-slide,
  .left-area .mySwiper .swiper-slide > a {
    height: 100%;
  }

  .left-area .mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .side_area .office_photo > img {
    height: auto;
  }


  .info_section {
    padding: 40px 0;
  }

  .info_section h2.tit {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .info_section .mySwiper2 {
    margin: 0 30px;
  }

  .news_section .news_wrap {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  /* //2026-08-28 수정 내용: 반응형에서는 left_column 래퍼 복원 */
  .news_section .left_column {
    display: flex;
    width: 100%;
    gap: 35px;
    min-width: 0;
  }

  .news_section .left_section {
    width: calc(56% - 17px);
  }

  .news_section .center_section {
    width: calc(44% - 17px);
  }

  .news_section .right_column {
    width: 100%;
    height: auto;
  }

  .service_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .service_wrap .info_wrap,
  .service_wrap .policy {
    width: 100%;
    flex: none;
  }

  .service_wrap .policy {
    height: auto;
    min-height: 0;
    min-width: 0;
  }

  .policy .mySwiper3 {
    width: 100%;
    min-width: 0;
  }
}

/* 992px 이하 */
@media (max-width: 992px) {
  .util_item span {
    font-size: 14px;
  }

  .side_btn a {
    min-height: 46px;
  }

  .news_section .left_column {
    flex-direction: column;
  }

  .news_section .left_section,
  .news_section .center_section {
    width: 100%;
  }

  .news_section .news_box {
    height: auto;
    min-height: 220px;
  }

  .news_section .tit_area .tit {
    font-size: 26px;
  }

  .news_section .center_wrap ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .right_column .content {
    padding: 20px 16px;
  }

  .service_wrap .info_wrap {
    flex-direction: column;
  }

  .service_wrap .info_wrap .info_box {
    width: 100%;
  }

  .service_wrap .policy {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }

  .service_wrap .policy .tit_wrap {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .service_wrap .policy h2.tit {
    font-size: 24px;
  }

  .gallery {
    padding: 40px 0;
  }

  .gallery_menu button {
    height: 46px;
    font-size: 16px;
  }

  .gallery_txt .tit {
    font-size: 15px;
  }
  .footer_info_top{
    justify-content: space-between;
  }
  .footer_file{
    margin-left: 0;
  }
  .footer_links a {
    font-size: 16px;
  }
}

/* 768px 이하 */
@media (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }

  /* //2026-08-31 수정 내용: 모바일 메인 배너 컨트롤 축소 */
  .visual_ctrl {
    gap: 4px;
    right: 6px;
    bottom: 6px;
  }


  .btn_wrap {
    padding: 6px 8px;
    border-radius: 14px;
  }

  .btn_wrap .swiper-pagination {
    min-width: 36px;
    margin-right: 8px;
    font-size: 12px;
  }

  .btn_wrap .swiper-button-next,
  .btn_wrap .swiper-button-prev {
    width: 8px;
    min-width: 8px;
    height: 14px;
    background-size: contain;
  }

  .btn_wrap .btn_play {
    min-width: 14px;
    height: 14px;
    margin: 0 6px;
    background-size: contain;
  }

  .btn_wrap .btn_play.is-paused {
    background-size: contain;
  }

  .top_header {
    gap: 16px;
    justify-content: center;
  }

  .util {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }


  .info_section h2.tit {
    font-size: 26px;
  }

  .info_section .mySwiper2 {
    margin: 0 24px;
  }

  .info_section .mySwiper2 .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
  }

  .info_section .mySwiper2 .swiper-slide a {
    gap: 10px;
  }

  .info_section .mySwiper2 .swiper-slide a span {
    font-size: 15px;
  }

  .info_section .mySwiper2 .img::after {
    display: none;
  }

  .quick {
    padding: 30px 0;
  }

  .service_wrap .info_wrap .info_box {
    height: auto;
    min-height: 130px;
    padding: 24px 20px;
  }

  .service_wrap .info_wrap .info_box .tit {
    font-size: 22px;
  }
  .service_wrap .info_wrap .info_box .tit br{
    display: none;
  }

  .policy .mySwiper3 .swiper-slide {
    padding: 0 4px;
  }
  .policy .mySwiper3 .swiper-slide a {
    font-size: 16px;
  }

  .policy .mySwiper3 .swiper-slide img {
    max-height: 52px;
    width: auto;
    height: auto;
    top: -16px;
  }

  .news_section {
    padding: 30px 0;
  }

  .news_section .tit_area .tit {
    font-size: 22px;
  }

  .news_section .news_box .item > a {
    font-size: 15px;
  }

  .news_section .news_box .date {
    font-size: 13px;
  }

  .news_section .center_wrap ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .news_section .center_wrap li a {
    height: 44px;
    font-size: 14px;
  }

  .news_section .right_column {
    flex-direction: column;
    height: auto;
  }

  .right_column .tabs {
    width: 100%;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
  }

  .right_column .tab {
    flex: 1;
    margin-left: 0;
    padding: 14px 10px;
    text-align: center;
    font-size: 15px;
  }

  .right_column .tab.active {
    margin-right: 0;
    padding-right: 10px;
    border-radius: 0;
    box-shadow: none;
  }

  .right_column .list {
    gap: 12px 8px;
  }

  .right_column .item a {
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }

  .gallery_head {
    gap: 12px;
  }

  .gallery_ctrl {
    margin-left: 0;
  }

  .gallery_menu button {
    height: 42px;
    padding: 0 16px 0 12px;
    font-size: 15px;
  }

  .gallery_txt {
    gap: 8px;
    padding-top: 10px;
  }

  .gallery_txt .tit {
    font-size: 14px;
  }

  .gallery_txt .meta {
    font-size: 12px;
  }

  .footer_inner {
    width: 100%;
    padding: 0 16px;
  }

  .footer_quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* //2026-08-26 수정 내용: 768 이하 푸터 퀵메뉴 테두리 1px (왼쪽 누락/2px 중첩 방지) */
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .footer_quick_item:first-child {
    border-left: 0;
  }
  .footer_quick_btn {
    border: 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .footer_content {
    flex-direction: column;
    gap: 24px;
  }
  .footer_info {
    width: 100%;
  }
  .footer_logo {
    flex: 0 0 100%;
    max-width: 240px;
  }

  .footer_info_top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .footer_file {
    margin-left: 0;
  }

  .foot_info p {
    font-size: 14px;
  }
}

/* 480px 이하 */
@media (max-width: 480px) {
  .inner {
    padding: 0 12px;
  }

  .visual_section {
    padding: 20px 0;
  }

  .top_header {
    margin-bottom: 20px;
    padding: 0;
  }
  /* //2026-08-26 수정 내용: 480 이하 메인 로고 축소 */
  .top_header .logo {
    flex: 0 0 auto;
  }
  .top_header .logo img {
    width: 240px;
    max-width: 240px;
    height: auto;
  }

  /* //2026-08-26 수정 내용: SNS 아이콘 32px는 480 이하만 */
  .side_area .sns a {
    width: 32px;
    height: 32px;
  }
  .side_area .sns img {
    width: 32px;
    height: 32px;
    max-width: none;
    object-fit: contain;
  }
  .search-box input {
    height: 52px;
    padding-left: 18px;
    padding-right: 68px;
    font-size: 15px;
    line-height: 48px;
  }

  .search-box .submitbox {
    right: 8px;
    width: 40px;
    height: 40px;
  }
  .util{
    gap: 10px;
  }
  .util_item{
    gap: 5px;
  }
  .util_item .icon {
    width: 30px;
    height: 30px;
  }

  .util_item span {
    font-size: 14px;
    letter-spacing: -1px;
  }

  .side_btn {
    width: 100%;
  }

  .side_btn a {
    flex: 1;
    width: auto;
    justify-content: center;
    font-size: 16px;
  }
 
  .info_section {
    padding: 30px 0;
  }

  .info_section h2.tit {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .info_section .mySwiper2 {
    margin: 0 20px;
  }

  .service_wrap .info_wrap .info_box .tit {
    font-size: 20px;
  }

  .service_wrap .policy h2.tit {
    font-size: 20px;
  }

  .policy .mySwiper3 {
    padding: 32px 10px 16px;
  }

  .policy .mySwiper3 .swiper-slide a {
    min-height: 80px;
    padding: 30px 10px 10px;
    font-size: 15px;
  }

  .policy .mySwiper3 .swiper-slide img {
    width: auto;
    height: auto;
    top: -14px;
  }

  .news_section .tit_area .tit {
    font-size: 20px;
  }

  .news_section .tit_area .more_btn {
    width: 32px;
    height: 32px;
    background-size: contain !important;
  }

  .news_section .news_box {
    padding: 16px;
    min-height: 0;
  }

  .news_section .news_box .item {
    margin-bottom: 12px;
    align-items: flex-start;
  }

  .news_section .center_wrap ul {
    grid-template-columns: 1fr 1fr;
  }

  .right_column .list {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 30px 0;
  }

  .gallery .inner {
    gap: 18px;
  }

  .gallery_menu button {
    height: 40px;
    font-size: 14px;
  }

  .gallery_ctrl .ctrl {
    width: 32px;
    height: 32px;
  }

  /* //2026-08-26 수정 내용: 480 푸터 퀵메뉴 2열 (테두리는 768 규칙 유지) */
  .footer_quick {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_quick_list a{
    font-size: 14px;
  }
  .footer_quick_btn {
    height: 44px;
    font-size: 14px;
    padding: 0 10px;
  }
  .footer_quick_item.active .footer_quick_list {
    padding: 15px 10px;
  }

  .footer_content {
    display: block;
  }

  .footer_logo {
    margin-bottom: 20px;
  }

 

  .footer_links a {
    font-size: 14px;
  }

  .footer_file a {
    min-width: 34px;
    height: 34px;
  }

  .foot_area {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot_info p {
    font-size: 13px;
  }
}

/* 자주찾는 메뉴: 가로(Y축) 회전 */
.info_section .mySwiper2 .img {
  perspective: 600px;
}
.info_section .mySwiper2 .img img {
  display: block;
  margin: 0 auto;
  transition: transform 0.45s ease !important;
  transform-style: preserve-3d;
  backface-visibility: visible;
}
.info_section .mySwiper2 .swiper-slide a:hover .img img {
  transform: rotateY(180deg) scale(1.05) !important;
}

/* 소식 더보기 */
.news_section .tit_area .more_btn {
  transition: transform 0.35s ease !important;
}
.news_section .tit_area .more_btn:hover {
  transform: rotate(90deg) scale(1.15) !important;
}

/* 갤러리 더보기(+) */
.gallery_ctrl .ctrl.more {
  transition: transform 0.35s ease !important;
}
.gallery_ctrl .ctrl.more:hover {
  transform: rotate(90deg) scale(1.15) !important;
}

/* //2026-08-26 수정 내용: 모바일 가로 스크롤 차단 */
@media (max-width: 1000px) {
  html {
    overflow-x: hidden;
    overflow-x: clip;
  }
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .visual_section,
  .info_section,
  .news_section,
  .gallery,
  .footer,
  .inner,
  .flex_box,
  .left-area,
  .side_area,
  .service_wrap,
  .news_wrap {
    max-width: 100%;
  }
  .visual_section {
    overflow-x: hidden;
  }
}

/* //2026-08-28 포커스: 점선 검은색 계열 (전체 페이지) */
:focus {
  outline: 1px dashed #333 !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 1px dashed #333 !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}
