/* ═══════════════════════════════════════════
   남양주 개인회생 — 디자인 시스템 (nyj-hub)
   톤: 법률 리포트/브리프 (광고 랜딩 아님)
   팔레트: 딥 스틸블루 + 쿨 그레이 + 카퍼 ("한강 새벽 리포트")
   ═══════════════════════════════════════════ */

:root {
	--steel:        #2f3e4a;
	--steel-soft:   #45596a;
	--ink:         #26313a;
	--ink-mid:     #56636e;
	--ink-light:   #8a949d;
	--bg:          #f7f9fa;
	--card:        #ffffff;
	--line:        #e0e5e9;
	--copper:       #b3653a;
	--copper-deep:  #94502a;
	--copper-soft:  #f9efe8;
	--ok:          #2e7d5b;
	--font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
	        "Segoe UI", "Malgun Gothic", sans-serif;
}

/* ── 리셋/기본 ── */
.nyj-body { margin: 0; background: var(--bg); color: var(--ink);
	font-family: var(--font); line-height: 1.75; font-size: 16.5px;
	-webkit-font-smoothing: antialiased; word-break: keep-all; }
#nyj-page * { box-sizing: border-box; }
#nyj-page img { max-width: 100%; height: auto; }
/* 링크 기본색은 본문(밝은 배경) 영역에만 — 다크 영역(히어로 패널/푸터/하단바)은 각자 색 유지 */
#nyj-page .nyj-main a { color: var(--steel-soft); }
#nyj-page .nyj-main a.nyj-btn-primary,
#nyj-page .nyj-main a.nyj-btn-dark { color: #fff; }

