/* 메인 비주얼 (Hero) - 시작 */
.ngm-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.ngm-hero__inner {
  position: relative;
  z-index: 3;                 /* 카피는 풀블리드 배경 위 */
  max-width: var(--ngm-maxw);
  margin: 0 auto;
  padding: 70px 30px 64px;
  min-height: 680px;
  display: flex;
  align-items: center;
}

/* 좌상단 나뭇잎 장식 */
.ngm-hero__leaf {
  position: absolute;
  top: 0; left: 0;
  width: 500px;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* 좌측 텍스트 */
.ngm-hero__copy { position: relative; z-index: 3;}
.ngm-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-top:70px;
}
.ngm-hero__eyebrow > span{font-family: 'esamanru';}
.ngm-hero__eyebrow .ngm-c-orange { color: var(--ngm-orange); }
.ngm-hero__eyebrow .ngm-c-green  { color: var(--ngm-green); }
.ngm-hero__title {
  font-family: 'esamanru';
  margin: 0 0 24px;
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--ngm-ink);
}
.ngm-hero__desc {
  margin: 0 0 42px;
  font-size: 2rem;
  line-height: 1.7;
  color: var(--ngm-text);
  letter-spacing: -0.01em;
}

/* 퀵 메뉴 (인사말 / 일정 / 공약지도) */
.ngm-quick { display: flex; gap: 18px; }
.ngm-quick__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 96px;
}
.ngm-quick__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--ngm-line-soft);
  box-shadow: var(--ngm-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ngm-quick__icon img { width: 46px; height: 46px; object-fit: contain; }
.ngm-quick__item:hover .ngm-quick__icon {
  transform: translateY(-4px);
  box-shadow: var(--ngm-shadow-lg);
}
.ngm-quick__label {
  font-size: 1.7rem;
  line-height: 1.35;
  text-align: center;
  color: var(--ngm-ink);    
  font-family: 'esamanru';
  font-weight: 400;
}

/* 비주얼: 히어로 전체를 덮는 풀블리드 배경 레이어 (도시 전경 + 구청장 누끼) — 시안2 구성 */
.ngm-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-bottom: 1px #f3f3fb solid;
}
.ngm-hero__city {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;   /* 도시·강변은 우측 정렬, 좌측은 페이드 영역 */
}

/* 좌측 흰색 페이드 — 카피 가독 확보 (배경 이미지의 페이드를 보강) */
.ngm-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 24%, rgba(255,255,255,0) 52%);
  pointer-events: none;
}
.ngm-hero__mayor {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-23%);     /* 화면 중앙에서 우측으로 — 도시 빌딩 앞에 배치 */
  height: 96%;
  max-height: 660px;
  width: auto;
  z-index: 2;
}

	/* 미디어쿼리 시작 */
	@media (max-width: 1439px) {
		/* 히어로: 데스크톱(50/58) → 태블릿(30/38) 사이 중간 단계로 단차 완화 */
		.ngm-hero__eyebrow { font-size: 4.6rem; margin-top: 50px;}
		.ngm-hero__title { font-size: 5.3rem; }
		.ngm-hero__copy{padding-left:20px;}
		.ngm-quick__label{font-size:1.65rem;}
		.ngm-hero__mayor{max-height: 610px; transform: translateX(-8%);}
		.ngm-hero__city{ object-position: center bottom;}
		.ngm-hero__leaf{width:340px; opacity: 0.7;}
	}
	@media (min-width: 1080px) and (max-width: 1439px){
		.ngm-hero__eyebrow{margin-top:0;}
	}
	@media (max-width: 1079px) {
		/* Hero(태블릿): 시안 구성 유지 — 텍스트 좌 / 도시 배경 + 구청장 우, 크기만 축소 */
		.ngm-hero__inner {
			padding: 48px 24px 56px;
			min-height:600px;
		}
		.ngm-hero__leaf { width: 200px; }
		.ngm-hero__eyebrow { font-size: 3rem; }
		.ngm-hero__title { font-size: 4.8rem; margin-bottom: 20px;}
		.ngm-hero__desc{font-size:1.8rem; max-width: 380px;}
		/* 비주얼은 풀블리드 배경(inset:0) 그대로 — 도시·구청장 위치는 데스크톱과 동일 */
	}
	@media (max-width: 920px) {
		.ngm-hero__mayor{ transform: translateX(-15%);}
	}
	@media (min-width: 768px) and (max-width: 1185px){
		.ngm-hero__title{padding-right:350px;}
	}
	@media (min-width: 768px) and (max-width: 920px){
		.ngm-hero__title{max-width:810px;}
	}
	@media (max-width: 767px) {
		/* Hero(모바일): 콤팩트 가로 구성 — 텍스트·메뉴는 좌측, 구청장은 우측 하단 모서리에 붙임 */
		.ngm-hero__inner {
			display: block;
			position: relative;
			padding: 30px 20px 120px 20px;
			min-height: 65vw;
		}
		.ngm-hero__leaf { width: 96px; }
		/* 비주얼(도시+구청장)을 히어로 전체 배경 레이어로 */
		.ngm-hero__visual {
			position: absolute;
			inset: 0;
			height: auto;
			min-height: 0;
			z-index: 0;
		}
		.ngm-hero__city {
			inset: 0;
			right: auto;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center bottom;
			border-radius: 0;
			/* 좌측을 비워 텍스트 가독 확보 */
			-webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, #000 60%);
			        mask-image: linear-gradient(90deg, transparent 0%, transparent 24%, #000 60%);
		}
		.ngm-hero__fade {
			background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 30%, rgba(255,255,255,0) 62%);
		}
		/* 구청장: 우측 하단 모서리에 붙여 자연스럽게 — 텍스트(좌측)와 분리 */
		.ngm-hero__mayor {
			left: auto;
			right: -10%;
			bottom: 0;
			height: auto;
			width: 76%;
			min-width: 410px;
			max-width: 495px;
			transform: none;
		}
		/* 텍스트·메뉴: 좌측, 구청장과 겹치지 않게 폭 제한 */
		.ngm-hero__copy {
			position: relative;
			z-index: 2;
			max-width: 65%;
			padding-left:10px;
		}
		.ngm-hero__eyebrow { font-size: 2.3rem; margin-bottom: 10px; margin-top:30px; white-space: nowrap;}
		.ngm-hero__title { font-size: 4rem; margin-bottom: 10px; }
		.ngm-hero__desc { font-size: 1.55rem; line-height: 1.6; margin-bottom: 22px; padding-right:25px;}
		.ngm-hero__desc > br{display:none;}
		.ngm-quick { gap: 10px; }
		.ngm-quick__item { width: auto; flex: 1; gap:7px;}
		.ngm-quick__icon { width: 60px; height: 60px; border-radius: 16px; }
		.ngm-quick__icon img { width: 32px; height: 32px; }
		.ngm-quick__label { font-size: 1.4rem; line-height:1.3;}
	}
  @media (max-width: 550px) {
    .ngm-hero__inner{padding: 30px 20px 60px 20px;}
    .ngm-hero__title{padding-right: 110px;}
  }
	@media (max-width: 500px) {
		.ngm-hero__leaf{width:250px;}
		.ngm-hero__title{font-size:3.2rem; padding-right: 125px;}
		.ngm-hero__copy{max-width:100%; padding-left:0;}
		.ngm-hero__mayor{right:-105px;}
		.ngm-hero__desc{padding-right:140px;}
		.ngm-quick{gap:5px;}
	}
	@media (max-width: 430px) {
		.ngm-quick__item{border-radius: 15px; background: #fff; border: 1px solid var(--ngm-line-soft); box-shadow: var(--ngm-shadow); padding:8px; gap: 5px;}
		.ngm-more{gap: 7px; padding: 0 12px 0 13px;}
    .ngm-hero__eyebrow{font-size:2.1rem;}
	}
	@media (max-width: 350px) {
		.ngm-quick__icon{width:55px; height:55px;}
		.ngm-quick__label{font-size:1.3rem;}
    .ngm-hero__eyebrow{font-size:2rem;}
	}
	/* 미디어쿼리 끝 */
/* 메인 비주얼 (Hero) - 끝 */


/* 공약 영역 (Promise) - 시작 */
/* 구조: [좌] 활성 공약 카드(테마컬러) / [중] 인트로+컨트롤 / [우] 미리보기 2카드
   - 슬라이더로 5대 공약을 순환. 활성=좌측 큰 카드, 다음 2개=우측 미리보기 카드.
   - JS 미동작 시에도 초기 상태(시안: 05 featured / 01·02 카드)가 그대로 노출. */
.ngm-promise {
  position: relative;
  padding: 64px 0;            /* 전 섹션 동일 리듬 (64px) */
  background: transparent;          /* 페이지 틴트(#F9FAFE)가 비치도록 — 박스는 흰색+그림자 */
}
.ngm-promise__inner {position: relative; transition: 0.3s ease;}

/* 패널: 시안의 큰 라운드 컨테이너 (좌 featured / 중 인트로 / 우 2카드) */
.ngm-promise__panel {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 22px;
  background: #fff;                 /* 외곽 패널은 흰색 */
  border: 1px solid var(--ngm-line-soft);
  box-shadow: var(--ngm-shadow-lg);
  border-radius: 32px;
}

/* 시안: 인트로 + 미리보기 2카드를 하나의 그라데이션 박스로 묶음 */
.ngm-promise__group {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 0.92fr 1.5fr;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  background: #f8f8ff url(../images/main/promise_background.jpg) no-repeat;
  background-position: top right;
  border-radius: var(--ngm-r-lg);
  box-shadow: inset 0 2px 6px rgba(20, 28, 46, .06), inset 0 0 0 1px rgba(20, 28, 46, .04);
}

/* featured 공약 카드 (좌, 테마컬러) */
.ngm-pf {
  flex: 0 0 31%;                    /* 주황 카드는 독립 — 패널 좌측 고정폭 */
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--ngm-r-lg);
  color: #fff;
  background: linear-gradient(150deg, #f8790e 0%, var(--pf-color-dark, var(--ngm-orange-dark)) 100%);
  box-shadow: var(--ngm-shadow-lg);
}
.ngm-pf__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ngm-pf__no { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; opacity: .95; }

/* 우측 상단 모서리의 원형 배지 — 큰 숫자 + 아래 라벨, 안쪽 연한 링(참고이미지) */
.ngm-pf__badge {
  position: absolute;
  top: -10px; right: -10px;
  z-index: 2;
  flex: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);   /* 안쪽 링 */
  text-align: center; line-height: 1; background-color: #f26708;
  box-shadow: 0.1px 0.1rem 0.5rem rgb(0 0 0 / 50%);
}
.ngm-pf__badge b { font-size: 3.3rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; font-family: 'esamanru';}
.ngm-pf__badge span { font-size: 1.25rem; font-weight: 500; opacity: .95; margin-top: 5px; white-space: nowrap; font-family: 'esamanru';}
.ngm-pf__name { margin: 25px 0 12px; padding-right: 78px; font-size: 3.9rem; line-height:1.3; font-weight: 800; letter-spacing: -0.03em; font-family: 'esamanru'; text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);}
.ngm-pf__desc { margin: 0 0 30px; font-size: 1.7rem; line-height: 1.6; color: white; font-weight:400; padding-right:20px;}
.ngm-pf__list { display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 1; }
.ngm-pf__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1.8rem; font-weight: 500; letter-spacing: -0.01em;
}
.ngm-pf__plus {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin-top: 5px;
  border-radius: 50%;     background: rgb(0 0 0 / 24%);
}
.ngm-pf__plus svg { width: 14px; height: 14px; }
.ngm-pf__cta {
  display: inline-flex; align-items: center; gap: 14px; align-self: flex-start;
  margin-top: 24px; height: 48px; padding: 0 16px 0 24px;
  border-radius: 999px; background: #fff; color: var(--ngm-ink);
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative; z-index: 1;
  box-shadow: 0 6px 18px rgba(20,28,46,.18);
  transition: transform .16s ease, box-shadow .16s ease;
}
.ngm-pf__cta:hover { transform: translateY(-2px); box-shadow: 0 11px 26px rgba(20,28,46,.24); }
.ngm-pf__cta svg {
  width: 18px; height: 18px; flex: none;
  padding: 5px 0 5px 14px; box-sizing: content-box;
  border-left: 1px solid rgba(20,28,46,.14);
  color: var(--pf-color, var(--ngm-orange));
}
.ngm-pf__cta { max-width: 100%; }
.ngm-pf__wm {
  position: absolute;
  right: 45px;
  bottom: 15px;
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  pointer-events: none;
  z-index: 0;
  text-stroke: 2px black;
  -webkit-text-stroke: 2px rgb(255 255 255 / 40%);
  font-style: italic;
  font-family: 'esamanru';
  letter-spacing: -0.075rem;
}