.nyj-container { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ── 상단 미니 헤더 ── */
.nyj-topbar { background: var(--card); border-bottom: 1px solid var(--line); }
.nyj-topbar-inner { display: flex; justify-content: space-between; align-items: center;
	gap: 16px; padding-top: 11px; padding-bottom: 11px; }
.nyj-updated { font-size: 0.78rem; color: var(--ink-light); white-space: nowrap;
	margin-left: auto; }

/* ── 히어로 (딥 스틸 + 우측 세로 스탯 스택) ── */
.nyj-hero { position: relative; overflow: hidden;
	background: linear-gradient(145deg, #27343e 0%, var(--steel) 46%, #3a4c5b 100%);
	color: #eef3f6; padding: 62px 0 56px; text-align: left;
	border-bottom: 3px solid var(--copper); }
.nyj-hero::before { content: ""; position: absolute; bottom: -220px; left: -140px;
	width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
	background: radial-gradient(circle, rgba(179,101,58,0.20) 0%, rgba(179,101,58,0) 62%); }

.nyj-hero-grid { position: relative; z-index: 1; display: grid;
	grid-template-columns: 1fr 300px; gap: 52px; align-items: center; }

.nyj-hero-eyebrow { display: inline-block; font-size: 0.8rem; letter-spacing: 0.05em;
	color: #e3b394; margin: 0 0 16px; font-weight: 700;
	padding: 6px 0 6px 14px; border-left: 3px solid var(--copper); }
.nyj-hero h1 { font-size: 3.05rem; font-weight: 900; letter-spacing: -0.035em;
	margin: 0 0 16px; color: #fff; line-height: 1.18; }
.nyj-hero-sub { font-size: 1.02rem; color: #cdd8e0; max-width: 560px;
	margin: 0 0 28px; line-height: 1.85; }

.nyj-hero-note { font-size: 0.8rem; color: #9fadb9; margin: 12px 0 0; }

/* 히어로 좌측 하단 — 도구 바로가기 스트립 */
.nyj-hero-quick { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.nyj-hero-quick a { display: inline-flex; align-items: center; gap: 9px;
	padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
	color: #eef3f6; font-size: 0.85rem; font-weight: 700; text-decoration: none;
	transition: border-color 0.18s, background 0.18s; }
.nyj-hero-quick a:hover { border-color: var(--copper); background: rgba(179,101,58,0.14);
	color: #fff; }
.nyj-hero-quick a span { font-size: 0.7rem; font-weight: 800; color: #e3b394;
	letter-spacing: 0.04em; }

/* 히어로 우측 — 세로 스탯 스택 */
.nyj-hero-side { display: flex; flex-direction: column; gap: 12px; }
.nyj-side-stat { background: rgba(255,255,255,0.055);
	border: 1px solid rgba(255,255,255,0.15); border-left: 3px solid var(--copper);
	border-radius: 10px; padding: 16px 20px 14px; }
.nyj-side-stat strong { display: block; font-size: 1.32rem; font-weight: 800;
	color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.nyj-side-stat span { font-size: 0.78rem; color: #9fadb9; }

/* ── 버튼 ── */
.nyj-btn { display: inline-block; padding: 15px 34px; border-radius: 8px;
	font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
	border: none; font-family: inherit; transition: background 0.18s, border-color 0.18s; }
.nyj-btn-primary { background: var(--copper); color: #fff; }
.nyj-btn-primary:hover { background: var(--copper-deep); color: #fff; }
.nyj-btn-dark { background: var(--steel); color: #fff; }
.nyj-btn-dark:hover { background: var(--steel-soft); }

/* ── 본문 공통 ── */
.nyj-body { overflow-x: hidden; }
.nyj-main { padding: 26px 20px 0; }
.nyj-section { margin: 58px 0; }

/* 교차 배경 밴드 — 섹션 구분용 (컨테이너 밖까지 풀블리드) */
.nyj-band-alt { background: #eef2f5;
	border-top: 1px solid #e0e7ec; border-bottom: 1px solid #e0e7ec;
	margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
	padding: 50px calc(50vw - 50%) 56px; }

/* 마지막 섹션이 밴드면 푸터에 바로 밀착 (빈 배경 띠 제거)
   ※ :last-child 아님 — 섹션 뒤에 <script>가 붙어 있어 :last-of-type을 사용 */
.nyj-main > section.nyj-band-alt:last-of-type { margin-bottom: 0; border-bottom: none; }
.nyj-main > section.nyj-section:last-of-type:not(.nyj-band-alt) { margin-bottom: 64px; }
.nyj-section h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em;
	color: var(--steel); margin: 0 0 14px; }
.nyj-section h2::before { content: ""; display: block; width: 44px; height: 5px;
	border-radius: 3px; background: var(--copper); margin-bottom: 12px; }
.nyj-section h3 { font-size: 1.13rem; font-weight: 700; color: var(--ink);
	margin: 30px 0 10px; }
.nyj-section > p { margin: 0 0 16px; color: var(--ink-mid); }
.nyj-section strong { color: var(--ink); }

/* 근거 캡션 (E-E-A-T 신호) */
.nyj-source { font-size: 0.78rem; color: var(--ink-light); margin-top: 14px;
	padding-left: 10px; border-left: 3px solid var(--line); line-height: 1.6; }

/* ── 표 ── */
.nyj-table-wrap { overflow-x: auto; margin: 12px 0 6px; border: 1px solid var(--line);
	border-radius: 10px; background: var(--card); }
.nyj-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 480px; }
.nyj-table th { text-align: left; font-weight: 700; color: var(--steel);
	background: #f1f4f6; padding: 12px 16px; border-bottom: 1px solid var(--line);
	font-size: 0.85rem; letter-spacing: 0.02em; }
.nyj-table td { padding: 13px 16px; border-bottom: 1px solid #edf0f2;
	color: var(--ink-mid); vertical-align: top; font-variant-numeric: tabular-nums; }
.nyj-table tr:last-child td { border-bottom: none; }
.nyj-table td strong { color: var(--steel); }

/* ── 조건 리스트 ── */
.nyj-cond article { background: var(--card); border: 1px solid var(--line);
	border-radius: 10px; padding: 24px 26px; margin-bottom: 14px;
	transition: border-color 0.18s; }
.nyj-cond article:hover { border-color: var(--copper); }
.nyj-cond h3 { margin: 0 0 8px; display: flex; align-items: center; gap: 12px; }
.nyj-cond p { margin: 0; font-size: 0.94rem; color: var(--ink-mid); }
.nyj-num { display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px; min-width: 30px; border-radius: 8px;
	background: var(--copper-soft); color: var(--copper-deep);
	font-size: 0.88rem; font-weight: 800; }

/* ── 한눈에 보기 (직답 블록) ── */
.nyj-glance-grid { display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 14px 28px; margin: 18px 0 6px; }
.nyj-glance-grid > div { border-left: 3px solid var(--copper);
	padding: 2px 0 2px 14px; }
.nyj-glance-grid dt { font-size: 0.8rem; font-weight: 800; color: var(--copper-deep);
	margin-bottom: 3px; }
.nyj-glance-grid dd { margin: 0; font-size: 0.92rem; color: var(--ink-mid);
	line-height: 1.65; }
.nyj-glance-grid dd a { font-weight: 700; }

@media (max-width: 640px) {
	.nyj-glance-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── 머천트 카드 (상담 사무소 — 배너 이미지형 그리드)
     정사각 1080x1080 이미지 6장 기준 3열 배치 (네이버 이미지 스트립 노림) ── */
.nyj-partners { display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 18px; margin-top: 18px; align-items: start; }
.nyj-partner { display: flex; flex-direction: column; overflow: hidden;
	background: var(--card); border: 1px solid var(--line); border-radius: 12px;
	transition: border-color 0.18s, box-shadow 0.18s; }
.nyj-partner:hover { border-color: var(--copper);
	box-shadow: 0 10px 26px rgba(47,62,74,0.08); }

.nyj-partner-img { display: block; width: 100%; background: #f1f4f6;
	border-bottom: 1px solid var(--line); }
.nyj-partner-img img { display: block; width: 100%; height: auto;
	max-height: 360px; object-fit: cover; object-position: center top; }
/* 정사각 카드 세트(1080x1080)는 비율 그대로 노출됨 (230~280px 폭에서 크롭 없음) */

.nyj-partner-body { display: flex; flex-direction: column; gap: 3px;
	padding: 16px 18px 4px; }
.nyj-partner-body strong { font-size: 1.02rem; color: var(--ink);
	letter-spacing: -0.01em; font-weight: 800; }
.nyj-partner-body small { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; }

.nyj-partner-btn { display: block; margin: 14px 18px 18px; margin-top: auto;
	padding: 13px 20px; font-size: 0.92rem; text-align: center; border-radius: 9px; }
.nyj-partner-body + .nyj-partner-btn { margin-top: 14px; }

@media (max-width: 640px) {
	.nyj-partners { grid-template-columns: 1fr; }
	.nyj-partner-img img { max-height: 300px; }
}

/* ── 도구 블록 (자가진단/계산기) ── */
.nyj-tool-card { background: var(--card); border: 1px solid var(--line);
	border-top: 3px solid var(--copper); border-radius: 10px;
	padding: 28px; margin: 18px 0 6px; }

/* 자가진단 */
.nyj-check-list { list-style: none; margin: 0; padding: 0; counter-reset: q; }
.nyj-check-list li { display: flex; justify-content: space-between; align-items: center;
	gap: 16px; padding: 14px 4px; border-bottom: 1px solid #edf0f2;
	font-size: 0.94rem; counter-increment: q; }
.nyj-check-list li::before { content: counter(q, decimal-leading-zero);
	font-size: 0.75rem; font-weight: 700; color: var(--ink-light);
	font-variant-numeric: tabular-nums; }
.nyj-check-list li > span:first-of-type { flex: 1; }
.nyj-yn { display: flex; gap: 6px; }
.nyj-yn button { padding: 7px 16px; border: 1px solid var(--line); background: #fff;
	border-radius: 6px; font-family: inherit; font-size: 0.85rem; font-weight: 600;
	color: var(--ink-mid); cursor: pointer; transition: all 0.15s; }
.nyj-yn button:hover { border-color: var(--steel); color: var(--steel); }
.nyj-yn button.on { background: var(--steel); border-color: var(--steel); color: #fff; }

.nyj-check-result { margin-top: 22px; padding: 22px 24px; border-radius: 10px;
	background: var(--copper-soft); border: 1px solid #ecd9cb; }
.nyj-check-result h3 { margin: 0 0 8px; color: var(--copper-deep); font-size: 1.1rem; }
.nyj-check-result p { margin: 0 0 16px; font-size: 0.92rem; color: var(--ink-mid); }

/* 계산기 */
.nyj-calc-inputs { display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 16px; margin-bottom: 20px; }
.nyj-calc-inputs label span { display: block; font-size: 0.82rem; font-weight: 700;
	color: var(--ink); margin-bottom: 7px; }
.nyj-calc-inputs input, .nyj-calc-inputs select { width: 100%; padding: 12px 14px;
	border: 1px solid var(--line); border-radius: 8px; font-family: inherit;
	font-size: 0.98rem; background: #fff; color: var(--ink);
	font-variant-numeric: tabular-nums; }
.nyj-calc-inputs input:focus, .nyj-calc-inputs select:focus {
	outline: none; border-color: var(--steel); }

.nyj-calc-result { margin-top: 24px; padding-top: 22px; border-top: 1px dashed var(--line); }
.nyj-calc-result dl { display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 12px; margin: 0 0 20px; }
.nyj-calc-result dl > div { background: #f2f5f7; border-radius: 8px; padding: 14px 16px; }
.nyj-calc-result dt { font-size: 0.76rem; color: var(--ink-light); margin-bottom: 3px; }
.nyj-calc-result dd { margin: 0; font-size: 1.15rem; font-weight: 800; color: var(--ink);
	font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.nyj-calc-result dd.nyj-em { color: var(--copper-deep); }

.nyj-gauge { margin-bottom: 18px; }
.nyj-gauge-bar { height: 10px; background: #e6eaed; border-radius: 999px; overflow: hidden; }
.nyj-gauge-bar span { display: block; height: 100%; width: 0;
	background: linear-gradient(90deg, var(--copper), var(--copper-deep));
	border-radius: 999px; transition: width 0.6s ease; }
.nyj-gauge p { margin: 8px 0 0; font-size: 0.88rem; color: var(--ink-mid); }
.nyj-gauge strong { color: var(--copper-deep); font-size: 1.05rem;
	font-variant-numeric: tabular-nums; }

.nyj-calc-note { font-size: 0.85rem; color: var(--ink-mid); margin: 0 0 18px; }

/* ── 팁 리스트 ── */
.nyj-tips { list-style: none; margin: 12px 0 0; padding: 0; }
.nyj-tips li { position: relative; padding: 12px 0 12px 22px; font-size: 0.94rem;
	color: var(--ink-mid); border-bottom: 1px solid #edf0f2; }
.nyj-tips li:last-child { border-bottom: none; }
.nyj-tips li::before { content: ""; position: absolute; left: 2px; top: 21px;
	width: 7px; height: 7px; border-radius: 2px; background: var(--copper); }

/* ── 절차 5단계 (카드형 — 상단 카퍼 보더 + 단계 칩) ── */
.nyj-steps { list-style: none; margin: 20px 0 0; padding: 0; counter-reset: step; }
.nyj-steps li { position: relative; background: var(--card);
	border: 1px solid var(--line); border-top: 3px solid var(--copper);
	border-radius: 10px; padding: 20px 24px 18px 24px; margin-bottom: 14px;
	counter-increment: step; }
.nyj-steps li::before { content: counter(step) "단계"; display: inline-block;
	background: var(--copper-soft); color: var(--copper-deep);
	font-weight: 800; font-size: 0.76rem; letter-spacing: 0.03em;
	padding: 4px 11px; border-radius: 999px; margin-bottom: 8px; }
.nyj-steps h3 { margin: 2px 0 6px; font-size: 1.08rem; }
.nyj-steps p { margin: 0; font-size: 0.93rem; color: var(--ink-mid); }
.nyj-steps em { font-style: normal; color: var(--copper-deep); font-weight: 600; }

/* ── FAQ (details/summary) ── */
.nyj-faq details { background: var(--card); border: 1px solid var(--line);
	border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.nyj-faq summary { list-style: none; cursor: pointer; padding: 17px 46px 17px 20px;
	font-weight: 700; font-size: 0.97rem; color: var(--ink); position: relative;
	transition: background 0.15s; }
.nyj-faq summary::-webkit-details-marker { display: none; }
.nyj-faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%;
	transform: translateY(-50%); font-size: 1.3rem; font-weight: 400;
	color: var(--ink-light); transition: transform 0.2s; }
.nyj-faq details[open] summary::after { content: "−"; }
.nyj-faq summary:hover { background: #f2f5f7; }
.nyj-faq .nyj-q { color: var(--copper-deep); font-weight: 800; margin-right: 2px; }
.nyj-faq details p { margin: 0; padding: 0 20px 18px; font-size: 0.92rem;
	color: var(--ink-mid); }

/* ── 위성 글 (single.php) ── */
.nyj-topbar-post .nyj-home-link { font-size: 0.85rem; font-weight: 700;
	color: var(--steel); text-decoration: none; }
.nyj-topbar-post .nyj-home-link:hover { color: var(--copper-deep); }
.nyj-topbar-post { justify-content: space-between !important; }

.nyj-post-wrap { max-width: 800px; padding-top: 34px; }
.nyj-post-head { margin-bottom: 30px; padding-bottom: 22px;
	border-bottom: 2px solid var(--steel); }
.nyj-post-cat { display: inline-block; background: var(--copper-soft);
	color: var(--copper-deep); border: 1px solid #ecd9cb;
	font-size: 0.74rem; font-weight: 800; letter-spacing: 0.03em;
	padding: 5px 12px; border-radius: 999px; margin: 0 0 14px; }
.nyj-post-head h1 { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.025em;
	line-height: 1.4; color: var(--steel); margin: 0 0 12px; }
.nyj-post-meta { font-size: 0.8rem; color: var(--ink-light); margin: 0; }
.nyj-post-meta span { margin: 0 4px; }

/* 위성 글 대표 이미지 — 발행 파이프라인이 본문 최상단에 삽입하는 figure.
   네이버 이미지 수집 조건이므로 절대 display:none 처리하지 말 것 */
.nyj-entry-thumb { margin: 0 0 28px; }
.nyj-entry-thumb img { display: block; width: 100%; max-width: 440px; height: auto;
	border-radius: 12px; border: 1px solid var(--line); }

.nyj-post-body { font-size: 1rem; }
.nyj-post-body > p { margin: 0 0 18px; color: var(--ink-mid); line-height: 1.85; }
.nyj-post-body strong { color: var(--ink); }
.nyj-post-body h2 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
	color: var(--steel); margin: 40px 0 14px; padding-left: 12px;
	border-left: 4px solid var(--copper); }
.nyj-post-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink);
	margin: 26px 0 10px; }
.nyj-post-body table { width: 100%; border-collapse: collapse; margin: 12px 0 22px;
	font-size: 0.92rem; background: var(--card); }
.nyj-post-body ul, .nyj-post-body ol { margin: 0 0 18px 22px; color: var(--ink-mid); }
.nyj-post-body li { margin-bottom: 6px; }
.nyj-post-body a { color: var(--steel-soft); font-weight: 600;
	text-decoration: underline; text-underline-offset: 3px; }
.nyj-post-body a:hover { color: var(--copper-deep); }

.nyj-post-more { margin: 34px 0 20px; }
.nyj-post-more a { font-size: 0.92rem; font-weight: 700; color: var(--steel);
	text-decoration: none; }
.nyj-post-more a:hover { color: var(--copper-deep); }

@media (max-width: 720px) {
	.nyj-post-head h1 { font-size: 1.45rem; }
	.nyj-topbar-post .nyj-home-link { font-size: 0.78rem; }
	.nyj-entry-thumb img { max-width: 340px; }
	.nyj-arch-item.has-thumb { gap: 14px; }
	.nyj-arch-thumb { flex-basis: 84px; }
	.nyj-arch-thumb img { width: 84px; height: 84px; }
}

/* ── 아카이브 (카테고리 목록) ── */
.nyj-arch { display: flex; flex-direction: column; gap: 14px; }
.nyj-arch-item { background: var(--card); border: 1px solid var(--line);
	border-radius: 10px; padding: 22px 24px; transition: border-color 0.18s; }
.nyj-arch-item:hover { border-color: var(--copper); }
.nyj-arch-item.has-thumb { display: flex; gap: 20px; align-items: flex-start; }
.nyj-arch-thumb { flex: 0 0 116px; display: block; line-height: 0; }
.nyj-arch-thumb img { width: 116px; height: 116px; object-fit: cover;
	border-radius: 9px; border: 1px solid var(--line); }
.nyj-arch-body { flex: 1; min-width: 0; }
.nyj-arch-item h2 { margin: 0 0 6px; font-size: 1.12rem; font-weight: 800;
	letter-spacing: -0.015em; line-height: 1.45; border: none; padding: 0; }
.nyj-arch-item h2 a { color: var(--steel); text-decoration: none; }
.nyj-arch-item h2 a:hover { color: var(--copper-deep); }
.nyj-arch-meta { margin: 0 0 10px; font-size: 0.76rem; color: var(--ink-light);
	font-variant-numeric: tabular-nums; }
.nyj-arch-excerpt { margin: 0 0 12px; font-size: 0.9rem; color: var(--ink-mid);
	line-height: 1.75; }
.nyj-arch-more { font-size: 0.85rem; font-weight: 700; color: var(--steel);
	text-decoration: none; }
.nyj-arch-more:hover { color: var(--copper-deep); }

/* WP 기본 페이지네이션 스타일 */
.nyj-post-wrap .pagination { margin: 26px 0 50px; }
.nyj-post-wrap .nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.nyj-post-wrap .page-numbers { min-width: 36px; height: 36px; padding: 0 10px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--line); border-radius: 8px; background: var(--card);
	font-size: 0.88rem; font-weight: 700; color: var(--ink-mid); text-decoration: none;
	font-variant-numeric: tabular-nums; }
.nyj-post-wrap .page-numbers:hover { border-color: var(--steel); color: var(--steel); }
.nyj-post-wrap .page-numbers.current { background: var(--steel); border-color: var(--steel); color: #fff; }

/* ── 가이드 문서 목록 (위성 글 클러스터) ── */
.nyj-guides { list-style: none; margin: 16px 0 0; padding: 0;
	background: var(--card); border: 1px solid var(--line); border-radius: 10px; }
.nyj-guides li { display: flex; justify-content: space-between; align-items: center;
	gap: 14px; padding: 14px 18px; border-bottom: 1px solid #edf0f2; }
.nyj-guides li:last-child { border-bottom: none; }
.nyj-guides a { font-size: 0.95rem; font-weight: 600; text-decoration: none; }
.nyj-guides a:hover { color: var(--copper-deep); }
.nyj-guides time { font-size: 0.76rem; color: var(--ink-light);
	font-variant-numeric: tabular-nums; white-space: nowrap; }

/* 가이드 목록 페이지네이션 */
.nyj-guides-pager { display: flex; justify-content: center; gap: 6px;
	margin-top: 18px; flex-wrap: wrap; }
.nyj-guides-pager button { min-width: 36px; height: 36px; padding: 0 10px;
	border: 1px solid var(--line); border-radius: 8px; background: var(--card);
	font-family: inherit; font-size: 0.88rem; font-weight: 700; color: var(--ink-mid);
	cursor: pointer; font-variant-numeric: tabular-nums;
	transition: border-color 0.15s, color 0.15s; }
.nyj-guides-pager button:hover { border-color: var(--steel); color: var(--steel); }
.nyj-guides-pager button.on { background: var(--steel); border-color: var(--steel);
	color: #fff; }

/* ── 허브 페이지 보조 블록 (가상 사례 / 갱신 예고) ── */
.nyj-sample { background: var(--card); border: 1px solid var(--line);
	border-radius: 10px; padding: 18px 20px 16px; margin: 0 0 12px; }
.nyj-sample h4 { margin: 0 0 8px; font-size: 0.97rem; color: var(--steel); }
.nyj-sample p { margin: 0; font-size: 0.9rem; color: var(--ink-mid); }
.nyj-alert { background: var(--copper-soft); border: 1px solid #ecd9cb;
	border-radius: 10px; padding: 16px 20px; margin: 22px 0 0; }
.nyj-alert p { margin: 0; font-size: 0.9rem; color: var(--ink-mid); }
.nyj-alert strong { color: var(--copper-deep); }

/* ── 상담 섹션 ── */
.nyj-consult-frame { background: var(--card); border: 1px solid var(--line);
	border-radius: 10px; padding: 18px; }

/* ── 푸터 ── */
.nyj-footer { background: var(--steel); color: #9dabb6; padding: 40px 0 90px;
	font-size: 0.8rem; line-height: 1.8; }
.nyj-footer p { margin: 0 0 10px; }
.nyj-footer a { color: #cdd8e0; }
.nyj-footer-links { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.12);
	margin-bottom: 16px !important; }

/* ── 모바일 고정 CTA ── */
.nyj-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
	background: rgba(15, 37, 64, 0.97); backdrop-filter: blur(4px);
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid rgba(255,255,255,0.15); }
.nyj-sticky-cta a { display: block; max-width: 480px; margin: 0 auto; text-align: center;
	background: var(--copper); color: #fff; font-weight: 700; font-size: 0.98rem;
	padding: 13px; border-radius: 8px; text-decoration: none; }
.nyj-sticky-cta a:hover { background: var(--copper-deep); }

/* ── 반응형 ── */
@media (max-width: 960px) {
	.nyj-hero-grid { grid-template-columns: 1fr; gap: 34px; }
	.nyj-hero-side { flex-direction: row; max-width: 640px; }
	.nyj-side-stat { flex: 1; padding: 14px 16px 12px; }
}

@media (max-width: 720px) {
	.nyj-body { font-size: 15.5px; }
	.nyj-hero { padding: 46px 0 42px; }
	.nyj-hero h1 { font-size: 2.15rem; }
	.nyj-hero-side { flex-direction: column; gap: 10px; }
	.nyj-side-stat strong { font-size: 1.08rem; }
	.nyj-hero-quick a { padding: 9px 13px; font-size: 0.8rem; }
	/* ※ margin 단축 사용 금지 — .nyj-band-alt의 좌우 음수 마진(풀블리드)이 리셋됨 */
	.nyj-section { margin-top: 44px; margin-bottom: 44px; }
	.nyj-band-alt { padding-top: 38px; padding-bottom: 42px; }
	.nyj-section h2 { font-size: 1.4rem; }
	.nyj-calc-inputs { grid-template-columns: 1fr; }
	.nyj-calc-result dl { grid-template-columns: 1fr 1fr; }
	.nyj-check-list li { flex-wrap: wrap; }
	.nyj-check-list li > span:first-of-type { flex-basis: calc(100% - 30px); }
	.nyj-yn { margin-left: 30px; }
	.nyj-tool-card { padding: 20px 16px; }
	.nyj-topbar-inner { flex-direction: column; gap: 2px; align-items: flex-start; }
}