/* 인트로 + 컨트롤 (중) */
.ngm-pi { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 300px; padding: 16px 4px 8px; }
.ngm-pi__eyebrow { font-size: 1.9rem; font-weight: 600; color:black; letter-spacing: -0.01em; }
.ngm-pi__title { margin: 20px 0 30px; font-size: 4.2rem; font-weight: 500; letter-spacing: -0.05em; color: var(--ngm-blue-dark); font-family: 'esamanru'; line-height:1.2;}
.ngm-pi__desc { margin: 0 0 16px; font-size: 1.7rem; line-height: 1.65; color: var(--ngm-text); padding-right:20px;}

/* 시안2: 일러스트를 인트로 컬럼 우하단 모서리에 붙여 미리보기 카드(ngm-pc)와 맞닿게 배치.
   · right 음수로 그리드 gap(22px)을 다리 놓아 카드 좌측에 먀도록 함
   · max-height로 컬럼 높이를 넘지 않게 제한 → 카드 내용이 적어도 텍스트·컨트롤 안 건드림 */
.ngm-pi__img {
  position: absolute; right: -22px; bottom: 20px;
  width: auto; height: auto;
  max-width: 78%; max-height: 58%;
  margin: 0; z-index: 0; pointer-events: none;
}
.ngm-pi__img.multiply{mix-blend-mode: multiply;}
.ngm-pi__ctrl { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: auto; }

/* 일러스트(절대배치)는 항상 텍스트·컨트롤 아래에 — 컬럼이 짧아도 글자가 가려지지 않음 */
.ngm-pi > *:not(.ngm-pi__img) { position: relative; z-index: 1; }
.ngm-pi__btns { display: flex; gap: 8px; }
.ngm-pi__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--ngm-line-soft); border-radius: 50%;
  background: #fff; color: var(--ngm-ink);
  box-shadow: 0 2px 6px rgba(20,28,46,.10), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.ngm-pi__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(20,28,46,.16); color: var(--ngm-blue); }
.ngm-pi__btn:active { transform: translateY(0); box-shadow: inset 0 2px 5px rgba(20,28,46,.16); }
.ngm-pi__btn svg { width: 18px; height: 18px; }
.ngm-pi__count { order: -1; font-size: 2.2rem; font-weight: 800; color: var(--ngm-ink); letter-spacing: 0.02em; white-space: nowrap; padding-left:5px;}
.ngm-pi__count span{font-family: 'esamanru';}
.ngm-pi__count em { font-style: normal; font-size: 1.6rem; color: var(--ngm-faint); font-weight: 600; font-family: 'esamanru';}

/* 미리보기 2카드 (우) */
/* 항상 2열 나란히. 종폭이 좁아지는 구간(≤1199)엔 패널 자체가 1단으로 접혀 카드 폭을 확보 */
.ngm-pc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-width: 0; }
.ngm-pc {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; gap:50px 0;
  min-width: 0;
  padding: 28px 24px;
  background: #fff; border: 1px solid var(--ngm-line-soft);
  border-radius: var(--ngm-r-lg); box-shadow: var(--ngm-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ngm-pc:hover { transform: translateY(-3px); box-shadow: var(--ngm-shadow-lg); }
.ngm-pc__no { font-size: 1.4rem; font-weight: 700; color: var(--ngm-sub); letter-spacing: 0.02em; }
.ngm-pc__name {
  margin: 20px 0 20px; font-size: 3.6rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ngm-ink); line-height: 1.3;
}
.ngm-pc__name em { font-style: normal; display: block; color: var(--pc-color, var(--ngm-orange)); }
.ngm-pc__desc { margin: 0; font-size: 1.7rem; line-height: 1.6; color: var(--ngm-txt); }
.ngm-pc__icon { display: block; width:100%; margin: 0px 0 22px 0; color: var(--pc-color, var(--ngm-orange)); }
.ngm-pc__icon svg { width: 54px; height: 54px; }
.ngm-pc__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px; margin-top: auto;
  min-height: 44px; padding: 0 16px 0 22px; border-radius: 999px;
  border: 1.5px solid var(--pc-color, var(--ngm-orange));
  color: var(--pc-color, var(--ngm-orange));
  background: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
  max-width: 100%; text-align: center;
  transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
  box-shadow: 0 2px 6px rgba(20,28,46,.08), inset 0 1px 0 rgba(255,255,255,.8);
  font-family: 'esamanru'; font-weight: 500; letter-spacing: -0.05rem;
}
.ngm-pc__cta:hover {
  background: var(--pc-color, var(--ngm-orange));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20,28,46,.20);
}
.ngm-pc__cta:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 6px rgba(20,28,46,.22);
}
.ngm-pc__cta svg {
  width: 16px; height: 16px; flex: none;
  padding: 4px 0 4px 13px; box-sizing: content-box;
  border-left: 1px solid currentColor;
}

/* 공약 슬라이드 전환
   - 우측 미리보기·중앙 인트로: 위로 살짝 떠오르는 페이드
   - 좌측 활성 카드(ngm-pf): 방향성 있는 가로 슬라이드(다음=왼쪽 / 이전=오른쪽)로 차별화 */
.ngm-pc > * {
  transition: opacity .26s ease, transform .26s ease;
  will-change: opacity, transform;
}
.ngm-pc.is-swapping > * {
  opacity: 0;
  transform: translateY(10px);
}

/* 좌측 활성 카드 — 가로 슬라이드(살짝 느리고 묵직한 ease-out) */
.ngm-pf > * {
  transition: opacity .24s ease, transform .46s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.ngm-pf.is-swapping > * {
  opacity: 0;
  transform: translateX(var(--pf-shift, -16px));
}

/* 중앙 인트로 머리글도 함께 크로스페이드 (컨트롤 버튼은 고정) */
.ngm-pi__head {
  transition: opacity .26s ease, transform .26s ease;
  will-change: opacity, transform;
  padding:0 10px;
}
.ngm-pi__head.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}

/* 중앙 인트로 이미지도 함께 크로스페이드 */
.ngm-pi__img {
  transition: opacity .26s ease, transform .26s ease;
  will-change: opacity, transform;
}
.ngm-pi__img.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}

/* 공약 (준비중) — 임시 노출 변형 (스피너 + '공약 준비중입니다.') */
.ngm-pf--prep,
.ngm-pc--prep {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}
.ngm-pf--prep { min-height: 360px; }
.ngm-pc--prep { min-height: 320px; }
.ngm-prep-text {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  font-family: 'esamanru';
}
.ngm-prep-text--gray {
  font-size: 2.4rem;
  color: #6e8598;
}

/* 로딩 이미지 — 회전 없이 정적 노출 (첨부 SVG 그대로) */
.ngm-prep-spin { display: inline-flex; }
.ngm-prep-spin img {
  display: block;
}
.ngm-prep-spin--light img {
  width: 86px; height: 86px;
  mix-blend-mode: screen;              /* 주황 배경 위 자연스럽게 합성 */
}
.ngm-prep-spin--gray img {
  width: 62px; height: 62px;
}

	/* 미디어쿼리 시작 */
	@media (min-width: 1861px) {
		.ngm-promise__panel{width: calc(100% + 44px); transform: translateX(-22px);}
	}
	@media (min-width: 1440px) {
		.ngm-pf__cta{margin-top:50px;}
		.ngm-promise__group{min-height:540px;}
	}
	@media (max-width: 1439px) and (min-width: 1080px){
		.ngm-promise__group{min-height:500px;}
	}
	@media (max-width: 1439px) {
		.ngm-promise__panel { flex-direction: column; gap: 20px; padding: 20px; }
		.ngm-pf { flex: none; width: 100%; }                                  /* 주황 카드 전폭 */
		/* 주황 카드만 위로 내리고, 그룹은 [인트로 | 2카드] 가로 배치 유지 → 높이 절감 */
		.ngm-promise__group { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr); gap: 24px; padding: 24px; }
		.ngm-pi__img { right: -24px; }   /* 이 구간 그룹 gap(24px)에 맞춰 카드에 밀착 */
		.ngm-pf__wm { font-size: 12rem; }
		.ngm-hero__leaf{width:400px;}
		.ngm-pf__cta{margin-top:45px;}
	}
	@media (max-width: 1079px) {
		/* 공약 패널(태블릿): 인트로를 위로, 미리보기 카드는 아래에서 전폭 2열 → 카드 찌부 방지 */
		.ngm-promise__group { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
		.ngm-pi { min-height: 0; }
		.ngm-pi__img { display: none; }   /* 세로 스택 시 일러스트는 카드와 맞닿지 않으므로 숨김 */
		.ngm-pi__ctrl { margin-top: 18px; flex-direction: row; align-items: center; gap: 16px; }
		.ngm-pi__count { order: 0; }   /* 태블릿·모바일: 카운트를 버튼 옆에 가로 배치 → 세로 길이 단축 */

		/* 공약 제목(태블릿 전용 단계): 데스크톱 크기 그대로 쓰여 과대했던 것을 중간값으로 축소 */
		.ngm-pf__name { font-size: 3.2rem; }
		.ngm-pi__title { font-size: 3.4rem; }
		.ngm-pc__name { font-size: 3rem; }
	}
	@media (max-width: 767px) {
		/* 공약 섹션 전체 */
		.ngm-promise { padding: 32px 0; }

		/* 외곽 패널: 패딩·갭 축소 */
		.ngm-promise__panel { padding: 14px; gap: 14px; }

		/* featured 카드 (주황) */
		.ngm-pf { padding: 20px 18px; }
		.ngm-pf__name { font-size: 2.4rem; padding-right: 70px; }
		.ngm-pf__desc { font-size: 1.5rem; line-height: 1.55; margin-bottom: 14px; }
		.ngm-pf__list { gap: 8px; }
		.ngm-pf__list li { font-size: 1.5rem; }
		.ngm-pf__plus { width: 20px; height: 20px; margin-top: 3px; }
		.ngm-pf__plus svg { width: 12px; height: 12px; }
		.ngm-pf__cta { margin-top: 18px; height: 42px; font-size: 1.4rem; }
		.ngm-pf__badge { width: 68px; height: 68px; top: 14px; right: 14px; }
		.ngm-pf__badge b { font-size: 2.4rem; }
		.ngm-pf__badge span { font-size: 1.1rem; }
		.ngm-pf__wm { font-size: 6rem; right: 28px; bottom: 10px; opacity: 0.5;}
    .ngm-prep-text{font-size: 2.6rem;}

		/* 그룹(인트로+카드) 박스 */
		.ngm-promise__group { grid-template-columns: 1fr; padding: 14px; gap: 12px; }

		/* 인트로(중앙) */
		.ngm-pi { min-height: 0; padding: 8px 4px 6px; }
		.ngm-pi__eyebrow { font-size: 1.4rem; }
		.ngm-pi__title { font-size: 2.6rem; margin: 8px 0 10px; }
		.ngm-pi__desc { font-size: 1.5rem; line-height: 1.6; margin-bottom: 8px; }
		.ngm-pi__img { display: none; }   /* 모바일: 장식 이미지 숨김 */
		.ngm-pi__ctrl { margin-top: 10px; gap:12px; align-items: end;}
		.ngm-pi__count { font-size: 1.8rem; }
		.ngm-pi__btn { width: 38px; height: 38px; }

		/* 프리뷰 카드 2장 */
		.ngm-pc-wrap { grid-template-columns: 1fr; gap: 10px; }
		/* gap: 50px 0 → 모바일에서 카드 내부 여백 과도하게 크던 것 수정 */
		.ngm-pc { gap: 18px 0; padding: 20px 18px; }
		.ngm-promise--prep .ngm-pc:last-child{display:none;}
		.ngm-pc__no { font-size: 1.3rem; }
		.ngm-pi__head{padding:5px;}
		.ngm-pc__name { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 2.2rem; margin: 8px 0 8px; }
		.ngm-pc__desc { font-size: 1.5rem; line-height: 1.55; }
		.ngm-pc__icon { margin-bottom: 12px; }
		.ngm-pc__icon svg { width: 42px; height: 42px; }
		.ngm-pc__cta { min-height: 40px; font-size: 1.4rem; padding: 0 14px 0 18px; }
		.ngm-pc__cta svg { padding: 4px 0 4px 11px; }
	}
  @media (max-width: 380px) {
    .ngm-prep-text--gray{font-size: 2.1rem;}
  }
	@media (prefers-reduced-motion: reduce) {
		.ngm-pf > *, .ngm-pc > * { transition: none; }
		.ngm-pi__head, .ngm-pi__img { transition: none; }
	}
	/* 미디어쿼리 끝 */
/* 공약 영역 (Promise) - 끝 */


/* 보도자료 + 갤러리 - 시작 */
/* · 보도자료: 네이비 텍스처 피처 카드 1개 + 흰색 태그 카드 리스트.
   · 갤러리:   1.6fr/1fr · 2행 그리드. 좌측 대형(영상) + 우측 2카드.
   · 폰트/컬러/라운드는 현재 디자인 토큰(--ngm-*)에 맞춰 정돈. */
.ngm-news {
  padding: 64px 0;            /* 전 섹션 동일 리듬 (64px) */
  background: transparent;
}
.ngm-news.last{padding-bottom:64px;}
.ngm-news__grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 48px;
  align-items: stretch;
}

/* 보도자료 */
.ngm-press { display: flex; flex-direction: column; min-width: 0; }

/* 대표(피처) 카드 — 네이비 그라데이션 + 미세 그리드 텍스처 */
.ngm-press__feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 200px;
  margin-bottom: 12px;
  padding: 28px 30px;
  border-radius: var(--ngm-r-lg);
  color: #fff;
  background: var(--ngm-blue-dark);
  box-shadow: var(--ngm-shadow);
  transition: transform .25s ease;
}
.ngm-press__feature::before {  /* 컬러 글로우 */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(30,95,204,.70), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(242,111,33,.42), transparent 50%),
    linear-gradient(170deg, #082259 0%, var(--ngm-blue-dark) 60%, var(--ngm-blue) 100%);
}
.ngm-press__feature::after {  /* 미세 그리드 텍스처 */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ngm-press__feature:hover { transform: translateY(-3px); }
.ngm-press__feature-body { position: relative; z-index: 2; }
.ngm-press__feature-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ngm-pf-tag {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em;
  padding: 2px 13px; border-radius: 999px;
  background: rgba(242,111,33,.22);
  border: 1px solid rgba(242,111,33,.42);
  color: #FFB387;
}
.ngm-pf-date { font-size: 1.5rem; font-weight: 500; color: rgba(255,255,255,.5); }
.ngm-press__ftitle {
  margin: 0 0 20px;
  font-size: 2.7rem; font-weight: 600;
  line-height: 1.34; letter-spacing: -0.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ngm-pf-meta { display: flex; align-items: center; justify-content: space-between; }
.ngm-pf-views { display: inline-flex; align-items: center; gap: 7px; font-size: 1.4rem; color: rgba(255,255,255,.45); margin-top:10px;}
.ngm-pf-views svg { width: 15px; height: 15px; }
.ngm-pf-arrow {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ngm-pf-arrow svg { width: 18px; height: 18px; }
.ngm-press__feature:hover .ngm-pf-arrow {
  background: var(--ngm-orange); border-color: var(--ngm-orange);
  transform: translate(2px, -2px);
}

/* 보도자료 리스트 — 흰색 태그 카드 행 */
.ngm-press__list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ngm-press__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--ngm-r);
  background: #fff;
  border: 1px solid var(--ngm-line-soft);
  box-shadow: var(--ngm-shadow);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ngm-press__item:hover {
  box-shadow: 0 8px 24px rgba(30,95,204,.12);
  transform: translateY(-2px);
}
.ngm-press__tag {
  flex: none;
  padding: 4px 11px;
  border-radius: 7px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ngm-press__tag.is-blue   { background: rgba(30,95,204,.08);  color: var(--ngm-blue); }
.ngm-press__tag.is-orange { background: rgba(242,111,33,.10); color: var(--ngm-orange); }
.ngm-press__tag.is-green  { background: rgba(30,156,86,.10);  color: var(--ngm-green); }
.ngm-press__itext {
  flex: 1;
  min-width: 0;
  font-size: 1.7rem;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.025em;
  /* 한 줄 말줄임 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ngm-press__item:hover .ngm-press__itext { color: var(--ngm-blue); }
.ngm-press__idate { flex: none; font-size: 1.4rem; font-weight: 500; color: var(--ngm-faint); }

/* 갤러리 */
.ngm-gallery { display: flex; flex-direction: column; min-width: 0; }
.ngm-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 480px;
}
.ngm-gcard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--ngm-r-lg);
  background: #1a1d21;
  transition: transform .35s ease;
}
.ngm-gcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ngm-gcard:hover { transform: scale(1.02); }
.ngm-gcard__overlay {  /* 텍스트 가독용 하단 그라데이션 */
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.92) 100%);
  transition: opacity .18s ease;
}
.ngm-gcard:hover .ngm-gcard__overlay { opacity: .85; }
.ngm-gcard--main { grid-row: span 2; }
.ngm-gcard__body {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  color: #fff;
}
.ngm-gcard--main .ngm-gcard__body { left: 24px; right: 24px; bottom: 24px; }
.ngm-gcard__tag {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.62);
}
.ngm-gcard--main .ngm-gcard__tag { font-size: 1.5rem; }
.ngm-gcard__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ngm-gcard--main .ngm-gcard__title { font-size: 2.1rem; }
.ngm-gcard__date { display: block; margin-top: 6px; font-size: 1.4rem; color: rgba(255,255,255,.5); }

/* 영상 재생 버튼 */
.ngm-gcard__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ngm-blue);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.ngm-gcard__play svg { width: 25px; height: 25px; }
.ngm-gcard:hover .ngm-gcard__play {
  background: var(--ngm-orange);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

	/* 미디어쿼리 시작 */
  @media (min-width: 1441px) {
    .ngm-news__grid{display:flex;}
    .ngm-press{width:calc(100% - 880px);}
    .ngm-gallery{width:880px;}
  }

  @media (min-width: 1441px) and (max-width: 1550px){
    .ngm-press{width:calc(100% - 750px);}
    .ngm-gallery{width:750px;}
  }
	@media (max-width: 1440px) {
		.ngm-news__grid { grid-template-columns: 1fr; gap: 48px; }
	}
	@media (max-width: 1079px) {
		/* 보도자료 + 갤러리 1단 */
		.ngm-press__ftitle { font-size: 2.4rem; }
	}
	@media (max-width: 767px) {
		/* 보도자료 */
		.ngm-news { padding: 40px 0; } 
		.ngm-news.last{padding-bottom:32px;}      /* 모바일 섹션 간 80px 리듬 */
		.ngm-press__ftitle { font-size: 2rem; }
		.ngm-press__item { padding: 15px 18px; gap: 12px; }
		.ngm-press__itext { font-size: 1.6rem; }
		.ngm-press__idate { display: none; }   /* 모바일은 날짜 숨겨 가독 확보 */

		/* 갤러리: 1열 스택 */
		.ngm-gallery__grid {
			grid-template-columns: 1fr;
			grid-template-rows: none;
			min-height: 0;
		}
		.ngm-gcard { min-height: 200px; }
		.ngm-gcard--main { grid-row: auto; min-height: 310px; }
		.ngm-gcard__play{transform: translate(-50%, calc(-50% - 30px));}
    .ngm-gcard:hover .ngm-gcard__play{transform: translate(-50%, calc(-50% - 30px)) scale(1.1);}
	}
	/* 미디어쿼리 끝 */
/* 보도자료 + 갤러리 - 끝 */


/* 바로가기 메뉴 (Goto) - 시작 */
.ngm-goto {
  padding: 64px 0;            /* 전 섹션 동일 리듬 (64px) */
  background: transparent;
}
.ngm-goto__grid {
  display: grid;
  /* 폭에 따라 칸수 자동(넓은 화면 5열 → 좀아지면 4/3/2열). 칸폭이 좌아져 글자가 여러 줄로 쌓이는 현상 방지 */
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--ngm-line-soft);
  box-shadow: var(--ngm-shadow);
  border-radius: var(--ngm-r-lg);
  background: #fff;
}
.ngm-goto__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 12px;
  border-radius: var(--ngm-r);
  background: transparent;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.ngm-goto__item:hover { transform: translateY(-2px); background: var(--ngm-soft); }
.ngm-goto__icon { flex: none; width: 60px; height: 60px; }
.ngm-goto__icon img { width: 100%; height: 100%; object-fit: contain; }
.ngm-goto__text { flex: 1; min-width: 0; }
.ngm-goto__name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ngm-ink);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.ngm-goto__desc {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
  color: var(--ngm-sub);
  line-height: 1.45;
}
.ngm-goto__chevron {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ngm-soft); color: var(--ngm-sub);
  transition: background .18s ease, color .18s ease;
}
.ngm-goto__chevron svg { width: 15px; height: 15px; }
.ngm-goto__item:hover .ngm-goto__chevron { background: var(--ngm-blue); color: #fff; }

	/* 미디어쿼리 시작 */
	@media (max-width: 1580px) and (min-width: 1025px){
		.ngm-goto__grid{grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 6px 15px;}
	}
	@media (max-width: 767px) {
		/* 바로가기: 1열 */
		.ngm-goto { padding: 40px 0; }       /* 모바일 섹션 간 80px 리듬 */
		.ngm-goto__grid { grid-template-columns: 1fr; gap: 0; padding: 16px; }
		.ngm-goto__item { gap: 16px; padding: 18px; border-bottom: 1px #ededed dotted; border-radius: 0; }
		.ngm-goto__item:last-child{border-bottom:none;}
		.ngm-goto__icon { width: 52px; height: 52px; }
		.ngm-goto__name { font-size: 1.8rem; }
		.ngm-goto__desc { font-size: 1.4rem; }
	}
	@media (max-width: 500px) {
		.ngm-goto__item{padding: 18px 5px;}
	}
	/* 미디어쿼리 끝 */
/* 바로가기 메뉴 (Goto) - 끝 */


/* 구청장실 배너 카드 - 시작 */
/* 최상위 격리 컨테이너: 내부 요소들의 서체를 안전하게 고정 */
.ng-office-banner-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: absolute;
    right: 10px;
    bottom: 50px;
}
.ng-office-banner-wrapper *, 
.ng-office-banner-wrapper *::before, 
.ng-office-banner-wrapper *::after {
    box-sizing: border-box;
}

/* 카드 컨테이너 */
.ng-banner-card {
    width: 208px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 18px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 
                0 4px 12px -4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap:8px 0;
}

/* 우측 상단 백그라운드 은은한 스카이블루 광채 */
.ng-banner-card::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.ng-banner-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.1);
}

/* 상단 영역 */
.ng-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

/* 메인 아이콘 박스 (토스/카카오 스타일의 입체감) */
.ng-main-icon-box {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.6rem;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.12);
    order: 2;
}

/* 타이틀 타이포그래피 */
.ng-main-title {
    line-height: 1.35;
    letter-spacing: -0.03em;
}
.ng-main-title .ng-title-light {
    font-family: 'esamanru';
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    display: block;
}
.ng-main-title .ng-title-bold {
    font-family: 'esamanru';
    font-size: 2rem;
    font-weight: 800;
    color: #0f2c59;
    display: block;
}

/* 하단 영역 (리스트 + 와이드 버튼) */
.ng-card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* 안내 정보 리스트 */
.ng-info-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 2px;
}
.ng-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 미니 체크 아이콘 */
.ng-sub-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ng-icon-orange { color: #ff6b4a; }
.ng-icon-green { color: #10b981; }
.ng-info-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: -0.02em;
}

/* 와이드 라운드 버튼 */
.ng-action-button-wide {
    width: 100%;
    height: 38px;
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 카드 호버 시 버튼 활성화 및 화살표 모션 */
.ng-banner-card:hover .ng-action-button-wide {
    background-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}
.ng-action-button-wide i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}
.ng-banner-card:hover .ng-action-button-wide i {
    transform: translateX(3px);
}

	/* 미디어쿼리 시작 */
	@media (max-width: 1700px) {
		.ng-office-banner-wrapper{right:32px;}
	}
  @media (min-width: 1440px) {
    .ng-office-banner-wrapper{top:330px;}
  }
	@media (max-width: 1439px) {
		.ng-office-banner-wrapper { bottom: 40px; }
		.ng-banner-card { width: 190px; padding: 16px 12px 12px; }
		.ng-main-title .ng-title-bold { font-size: 1.8rem; }
	}
	@media (max-width: 1079px) {
		.ng-office-banner-wrapper { bottom: 30px; }
		.ng-banner-card { width: 175px; padding: 15px 12px 12px; border-radius: 18px; }
		.ng-main-title .ng-title-light { font-size: 1.3rem; }
		.ng-main-title .ng-title-bold { font-size: 1.7rem; }
		.ng-main-icon-box { width: 32px; height: 32px; font-size: 1.5rem; border-radius: 10px; }
		.ng-action-button-wide { height: 36px; font-size: 1.3rem; }
	}
	@media (max-width: 767px) {
		.ng-office-banner-wrapper{bottom:20px; right:20px;}
		.ng-banner-card {
			width: 152px;
			padding: 13px 11px 11px;
			border-radius: 16px;
			gap: 6px 0;
		}
		.ng-main-icon-box { width: 28px; height: 28px; font-size: 1.3rem; border-radius: 8px; }
		.ng-main-title .ng-title-light { font-size: 1.2rem; }
		.ng-main-title .ng-title-bold { font-size: 1.45rem; }
		.ng-card-top { gap: 6px; flex-direction: row; align-items: center;}
		.ng-card-bottom { gap: 9px; }
		.ng-info-list { gap: 2px; display:none; }
		.ng-sub-icon { font-size: 1.3rem; }
		.ng-info-text { font-size: 1.2rem; }
		.ng-action-button-wide { height: 33px; font-size: 1.2rem; border-radius: 8px; }
	}
	@media (max-width: 500px) {
		.ng-office-banner-wrapper {bottom:20px; right:15px;}
		.ng-banner-card {
			width: 134px;
			padding: 11px 10px 10px;
			border-radius: 14px;
		}
		.ng-main-icon-box { width: 26px; height: 26px; }
		.ng-info-text { font-size: 1.1rem; }
		.ng-action-button-wide { height: 30px; border-radius: 7px; }
	}
	@media (max-width: 430px) {
		.ng-office-banner-wrapper { bottom: 30px; right: auto;}
		.ng-banner-card {
			width: 122px;
			padding: 10px 9px 9px;
			border-radius: 13px;
		}
		/* 가장 좁은 화면: 서브타이틀 숨겨 공간 확보 */
    .ng-banner-card{width:auto;}
    .ng-main-title{display: flex; align-items: center; gap: 0 3px;}
    .ng-main-title .ng-title-light{ font-size: 1.4rem;}
		.ng-main-title .ng-title-bold { font-size: 1.5rem;}
		.ng-info-text { font-size: 1.05rem; }
		.ng-action-button-wide { height: 28px; font-size: 1.2rem; line-height: 1; margin-bottom: 1px; }
	}
	/* 미디어쿼리 끝 */
/* 구청장실 배너 카드 - 끝 */
