/* =========================================================
   메인 추가 섹션: 주요 전달 소식 · 도시공동체본부 활동 · MOU · 약관
   ========================================================= */

/* 헤더 변형: 번호 없는 섹션 헤드 */
.section-head--plain { justify-content: space-between; align-items: flex-end; }

/* 제목 컬러(CI 3컬러 순환) — 번호 없이 제목만 다채롭게 */
.section-title.c-green { color: var(--ci-green-d); }
.section-title.c-blue { color: var(--ci-blue-d); }
.section-title.c-orange { color: var(--ci-orange-d); }
.section--dark .section-title.c-green { color: var(--ci-green); }
.section--dark .section-title.c-blue { color: #5cc6ee; }
.section--dark .section-title.c-orange { color: var(--ci-orange); }
.ms-h.c-green { color: var(--ci-green-d); border-bottom-color: var(--ci-green); }
.ms-h.c-blue { color: var(--ci-blue-d); border-bottom-color: var(--ci-blue); }
.ms-h.c-orange { color: var(--ci-orange-d); border-bottom-color: var(--ci-orange); }
/* 콘텐츠 페이지 소제목(.page-h) 자동 컬러 순환 */
.page-content .page-h:nth-of-type(3n+1) { color: var(--ci-green-d); }
.page-content .page-h:nth-of-type(3n+2) { color: var(--ci-blue-d); }
.page-content .page-h:nth-of-type(3n+3) { color: var(--ci-orange-d); }

/* 인사말 — 이사장 프로필 (배경과 경계 없이 페이드) */
.greet { display: grid; grid-template-columns: minmax(230px, 330px) 1fr; gap: clamp(14px, 3.5vw, 46px); align-items: center; }
.greet-photo { margin: 0; position: relative; }
.greet-photo img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: radial-gradient(ellipse 76% 84% at 50% 42%, #000 42%, rgba(0,0,0,0) 92%);
          mask-image: radial-gradient(ellipse 76% 84% at 50% 42%, #000 42%, rgba(0,0,0,0) 92%);
}
.greet-name { display: block; text-align: center; margin-top: -8px; color: var(--green-800); font-size: 1rem; }
.greet-name strong { font-size: 1.2rem; font-weight: 800; }
.greet-body .lead { margin-top: 0; }
@media (max-width: 720px) {
  .greet { grid-template-columns: 1fr; gap: 8px; }
  .greet-photo { max-width: 320px; margin: 0 auto; }
}

/* ===== 조직도 (구성도) ===== */
.orgchart { padding: 8px 0 4px; }
/* 상단 위계: 본부 → 이사회·상임대표 */
.oc-top { text-align: center; }
.oc-node { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 14px 26px; border-radius: 6px; font-weight: 800; color: #fff; line-height: 1.3; box-shadow: var(--shadow-sm); }
.oc-node small { display: block; font-weight: 600; font-size: .82rem; opacity: .92; margin-top: 3px; }
.oc-node--head { background: #1f3350; font-size: 1.18rem; padding: 18px 38px; }
.oc-node--board { background: var(--ci-orange); color: #3a2610; }
.oc-node--exec { background: var(--ci-blue); }
.oc-drop { width: 2px; height: 26px; background: #cbd5db; margin: 0 auto; }
.oc-gov { position: relative; display: flex; justify-content: center; align-items: center; gap: 120px; }
.oc-gov::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 240px; height: 2px; background: #cbd5db; z-index: 0; }
.oc-gov .oc-node { position: relative; z-index: 1; }
.oc-bus { height: 2px; background: #cbd5db; width: min(96%, 1080px); margin: 6px auto 24px; }

/* 부서 행 (간략 트리: 헤더 박스만, 사무국은 하위 직책) */
.oc-depts { display: flex; justify-content: center; align-items: flex-start; gap: 10px; }
.oc-dept { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.oc-head { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 60px; padding: 12px 8px; border-radius: 8px; font-weight: 800; font-size: .96rem; line-height: 1.28; color: #fff; box-shadow: var(--shadow-sm); }
.oc-head::before { content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 2px; height: 12px; background: #cbd5db; }
.oc-c-green { background: var(--ci-green-d); }
.oc-c-blue { background: var(--ci-blue-d); }
.oc-c-orange { background: var(--ci-orange-d); color: #3a2610; }
/* 사무국 하위 직책 */
.oc-subs { display: flex; flex-direction: column; gap: 10px; }
.oc-sub { border: 1.5px solid #cfd8dd; background: var(--paper); border-radius: 8px; padding: 11px; text-align: center; font-weight: 700; color: #33404a; }
.oc-caption { text-align: center; margin-top: 26px; color: var(--muted); font-size: .95rem; }
.oc-caption strong { color: var(--green-800); }

/* 6대 센터 카드 */
.centers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.center-card { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--ci-green); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.center-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.center-card--green { border-left-color: var(--ci-green); }
.center-card--orange { border-left-color: var(--ci-orange); }
.center-card--blue { border-left-color: var(--ci-blue); }
.center-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.center-num { font-size: .72rem; font-weight: 800; letter-spacing: .12em; color: var(--muted); }
.center-title { font-size: 1.32rem; color: var(--green-800); font-weight: 800; margin-top: 2px; }
.center-badge { flex: 0 0 auto; font-size: .76rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; color: #fff; white-space: nowrap; }
.cb-green { background: var(--ci-green-d); }
.cb-orange { background: var(--ci-orange-d); }
.cb-blue { background: var(--ci-blue-d); }
.center-axis { margin-top: 12px; font-weight: 700; font-size: .98rem; }
.center-card--green .center-axis { color: var(--ci-green-d); }
.center-card--orange .center-axis { color: var(--ci-orange-d); }
.center-card--blue .center-axis { color: var(--ci-blue-d); }
.center-desc { margin-top: 12px; background: var(--paper-warm); border-radius: 12px; padding: 14px 16px; font-size: .95rem; color: var(--ink-soft); line-height: 1.62; }
.center-list { margin: 16px 0 0; padding: 0; }
.center-list li { list-style: none; position: relative; padding: 9px 0 9px 18px; border-bottom: 1px solid var(--line); font-size: .93rem; color: var(--ink-soft); }
.center-list li:last-child { border-bottom: 0; }
.center-list li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--ci-green); }
.center-card--orange .center-list li::before { background: var(--ci-orange); }
.center-card--blue .center-list li::before { background: var(--ci-blue); }
.center-list strong { color: var(--green-800); display: block; margin-bottom: 1px; }

@media (max-width: 820px) { .centers { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .oc-bus { display: none; } .oc-head::before { display: none; } .oc-depts { flex-wrap: wrap; } .oc-dept { flex: 0 1 130px; } }
@media (max-width: 560px) { .oc-gov { gap: 30px; } .oc-gov::before { width: 96px; } .oc-node--head { font-size: 1.05rem; padding: 15px 24px; } }
.section-more { font-weight: 700; color: var(--green-600); white-space: nowrap; }
.section-more:hover { color: var(--gold-600); }

/* ---- 주요 전달 소식 (3박스) ---- */
.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brief-loading { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; }
.brief-card {
  display: flex; flex-direction: column; gap: 14px; min-height: 180px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.brief-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-500); }
.brief-badge { align-self: flex-start; font-size: .78rem; font-weight: 700; letter-spacing: .02em; padding: 6px 14px; border-radius: 999px; background: var(--ci-green-d); color: #fff; }
.brief-card--press .brief-badge { background: var(--ci-blue-d); }
.brief-card--business .brief-badge { background: var(--ci-orange-d); }
.brief-card--notice:hover { border-color: var(--ci-green); }
.brief-card--press:hover { border-color: var(--ci-blue); }
.brief-card--business:hover { border-color: var(--ci-orange); }
.brief-en { font-size: .7rem; letter-spacing: .18em; color: var(--muted); font-weight: 700; }
.brief-title { font-size: 1.12rem; font-weight: 700; color: var(--ink); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.brief-empty { color: var(--muted); font-weight: 500; }
.brief-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.brief-date { font-size: .88rem; color: var(--muted); }
.brief-arrow { color: var(--gold-600); font-weight: 700; }

/* ---- 도시공동체본부 활동 (이미지 카드) ---- */
.ucc-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ucc-card {
  display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.ucc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ucc-thumb { display: block; aspect-ratio: 4 / 3; background: var(--paper-alt) center/cover no-repeat; position: relative; }
.ucc-thumb--empty { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .84rem; background: linear-gradient(135deg, var(--paper-alt), #e8e4d8); }
.ucc-body { display: block; padding: 16px 18px; }
.ucc-date { display: block; }
/* 제목: 박스 폭을 넘으면 말줄임(...) 처리 */
.ucc-title {
  font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em;
}
.ucc-date { margin-top: 10px; font-size: .82rem; color: var(--muted); }
.ucc-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; }

/* ---- MOU 협력기관 롤링 ---- */
.mou { padding: clamp(48px, 7vw, 84px) 0; background: var(--paper-warm); overflow: hidden; }
.mou-title { text-align: center; font-size: clamp(1.3rem, 3.2vw, 1.8rem); color: var(--green-800); margin-bottom: 34px; display: flex; flex-direction: column; gap: 6px; }
.mou-title span { font-size: .72rem; letter-spacing: .2em; color: var(--muted); font-weight: 700; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; }
.partner {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  margin: 0 14px; padding: 18px 34px; border-radius: 14px; background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-weight: 700; color: var(--green-800); font-size: 1.05rem; letter-spacing: -0.01em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- 약관 링크바 ---- */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; padding-bottom: 24px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-legal a { font-size: .9rem; color: rgba(255,255,255,.82); font-weight: 500; }
.footer-legal a:hover { color: var(--gold-400); }
.footer-legal a strong { font-weight: 700; color: #fff; }
.footer-brand a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 2px; }
.footer-brand a:hover { color: var(--gold-400); }

/* ---- 소개/약관 페이지 콘텐츠 ---- */
.page-wrap { padding: clamp(40px, 6vw, 72px) var(--gutter); max-width: 900px; }
.page-content { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.85; }
.page-content .lead { font-size: 1.2rem; color: var(--green-800); font-weight: 600; margin-bottom: 22px; line-height: 1.6; }
.page-content p { margin-bottom: 16px; }
.page-content .sign { margin-top: 28px; font-weight: 700; color: var(--green-800); }
.page-h { font-size: 1.2rem; color: var(--green-800); margin: 30px 0 12px; }
.page-list { margin: 0 0 8px; padding: 0; }
.page-list li { position: relative; padding: 8px 0 8px 18px; border-bottom: 1px solid var(--line); }
.page-list li::before { content: "·"; position: absolute; left: 4px; color: var(--gold-600); font-weight: 700; }
.page-list a { color: var(--green-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.page-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 8px 0 8px; }
.page-cards--3 { grid-template-columns: repeat(3, 1fr); }
.page-card { padding: 24px; border-radius: var(--radius); background: var(--paper-warm); border: 1px solid var(--line); }
.page-card h3 { color: var(--gold-600); font-size: 1rem; margin-bottom: 10px; }
.page-card p { font-size: .96rem; }
.page-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 8px; padding: 0; }
.page-chips li { list-style: none; padding: 10px 18px; border-radius: 999px; background: var(--green-800); color: #fff; font-weight: 600; font-size: .9rem; }
.page-timeline { margin: 0; padding: 0; }
.page-timeline li { list-style: none; display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.page-timeline li span { font-weight: 800; color: var(--gold-600); }
.page-note { font-size: .9rem; color: var(--muted); margin-top: 16px; }
.page-ci { display: flex; align-items: center; gap: 26px; padding: 24px; border-radius: var(--radius); background: var(--paper-warm); border: 1px solid var(--line); margin-bottom: 8px; }
.page-ci img { width: 96px; height: auto; }
.page-ci h3 { color: var(--green-800); font-size: 1.1rem; margin-bottom: 8px; }
.page-map { margin-top: 18px; height: 200px; border-radius: var(--radius); background: linear-gradient(135deg, var(--paper-alt), #e6e2d6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); }
.page-map p { font-weight: 700; color: var(--green-800); margin: 0; }
.page-map span { font-size: .86rem; color: var(--muted); }

/* 네이버 지도 */
.naver-map { width: 100%; height: 380px; margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.naver-map--ph { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--paper-alt), #e6e2d6); }
.map-ph { text-align: center; display: flex; flex-direction: column; gap: 6px; padding: 24px; }
.map-ph strong { color: var(--green-800); font-size: 1.05rem; }
.map-ph span { font-size: .86rem; color: var(--muted); }
.map-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- 회원가입(멤버십) 상세 ---- */
.ms-wrap { max-width: 940px; }
.ms-block { margin-bottom: 48px; }
.ms-h { font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--green-800); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--green-800); }
.ms-lead { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.7; }
.grow-path { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; }
.grow-step { flex: 1 1 160px; background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.grow-step--accent { background: linear-gradient(160deg, var(--green-800), var(--green-700)); border-color: transparent; }
.grow-no { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-500); color: #23180a; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }
.grow-step strong { color: var(--green-800); font-size: 1.05rem; }
.grow-step em { font-style: normal; font-size: .85rem; color: var(--muted); }
.grow-step--accent strong { color: #fff; }
.grow-step--accent em { color: rgba(255,255,255,.82); }
.grow-arrow { display: flex; align-items: center; color: var(--gold-500); font-weight: 700; font-size: 1.2rem; }

.ms-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.ms-table { width: 100%; min-width: 520px; border-collapse: collapse; background: #fff; }
.ms-table th, .ms-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: center; font-size: .94rem; }
.ms-table thead th { background: var(--green-800); color: #fff; font-weight: 700; }
.ms-table tbody tr:last-child td { border-bottom: 0; }
.ms-table td:first-child, .ms-benefit td:first-child { text-align: left; }
.ms-cat { background: var(--paper-alt); font-weight: 700; color: var(--green-800); }
.ms-sub { color: var(--muted); font-size: .82rem; }
.ms-yes { color: var(--green-600); font-weight: 700; }
.ms-no { color: var(--muted); }
.ms-benefit td.o { color: var(--green-600); font-weight: 700; }
.ms-benefit td.d { color: var(--gold-600); font-weight: 700; }
.ms-benefit td.x { color: var(--muted); }
.ms-legend { margin-top: 12px; font-size: .9rem; color: var(--muted); }
.ms-legend .o { color: var(--green-600); font-weight: 700; }
.ms-legend .d { color: var(--gold-600); font-weight: 700; }
.ms-legend .x { color: var(--muted); font-weight: 700; }
.ms-notes { margin: 16px 0 0; padding: 0; }
.ms-notes li { list-style: none; position: relative; padding: 6px 0 6px 16px; font-size: .92rem; color: var(--ink-soft); }
.ms-notes li::before { content: "–"; position: absolute; left: 0; color: var(--gold-600); }
.ms-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; }
.ms-steps li { list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.ms-step-no { font-size: .8rem; font-weight: 800; color: var(--gold-600); letter-spacing: .1em; }
.ms-steps strong { color: var(--green-800); font-size: 1.05rem; }
.ms-steps em { font-style: normal; font-size: .85rem; color: var(--muted); }
.ms-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); max-width: 640px; }
.ms-form-card .write-grid { grid-template-columns: 1fr 1fr; }
.ms-notes-inline { margin-top: 14px; font-size: .88rem; color: var(--muted); }

/* 두잉새롬마당 슬라이드 캐러셀 */
.forum-wrap { max-width: 1040px; }
.slidebox { position: relative; }
.slidebox-track { display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: var(--radius); border: 1px solid var(--line); background: #0e2a20; scrollbar-width: none; }
.slidebox-track::-webkit-scrollbar { display: none; }
.slidebox-slide { flex: 0 0 100%; scroll-snap-align: center; margin: 0; }
.slidebox-slide img { display: block; width: 100%; height: auto; }
.slidebox-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--green-800); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s; }
.slidebox-btn:hover { background: #fff; }
.slidebox-prev { left: 12px; }
.slidebox-next { right: 12px; }
.slidebox-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.slidebox-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: background .2s, transform .2s; }
.slidebox-dot.active { background: var(--ci-green); transform: scale(1.25); }

/* =========================================================
   두잉새롬마당 (텍스트+아이콘 재편집)
   ========================================================= */
.fic { width: 26px; height: 26px; flex: 0 0 auto; }
.ficon { display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.ficon--green { background: var(--ci-green-d); }
.ficon--blue { background: var(--ci-blue-d); }
.ficon--orange { background: var(--ci-orange-d); }
.ficon--deep { background: var(--green-700); }
.f-intro { font-size: clamp(1.08rem, 2.4vw, 1.25rem); line-height: 1.75; color: var(--ink-soft); max-width: 900px; }
.f-intro strong { color: var(--green-700); }

/* 아이콘 카드 그리드 (배경/필요성) */
.ficard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ficard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.ficard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ficard .ficon { width: 50px; height: 50px; border-radius: 15px; margin-bottom: 18px; }
.ficard h4 { font-size: 1.08rem; color: var(--green-800); margin-bottom: 8px; }
.ficard p { font-size: .94rem; color: var(--ink-soft); line-height: 1.6; }

/* 이름·성격 3카드 (불릿 리스트) */
.fname-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fname-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.fname-card .fhead { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fname-card .ficon { width: 42px; height: 42px; border-radius: 12px; }
.fname-card h4 { font-size: 1.12rem; color: var(--green-800); }
.fname-list { margin: 0; padding: 0; }
.fname-list li { list-style: none; position: relative; padding: 9px 0 9px 18px; color: var(--ink-soft); font-size: .96rem; border-bottom: 1px solid var(--line); }
.fname-list li:last-child { border-bottom: 0; }
.fname-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--ci-green); }

/* 콜아웃 */
.fcallout { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fcallout .fc { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--gold-500); border-radius: 10px; padding: 16px 18px; font-size: .94rem; color: var(--ink-soft); }
.fcallout .fc strong { color: var(--green-800); }

/* 정의 표 */
.fdef { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fdef-row { display: flex; border-bottom: 1px solid var(--line); }
.fdef-row:last-child { border-bottom: 0; }
.fdef-row dt { flex: 0 0 180px; margin: 0; background: var(--paper-alt); font-weight: 700; color: var(--green-800); padding: 15px 22px; }
.fdef-row dd { margin: 0; padding: 15px 22px; color: var(--ink-soft); }
.fdef-row dd strong { color: var(--green-700); }

/* 핵심 가치 5개 */
.fvalues { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fvalue { text-align: center; padding: 28px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s; }
.fvalue:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fvalue .ficon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px; }
.fvalue .en { font-size: 1.02rem; font-weight: 800; color: var(--green-800); letter-spacing: .01em; }
.fvalue .ko { display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.fvalue p { font-size: .86rem; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; }

/* 아이덴티티 */
.fident-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fident-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.fident-card h4 { font-size: 1.05rem; color: var(--green-800); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.fident-card h4 .ficon { width: 34px; height: 34px; border-radius: 10px; }
.fident-card .row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
.fident-card .row:last-child { border-bottom: 0; }
.fident-card .row b { color: var(--green-800); font-weight: 700; flex: 0 0 auto; }
.fswatch { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.fswatch:last-child { border-bottom: 0; }
.fswatch i { width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.fswatch .sw-name { font-weight: 700; color: var(--green-800); }
.fswatch .sw-hex { font-size: .78rem; color: var(--muted); font-family: ui-monospace, monospace; }
.fswatch .sw-mean { margin-left: auto; font-size: .9rem; color: var(--ink-soft); text-align: right; }

/* 향후 추진 방향 */
.froadmap { display: flex; flex-direction: column; gap: 14px; }
.frow { display: flex; gap: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.frow .ficon { width: 50px; height: 50px; border-radius: 15px; }
.frow h4 { color: var(--green-800); font-size: 1.14rem; margin-bottom: 10px; }
.frow ul { margin: 0; padding: 0; }
.frow li { list-style: none; position: relative; padding: 4px 0 4px 18px; color: var(--ink-soft); font-size: .96rem; }
.frow li::before { content: "–"; position: absolute; left: 0; color: var(--gold-600); }

/* 비전 클로징 (dark) */
.fvision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fvtier { text-align: center; padding: 30px 22px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.fvtier .ficon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; }
.fvtier h4 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.fvtier p { color: rgba(255,255,255,.82); font-size: .92rem; }
.fvision-note { text-align: center; margin: 28px auto 0; color: rgba(255,255,255,.92); font-size: 1.06rem; line-height: 1.7; max-width: 860px; }

/* 두잉날 CTA */
.fmeet { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding: 14px 20px; background: rgba(255,255,255,.1); border-radius: 999px; align-self: flex-start; }
.fmeet .ficon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-500); color: #23180a; }
.fmeet strong { color: #fff; } .fmeet span { color: rgba(255,255,255,.8); font-size: .92rem; }

@media (max-width: 960px) {
  .ficard-grid { grid-template-columns: 1fr 1fr; }
  .fname-grid { grid-template-columns: 1fr; }
  .fcallout { grid-template-columns: 1fr; }
  .fvalues { grid-template-columns: repeat(2, 1fr); }
  .fident-grid { grid-template-columns: 1fr; }
  .fvision-grid { grid-template-columns: 1fr; }
  .fdef-row { flex-direction: column; }
  .fdef-row dt { flex-basis: auto; }
}
@media (max-width: 520px) {
  .ficard-grid { grid-template-columns: 1fr; }
  .fvalues { grid-template-columns: 1fr; }
  .frow { flex-direction: column; gap: 12px; }
}

/* 참여 CTA 밴드 */
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: linear-gradient(150deg, var(--green-800), var(--green-900)); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.cta-band h2 { font-size: clamp(1.3rem, 3.2vw, 1.9rem); color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); }
/* 딥그린 밴드 위 아웃라인 버튼: 배경과 같은 딥그린 텍스트 → 흰색 대비로 교정 */
.cta-band .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-ghost-dark:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .ms-steps { grid-template-columns: 1fr 1fr; }
  .grow-arrow { transform: rotate(90deg); align-self: center; }
  .ms-form-card .write-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) { .ms-steps { grid-template-columns: 1fr; } }

/* ---- 드롭다운 2단 (정회원 > 개인/기업·단체) ---- */
.submenu-group > a { color: var(--green-800); font-weight: 700; }
.submenu-sub { list-style: none; margin: 2px 0 4px; padding: 0; }
.submenu-sub li a { padding-left: 30px; position: relative; }
.submenu-sub li a::before { content: "–"; position: absolute; left: 16px; color: var(--muted); }

/* ---- 월간 교육 캘린더 ---- */
.cal-wrap { max-width: 1000px; }
.cal-head { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 20px; }
.cal-title { font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--green-800); font-variant-numeric: tabular-nums; }
.cal-nav { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--green-800); font-size: 1.4rem; }
.cal-nav:hover { border-color: var(--green-600); background: var(--paper-alt); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cal-dow { background: var(--green-800); color: #fff; text-align: center; padding: 10px 0; font-weight: 700; font-size: .9rem; }
.cal-dow--sun { color: #ffd0c4; }
.cal-dow--sat { color: #bfe0ff; }
.cal-cell { background: #fff; min-height: 98px; padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.cal-cell--empty { background: var(--paper-warm); }
.cal-day { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.cal-cell--sun .cal-day { color: #c0392b; }
.cal-cell--sat .cal-day { color: #2b6cb0; }
.cal-cell--today { outline: 2px solid var(--gold-500); outline-offset: -2px; }
.cal-cell--today .cal-day { color: var(--gold-600); }
.cal-event { font-size: .74rem; font-weight: 600; padding: 3px 6px; border-radius: 5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-event--esg { background: var(--green-600); }
.cal-event--rdc { background: #2b6cb0; }
.cal-event--etc { background: var(--gold-600); }
.cal-legend { display: flex; align-items: center; gap: 18px; margin-top: 18px; flex-wrap: wrap; font-size: .9rem; color: var(--ink-soft); }
.cal-legend .lg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.lg--esg { background: var(--green-600); }
.lg--rdc { background: #2b6cb0; }
.lg--etc { background: var(--gold-600); }
.cal-apply { margin-left: auto; font-weight: 700; color: var(--green-600); }

@media (max-width: 960px) {
  .brief-grid, .ucc-news-grid { grid-template-columns: 1fr; }
  .page-cards, .page-cards--3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cal-cell { min-height: 62px; padding: 5px; }
  .cal-day { font-size: .78rem; }
  .cal-event { font-size: .62rem; padding: 2px 4px; }
  .cal-dow { font-size: .78rem; }
}
@media (max-width: 560px) {
  .page-ci { flex-direction: column; text-align: center; }
  .page-timeline li { grid-template-columns: 1fr; gap: 4px; }
}

/* ===== 핵심 활동 방향 (3R: Renovation·Resilience·Region) ===== */
.pillars-intro { margin-top: 10px; color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 40em; }
.pillars-intro strong { color: var(--green-800); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }

/* 컬러 토큰(핀별 accent) */
.pillar--green  { --acc: var(--ci-green);  --acc-d: var(--ci-green-d);  --acc-tint: rgba(91,185,110,.14); }
.pillar--blue   { --acc: var(--ci-blue);   --acc-d: var(--ci-blue-d);   --acc-tint: rgba(34,169,224,.14); }
.pillar--orange { --acc: var(--ci-orange); --acc-d: var(--ci-orange-d); --acc-tint: rgba(251,168,62,.17); }

.pillar { display: flex; flex-direction: column; text-decoration: none; color: inherit; }

/* 상단: 아이콘 + 배지 + R 워드 + 태그라인 */
.pillar-head { text-align: center; padding: 4px 10px 22px; }
.pillar-emblem { position: relative; display: inline-block; line-height: 0; }
.pillar-ico { width: 60px; height: 60px; color: var(--acc); }
.pillar-badge {
  position: absolute; top: -10px; right: -18px;
  background: var(--acc-d); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .02em; padding: 5px 11px; border-radius: 999px; line-height: 1;
  box-shadow: var(--shadow-sm);
}
.pillar-word { margin-top: 14px; font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 800; letter-spacing: .04em; color: var(--ink); }
.pillar-word b { color: var(--acc); font-weight: 800; }
.pillar-tagline { margin-top: 10px; font-size: 1.12rem; font-weight: 700; color: var(--ink); }
.pillar-lede { margin-top: 8px; color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* 하단: 衣食住 카드 */
.pillar-body {
  flex: 1; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--acc);
  border-radius: var(--radius-lg); padding: 24px 24px 22px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.pillar:hover .pillar-body { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-title-row { display: flex; align-items: center; gap: 13px; }
.pillar-hanja {
  flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 12px; background: var(--acc-tint); color: var(--acc-d);
  font-size: 1.5rem; font-weight: 800;
}
.pillar-titles { display: flex; flex-direction: column; }
.pillar-ko { font-size: 1.2rem; font-weight: 800; color: var(--green-800); line-height: 1.2; }
.pillar-en { font-size: .8rem; font-weight: 700; color: var(--acc-d); letter-spacing: .01em; margin-top: 2px; }
.pillar-axis { margin-top: 18px; font-size: .93rem; color: var(--ink-soft); }
.pillar-axis b { color: var(--acc-d); font-weight: 800; margin-right: 8px; }
.pillar-note { margin-top: 8px; color: var(--muted); font-size: .9rem; line-height: 1.62; }
.pillar-goal {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  flex: 1; font-size: .96rem; font-weight: 600; color: var(--ink); line-height: 1.55;
}
.pillar-cta { margin-top: 16px; font-size: .95rem; font-weight: 800; color: var(--acc-d); display: inline-flex; align-items: center; gap: 7px; }
.pillar-cta i { font-style: normal; transition: transform .28s var(--ease); }
.pillar:hover .pillar-cta i { transform: translateX(5px); }

@media (max-width: 860px) { .pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }

/* ===== 햇빛소득마을 ===== */
.mv-icon--orange { background: rgba(251,168,62,.16); color: var(--ci-orange-d); }
.container--narrow { max-width: 820px; }

/* 추진 체계: 4주체 시계방향 순환 구조 */
.cycle { max-width: 760px; margin: 0 auto; }
.cyc-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.cyc-box { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--muted); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-sm); text-align: center; }
.cyc-box h3 { font-size: 1.16rem; color: var(--green-800); margin: 8px 0 6px; }
.cyc-box p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.cyc-tag { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .02em; padding: 4px 13px; border-radius: 999px; color: #fff; background: var(--muted); }
.cyc--green { border-top-color: var(--ci-green-d); } .cyc--green .cyc-tag { background: var(--ci-green-d); }
.cyc--blue { border-top-color: var(--ci-blue-d); } .cyc--blue .cyc-tag { background: var(--ci-blue-d); }
.cyc--orange { border-top-color: var(--ci-orange-d); } .cyc--orange .cyc-tag { background: var(--ci-orange-d); color: #3a2610; }
.cyc-h { font-size: 1.7rem; font-weight: 800; color: var(--ci-green); line-height: 1; }
.cyc-mid { display: flex; justify-content: space-between; padding: 10px 4px; }
.cyc-v { font-size: 1.7rem; font-weight: 800; color: var(--ci-green); line-height: 1; width: calc(50% - 20px); text-align: center; }
.cyc-v--up { color: var(--ci-orange); }

/* 추진 프로세스: 아이콘 가로 타임라인 */
.sprocess { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
.sprocess::before { content: ""; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: var(--line); z-index: 0; }
.sproc-step { position: relative; z-index: 1; text-align: center; }
.sproc-ico { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ci-green); color: var(--ci-green-d); box-shadow: var(--shadow-sm); }
.sproc-ico svg { width: 32px; height: 32px; }
.sproc-step:nth-child(2) .sproc-ico { border-color: var(--ci-blue); color: var(--ci-blue-d); }
.sproc-step:nth-child(3) .sproc-ico { border-color: var(--ci-orange); color: var(--ci-orange-d); }
.sproc-step:nth-child(4) .sproc-ico { border-color: var(--ci-green); color: var(--ci-green-d); }
.sproc-step:nth-child(5) .sproc-ico { border-color: var(--ci-orange); color: var(--ci-orange-d); }
.sproc-step-no { font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.sproc-step h3 { font-size: 1.02rem; color: var(--green-800); margin: 3px 0 5px; }
.sproc-step p { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }

/* 법적 근거 리스트 */
.law-list { display: grid; gap: 12px; }
.law-item { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--ci-green); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-sm); }
.law-ico { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: rgba(91,185,110,.14); color: var(--ci-green-d); font-size: 1.3rem; font-weight: 800; }
.law-name { display: block; font-weight: 800; color: var(--green-800); }
.law-name em { font-style: normal; color: var(--muted); font-weight: 700; font-size: .92em; }
.law-desc { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .93rem; line-height: 1.55; }

/* 당위성·타당성·지자체 카드 */
.sgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.scard { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--ci-green); border-radius: 14px; padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .24s var(--ease), box-shadow .24s var(--ease); }
.scard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.scard h4 { font-size: 1.06rem; color: var(--green-800); margin-bottom: 7px; }
.scard p { color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }
.sgrid--blue .scard { border-left-color: var(--ci-blue); }
.sgrid--orange .scard { border-left-color: var(--ci-orange); }
.sgrid--green .scard { border-left-color: var(--ci-green); }

/* 마무리 밴드 */
.solar-closing { margin-top: 34px; background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px; text-align: center; }
.solar-closing p { font-size: 1.06rem; line-height: 1.7; color: var(--ink); max-width: 52em; margin: 0 auto 22px; }
.solar-closing strong { color: var(--green-800); }

/* 지역 현황 요약 수치 */
.solar-totals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.stot { text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 12px; box-shadow: var(--shadow-sm); }
.stot-num { display: block; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--ci-green-d); font-variant-numeric: tabular-nums; line-height: 1; }
.stot-label { display: block; margin-top: 8px; font-size: .86rem; color: var(--muted); }

/* 전국 시·도 경계 지도 */
.kmap-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.kmap-svg { width: 100%; max-width: 560px; height: auto; display: block; }
.kregion { stroke: #fff; stroke-width: 1; cursor: pointer; transition: fill .2s var(--ease), filter .2s var(--ease); }
.kregion.is-prep { fill: #dbe1e6; }
.kregion.is-active { fill: var(--ci-orange); }
.kregion.is-live { fill: var(--ci-green-d); }
.kmap-svg a:hover .kregion { filter: brightness(1.08); stroke: var(--green-800); stroke-width: 1.6; }
.kmap-svg a:focus-visible .kregion { outline: none; stroke: var(--green-800); stroke-width: 2; }
.kregion-label { font-size: 13px; font-weight: 800; fill: #26333d; text-anchor: middle; pointer-events: none;
  paint-order: stroke; stroke: #fff; stroke-width: 2.6px; stroke-linejoin: round; }
.kregion-count { font-size: 10px; font-weight: 700; fill: #2b3a4a; text-anchor: middle; pointer-events: none;
  paint-order: stroke; stroke: #fff; stroke-width: 2.4px; stroke-linejoin: round; }
.kmap-legend { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; font-size: .88rem; color: var(--ink-soft); }
.kmap-legend li { display: flex; align-items: center; gap: 7px; }
.lg-dot { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.lg-dot.is-prep { background: #dfe4e8; } .lg-dot.is-active { background: var(--ci-orange); } .lg-dot.is-live { background: var(--ci-green-d); }

/* 지역 목록(보조) */
.region-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.region-row { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--muted); border-radius: 10px; text-decoration: none; color: var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.region-row:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.region-row.is-active { border-left-color: var(--ci-orange); }
.region-row.is-live { border-left-color: var(--ci-green-d); }
.rr-name { font-weight: 700; }
.rr-status { margin-left: auto; font-size: .8rem; color: var(--muted); }
.region-row.is-active .rr-status { color: var(--ci-orange-d); font-weight: 700; }
.region-row.is-live .rr-status { color: var(--ci-green-d); font-weight: 700; }
.rr-arrow { color: var(--muted); font-weight: 700; }

/* 지역 상세 */
.back-link { display: inline-block; margin-bottom: 20px; color: var(--muted); text-decoration: none; font-weight: 600; }
.back-link:hover { color: var(--ci-green-d); }
.region-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.region-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--green-800); }
.region-badge { font-size: .82rem; font-weight: 800; padding: 6px 14px; border-radius: 999px; color: #fff; background: var(--muted); }
.region-badge.is-prep { background: #97a3ad; }
.region-badge.is-active { background: var(--ci-orange-d); color: #3a2610; }
.region-badge.is-live { background: var(--ci-green-d); }
.region-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.rstat { text-align: center; background: var(--paper-warm); border-radius: 14px; padding: 20px 12px; }
.rstat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--ci-green-d); line-height: 1; font-variant-numeric: tabular-nums; }
.rstat-label { display: block; margin-top: 8px; font-size: .85rem; color: var(--muted); }
.region-summary { font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.6; margin: 8px 0 20px; }
.region-body { color: var(--ink-soft); line-height: 1.75; }
.region-empty { background: var(--paper-warm); border: 1px dashed var(--line); border-radius: 14px; padding: 30px 26px; text-align: center; }
.region-empty p { margin: 0; }
.region-empty-sub { margin-top: 8px !important; color: var(--muted); font-size: .95rem; }
.region-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

@media (max-width: 720px) {
  .solar-totals { grid-template-columns: repeat(2, 1fr); }
  .region-list { grid-template-columns: 1fr 1fr; }
  .kmap-svg { max-width: 440px; }
  /* 프로세스: 세로 스택 */
  .sprocess { grid-template-columns: 1fr; gap: 8px; max-width: 360px; margin-inline: auto; }
  .sprocess::before { display: none; }
  .sproc-step { display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 14px; text-align: left; }
  .sproc-ico { margin: 0; }
  .sproc-step h3 { margin-top: 2px; }
}
@media (max-width: 560px) {
  /* 순환 체계: 세로 흐름 */
  .cyc-row { grid-template-columns: 1fr; gap: 8px; }
  .cyc-h { transform: rotate(90deg); margin: 2px auto; }
  .cyc-mid { display: none; }
  .cycle .cyc-row + .cyc-row { margin-top: 8px; }
}
@media (max-width: 460px) { .region-list { grid-template-columns: 1fr; } .region-stats { grid-template-columns: 1fr; } }

/* 관리자: 햇빛소득마을 */
.solar-admin { display: flex; flex-direction: column; gap: 10px; }
.solar-admin-item { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); overflow: hidden; }
.solar-admin-item > summary { display: flex; align-items: center; gap: 12px; padding: 14px 18px; cursor: pointer; font-weight: 700; list-style: none; }
.solar-admin-item > summary::-webkit-details-marker { display: none; }
.solar-admin-item > summary::before { content: "▸"; color: var(--muted); transition: transform .2s; }
.solar-admin-item[open] > summary::before { transform: rotate(90deg); }
.sa-name { flex: 1; }
.sa-status { font-size: .76rem; font-weight: 800; padding: 3px 11px; border-radius: 999px; color: #fff; background: #97a3ad; }
.sa-status.sa-active { background: var(--ci-orange-d); color: #3a2610; }
.sa-status.sa-live { background: var(--ci-green-d); }
.sa-saved { font-size: .8rem; font-weight: 700; color: var(--ci-green-d); }
.solar-admin-item .admin-write { padding: 4px 18px 20px; }
.solar-admin-item textarea { width: 100%; }

/* ===== 함께하는 사람들 (임원진) ===== */
.exec { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.exec-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 18%;
  border-radius: 14px; display: block; box-shadow: var(--shadow); }
.exec-role { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px; background: var(--ci-green-d); color: #fff; }
.exec-name { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--green-800); margin: 12px 0 6px; }
.exec-tagline { font-size: 1.05rem; font-weight: 700; color: var(--gold-600); margin-bottom: 20px; }
.exec-careers { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.exec-careers li { display: flex; align-items: baseline; gap: 12px; color: var(--ink-soft); font-size: 1rem; line-height: 1.5; }
.ec-when { flex: 0 0 auto; width: 30px; height: 24px; display: grid; place-items: center; border-radius: 6px;
  background: var(--paper-warm); color: var(--muted); font-size: .78rem; font-weight: 800; }
.ec-when.ec-now { background: var(--ci-green-d); color: #fff; }

.directors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dir-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease); }
.dir-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* 사진(상임대표와 동일한 3:4 프레이밍) / 이니셜 플레이스홀더 */
.dir-photo { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-warm); }
.dir-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dir-photo--ph { display: grid; place-items: center; font-size: 3.4rem; font-weight: 800; color: #fff; }
.av-green { background: linear-gradient(135deg, var(--ci-green), var(--ci-green-d)); }
.av-orange { background: linear-gradient(135deg, var(--ci-orange), var(--ci-orange-d)); }
.av-blue { background: linear-gradient(135deg, var(--ci-blue), var(--ci-blue-d)); }
.dir-body { padding: 20px 22px 24px; }
.dir-name { font-size: 1.28rem; font-weight: 800; color: var(--green-800); }
.dir-title { font-size: .82rem; font-weight: 700; color: var(--muted); margin-left: 2px; }
.dir-spec { margin-top: 10px; color: var(--ink-soft); font-size: .93rem; line-height: 1.5; }
.dir-spec-label { display: inline-block; margin-right: 8px; font-size: .72rem; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; background: var(--ci-blue-d); color: #fff; }
.dir-careers { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.dir-careers li { display: flex; align-items: baseline; gap: 10px; color: var(--ink-soft); font-size: .93rem; line-height: 1.45; }
.dir-pos { margin-top: 10px; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.dir-note { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  color: var(--muted); font-size: .82rem; }

@media (max-width: 860px) { .directors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .exec { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .exec-photo img { max-width: 260px; }
  .exec-careers li { justify-content: flex-start; text-align: left; }
}
@media (max-width: 460px) { .directors { grid-template-columns: 1fr; } }

/* ===== ESG전문가과정 ===== */
/* 추진 흐름 (현황진단→개선→실행→성과관리) */
.esg-flow { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.esg-flow li { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 20px 18px; box-shadow: var(--shadow-sm); }
.esg-flow li::after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: var(--ci-green); font-weight: 800; font-size: 1.2rem; z-index: 1; }
.esg-flow li:last-child::after { display: none; }
.ef-no { font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--ci-green-d); }
.esg-flow h3 { font-size: 1.06rem; color: var(--green-800); margin: 4px 0 5px; }
.esg-flow p { font-size: .88rem; color: var(--ink-soft); line-height: 1.45; }

/* 모듈 카드 그리드 */
.esg-mods { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.esg-mod { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--ci-green); border-radius: 14px; padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .24s var(--ease), box-shadow .24s var(--ease); }
.esg-mod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.esg-mod--green { border-top-color: var(--ci-green); }
.esg-mod--blue { border-top-color: var(--ci-blue); }
.esg-mod-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.esg-mod-no { font-size: .82rem; font-weight: 800; letter-spacing: .06em; color: var(--muted); }
.esg-mod--green .esg-mod-no { color: var(--ci-green-d); }
.esg-mod--blue .esg-mod-no { color: var(--ci-blue-d); }
.esg-mod-title { font-size: 1.14rem; font-weight: 800; color: var(--green-800); }
.esg-mod-badge { margin-left: auto; font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; background: var(--ci-blue-d); color: #fff; }
.esg-mod-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.esg-mod-list li { position: relative; padding-left: 17px; font-size: .93rem; color: var(--ink-soft); line-height: 1.5; }
.esg-mod-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--ci-green); }
.esg-mod--blue .esg-mod-list li::before { background: var(--ci-blue); }
.esg-mod--feature { border-top-width: 3px; border: 1px solid var(--ci-blue); border-top: 3px solid var(--ci-blue-d); background: linear-gradient(180deg, rgba(34,169,224,.06), var(--paper) 60%); }

/* 차별성 */
.esg-diff { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.esg-diff-card { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--ci-orange); border-radius: 14px; padding: 22px 24px; box-shadow: var(--shadow-sm); }
.esg-diff-card h3 { font-size: 1.14rem; color: var(--green-800); margin-bottom: 8px; }
.esg-diff-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.62; }

@media (max-width: 860px) { .esg-flow { grid-template-columns: 1fr 1fr; } .esg-flow li:nth-child(2)::after { display: none; } .esg-diff { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .esg-flow { grid-template-columns: 1fr; } .esg-flow li::after { content: "↓"; right: 50%; top: auto; bottom: -12px; transform: translateX(50%); } .esg-flow li:nth-child(2)::after { display: block; } }

/* ESG 페이지 추가 요소 */
.esg-mods--3 { grid-template-columns: repeat(3, 1fr); }
.esg-creds { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.esg-creds li { font-size: .84rem; font-weight: 700; color: var(--green-800); background: var(--paper-warm);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; }
.esg-creds li::before { content: "✓ "; color: var(--ci-green-d); font-weight: 900; }
.esg-mod-list li.is-exam { font-weight: 800; color: var(--green-800); }
.esg-mod-list li.is-exam::before { width: 8px; height: 8px; background: var(--gold-500); }
.esg-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.esg-tracks .esg-diff-card { border-left-color: var(--ci-blue); }
@media (max-width: 820px) { .esg-mods--3 { grid-template-columns: 1fr; } .esg-tracks { grid-template-columns: 1fr; } }

/* ===== 문의폼 허니팟 (봇 차단, 화면 숨김) ===== */
.cf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ===== 관리자: 관리 허브 ===== */
.admin-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.hub-card { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-500); }
.hub-ico { font-size: 1.5rem; line-height: 1; }
.hub-name { font-weight: 800; color: var(--green-800); font-size: 1.05rem; }
.hub-meta { font-size: .86rem; color: var(--muted); }
.hub-new { color: var(--ci-orange-d); }
.admin-section-title { font-size: 1.15rem; font-weight: 800; color: var(--green-800); margin: 6px 0 14px; }

/* ===== 관리자: 문의 목록 ===== */
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; gap: 16px; justify-content: space-between; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--muted); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.contact-item.ct-new { border-left-color: var(--ci-orange); }
.contact-item.ct-seen { border-left-color: var(--ci-blue); }
.contact-item.ct-done { border-left-color: var(--ci-green); opacity: .82; }
.ct-main { min-width: 0; flex: 1; }
.ct-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ct-status { font-size: .74rem; font-weight: 800; padding: 3px 11px; border-radius: 999px; color: #fff; }
.ct-badge-new { background: var(--ci-orange-d); color: #3a2610; }
.ct-badge-seen { background: var(--ci-blue-d); }
.ct-badge-done { background: var(--ci-green-d); }
.ct-topic { font-weight: 700; color: var(--green-800); }
.ct-date { margin-left: auto; font-size: .82rem; color: var(--muted); }
.ct-msg { margin: 12px 0 10px; color: var(--ink-soft); line-height: 1.6; }
.ct-from { font-size: .9rem; color: var(--muted); }
.ct-from strong { color: var(--ink); }
.ct-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex: 0 0 auto; }
.ct-actions select { padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }

/* ===== 관리자: 회원 목록 ===== */
.member-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.mstat { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: .9rem; color: var(--ink-soft); }
.mstat b { color: var(--green-800); }
.member-search { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.member-search input { flex: 1; min-width: 200px; max-width: 380px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 8px; }
.member-scroll { overflow-x: auto; }
.member-list { min-width: 760px; }
.member-list .admin-list-head, .member-list .admin-row { grid-template-columns: 80px 90px 1fr 120px 130px 96px 64px; }
.member-list .col-memail a { color: var(--ink); }
.member-list .col-mdate { font-size: .84rem; color: var(--muted); }

@media (max-width: 820px) {
  .admin-hub { grid-template-columns: 1fr 1fr; }
  .contact-item { flex-direction: column; }
  .ct-actions { flex-direction: row; align-items: center; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .admin-hub { grid-template-columns: 1fr 1fr; }
  /* 회원 표: 가로 스크롤 유지(모바일 area 붕괴 방지) */
  .member-list .admin-list-head { display: grid; }
  .member-list .admin-row { grid-template-areas: none; }
}

/* ===== 주요과정소개 (courses) ===== */
.course-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.course-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--ci-green); border-radius: 16px; padding: 30px 32px; box-shadow: var(--shadow-sm); transition: transform .26s var(--ease), box-shadow .26s var(--ease); }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.course-card--green { border-top-color: var(--ci-green-d); }
.course-card--orange { border-top-color: var(--ci-orange-d); }
.course-en { font-size: .74rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.course-title { font-size: 1.5rem; font-weight: 800; color: var(--green-800); margin: 6px 0 12px; }
.course-lede { color: var(--ink-soft); line-height: 1.62; margin-bottom: 18px; }
.course-points { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.course-points li { position: relative; padding-left: 74px; font-size: .96rem; color: var(--ink-soft); line-height: 1.5; }
.course-points li strong { position: absolute; left: 0; top: 0; width: 60px; font-size: .74rem; font-weight: 800; color: #fff; text-align: center; padding: 3px 0; border-radius: 999px; background: var(--ci-green-d); }
.course-card--orange .course-points li strong { background: var(--ci-orange-d); color: #3a2610; }
.course-more { align-self: flex-start; margin-top: auto; }

/* 공통 안내 */
.course-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ci-item { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); }
.ci-ico { font-size: 1.7rem; line-height: 1; }
.ci-item h3 { font-size: 1.1rem; color: var(--green-800); }
.ci-item p { color: var(--ink-soft); font-size: .93rem; line-height: 1.55; flex: 1; }
.ci-item .btn { margin-top: 6px; }

@media (max-width: 820px) { .course-cards { grid-template-columns: 1fr; } .course-info { grid-template-columns: 1fr; } }

/* ===== 관리자: 트래픽 통계 ===== */
.stat-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:26px}
.statc{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);padding:20px 22px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:4px}
.statc--accent{background:linear-gradient(150deg,var(--green-800),var(--green-900));border-color:transparent}
.statc-k{font-size:.82rem;color:var(--muted);font-weight:700}
.statc--accent .statc-k{color:rgba(255,255,255,.8)}
.statc-v{font-size:2rem;font-weight:800;color:var(--green-800);line-height:1;font-variant-numeric:tabular-nums}
.statc--accent .statc-v{color:#fff}
.statc-u{font-size:.74rem;color:var(--faint,var(--muted));font-family:ui-monospace,monospace;letter-spacing:.04em}
.statc--accent .statc-u{color:rgba(255,255,255,.7)}

.panel{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);padding:22px 24px;box-shadow:var(--shadow-sm);margin-bottom:20px}
.panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.panel-head h2{font-size:1.12rem;font-weight:800;color:var(--green-800)}
.panel-note{margin-top:14px;font-size:.82rem;color:var(--muted);line-height:1.5}
.panel-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}

.seg{display:inline-flex;background:var(--paper-warm);border:1px solid var(--line);border-radius:999px;padding:3px}
.seg-btn{border:0;background:transparent;color:var(--muted);font-weight:700;font-size:.85rem;padding:6px 15px;border-radius:999px;cursor:pointer}
.seg-btn.on{background:var(--ci-green-d);color:#fff}

.chart svg{width:100%;height:auto;display:block}
.chart .cbar{fill:var(--ci-green-d);transition:fill .15s}
.chart .cbar:hover{fill:var(--ci-green)}
.chart .cg{stroke:var(--line);stroke-width:1}
.chart .cyl{fill:var(--muted);font-size:10px;text-anchor:end;font-family:ui-monospace,monospace}
.chart .cxl{fill:var(--muted);font-size:10px;text-anchor:middle;font-family:ui-monospace,monospace}

.donut-wrap{display:flex;align-items:center;gap:26px;flex-wrap:wrap}
.donut{width:150px;height:150px;border-radius:50%;flex:0 0 auto;display:grid;place-items:center}
.donut-hole{width:96px;height:96px;background:var(--paper);border-radius:50%;display:grid;place-items:center;text-align:center}
.donut-hole b{font-size:1.4rem;font-weight:800;color:var(--green-800);line-height:1;font-variant-numeric:tabular-nums}
.donut-hole span{font-size:.72rem;color:var(--muted)}
.donut-legend{list-style:none;margin:0;padding:0;display:grid;gap:9px;flex:1;min-width:180px}
.donut-legend li{display:flex;align-items:center;gap:10px;font-size:.92rem}
.donut-legend .lg-sw{width:12px;height:12px;border-radius:3px;flex:0 0 auto}
.donut-legend .lg-name{font-weight:700;color:var(--ink)}
.donut-legend .lg-val{margin-left:auto;color:var(--muted);font-variant-numeric:tabular-nums}
.donut-legend .lg-val em{font-style:normal;font-size:.85em}
.donut-legend .muted{color:var(--muted)}

.toplist{list-style:none;margin:0;padding:0;display:grid;gap:12px}
.toplist .muted{color:var(--muted)}
.tl-row{display:flex;justify-content:space-between;gap:10px;font-size:.9rem;margin-bottom:5px}
.tl-name{color:var(--ink);font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tl-val{color:var(--muted);font-variant-numeric:tabular-nums;flex:0 0 auto}
.tl-bar{height:8px;background:var(--paper-warm);border-radius:999px;overflow:hidden}
.tl-bar span{display:block;height:100%;background:linear-gradient(90deg,var(--ci-blue),var(--ci-blue-d));border-radius:999px}

.devbar{display:flex;height:36px;border-radius:9px;overflow:hidden;border:1px solid var(--line)}
.devbar span{display:flex;align-items:center;justify-content:center;color:#fff;font-size:.8rem;font-weight:700;min-width:0}
.devbar .dev-m{background:var(--ci-orange-d);color:#3a2610}
.devbar .dev-d{background:var(--ci-green-d)}
.dev-legend{display:flex;gap:22px;margin-top:12px;font-size:.9rem;color:var(--muted)}
.dev-legend b{color:var(--green-800)}

@media (max-width:820px){
  .stat-cards{grid-template-columns:1fr 1fr}
  .panel-grid{grid-template-columns:1fr}
}

/* ===== 회원 등급·회비 배지 ===== */
.grade-badge { display: inline-block; font-size: .76rem; font-weight: 800; padding: 3px 11px; border-radius: 999px; line-height: 1.5; }
.grade-full { background: var(--ci-green-d); color: #fff; }
.grade-assoc { background: var(--paper-warm); color: var(--ink-soft); border: 1px solid var(--line); }
.fee-badge { display: inline-block; font-size: .74rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; line-height: 1.5; }
.fee-ok { background: #e7f4ec; color: #1c7a45; }
.fee-no { background: #fdecec; color: #b4232a; }

/* ===== 마이페이지 ===== */
.mypage-card { max-width: 720px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 30px 34px; box-shadow: var(--shadow-sm); }
.mypage-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 22px; }
.mypage-id { display: flex; align-items: center; gap: 16px; }
.mypage-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ci-green-d); color: #fff; display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; flex-shrink: 0; }
.mypage-name { font-size: 1.35rem; font-weight: 800; color: var(--green-900); margin: 0 0 8px; }
.mypage-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.mypage-notice { background: var(--paper-warm); border: 1px solid var(--line); border-left: 4px solid var(--ci-orange); border-radius: 10px; padding: 14px 16px; font-size: .92rem; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.6; }
.mypage-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 0; }
.mypage-info > div { display: flex; flex-direction: column; gap: 3px; }
.mypage-info .mypage-info-full { grid-column: 1 / -1; }
.mypage-info dt { font-size: .8rem; color: var(--muted); font-weight: 600; }
.mypage-info dd { margin: 0; font-size: .98rem; color: var(--ink); font-weight: 600; }
.mypage-sub { font-size: .82rem; color: var(--muted); font-weight: 400; }
.mypage-actions { display: flex; gap: 10px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.mypage-h { font-size: 1.1rem; font-weight: 800; color: var(--green-900); margin: 0 0 18px; }
.mypage-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; align-items: start; }
.mypage-edit-grid .mypage-card { max-width: none; }
.field--gate { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.field--gate label { color: var(--green-800); }
.addr-row { display: flex; gap: 8px; }
.addr-row input { flex: 1; min-width: 0; }
.addr-row input[readonly] { background: var(--paper-warm); cursor: pointer; }
.addr-row .btn { flex-shrink: 0; white-space: nowrap; }

/* ===== 관리자: 회원 카드 ===== */
.member-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.mcard { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: var(--paper); display: flex; flex-direction: column; gap: 13px; box-shadow: var(--shadow-sm); }
.mcard-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.mcard-name { font-weight: 800; font-size: 1.05rem; color: var(--green-900); }
.mcard-name .mcard-mail { display: block; font-size: .82rem; font-weight: 500; color: var(--muted); margin-top: 2px; }
.mcard-badges { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
.mcard-meta { display: flex; flex-direction: column; gap: 5px; font-size: .88rem; color: var(--ink-soft); }
.mcard-meta span b { color: var(--muted); font-weight: 600; margin-right: 8px; display: inline-block; min-width: 52px; }
.mcard-foot { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; border-top: 1px dashed var(--line); padding-top: 12px; }
.mcard-foot form { display: inline-flex; align-items: center; gap: 8px; margin: 0; }
.fee-check { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--ink-soft); font-weight: 600; cursor: pointer; }
.fee-check input { width: 16px; height: 16px; accent-color: var(--ci-green-d); }
.mcard-foot .linkbtn-danger { margin-left: auto; }
.member-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
a.seg-btn { display: inline-block; text-decoration: none; }
.member-toolbar .member-search { margin-bottom: 0; }

/* ===== 관리자: 회원 목록(테이블) ===== */
.member-section { margin-bottom: 30px; }
.member-sec-h { display: flex; align-items: center; gap: 10px; font-size: 1.02rem; font-weight: 800; color: var(--green-900); margin: 0 0 12px; }
.member-sec-h .grade-badge { font-size: .82rem; }
.member-sec-note { font-size: .85rem; font-weight: 500; color: var(--muted); }
.member-sec-count { margin-left: auto; font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.member-table { min-width: 860px; }
.member-table .board-tag { font-size: .76rem; }
.member-row { cursor: pointer; }
.member-name a { color: var(--green-900); font-weight: 700; text-decoration: none; }
.member-name a:hover { text-decoration: underline; }

/* ===== 관리자: 회원 상세 ===== */
.member-detail { max-width: 760px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px 32px; box-shadow: var(--shadow-sm); }
.member-detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.member-detail-info { margin-bottom: 4px; }
.member-detail-actions { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.member-approve { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0; }
.member-full-note { font-size: .95rem; color: var(--ink-soft); background: var(--paper-warm); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.member-detail-links { display: flex; gap: 14px; }
.member-detail-links form, .member-delete { margin: 0; }
.member-delete { margin-top: 6px; }
.member-biz { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 20px; }
.member-biz-h { font-size: 1rem; font-weight: 800; color: var(--green-900); margin: 0 0 14px; }
.member-biz-logo { max-width: 180px; max-height: 90px; border: 1px solid var(--line); border-radius: 8px; padding: 6px; background: #fff; }

/* ===== 관리자: 접속기록(IP 로그) ===== */
.log-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .9rem; }
.log-table th, .log-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.log-table thead th { background: var(--paper-warm); color: var(--ink-soft); font-weight: 700; font-size: .82rem; position: sticky; top: 0; }
.log-table tbody tr:hover { background: var(--paper-warm); }
.log-time { color: var(--muted); font-variant-numeric: tabular-nums; }
.log-ip { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: var(--green-800); font-weight: 600; }
.log-path { max-width: 320px; overflow: hidden; text-overflow: ellipsis; }
.log-vid { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: var(--muted); }
.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.pager-info { font-size: .9rem; color: var(--muted); }
@media (max-width: 720px) {
  .mypage-info { grid-template-columns: 1fr; }
  .mypage-edit-grid { grid-template-columns: 1fr; }
  .member-cards { grid-template-columns: 1fr; }
}

/* ===== 문화예술과학융합 (convergence) ===== */
.conv-hero { padding: 72px 0 60px; }
.conv-hero .page-banner-title { max-width: 920px; line-height: 1.28; }
.conv-hero .page-banner-desc { max-width: 760px; }
.banner-cta { margin-top: 28px; position: relative; z-index: 1; }
.conv-vision { margin: 32px 0 0; padding: 24px 28px; border-radius: 16px;
  background: linear-gradient(120deg, var(--green-800), var(--green-900)); color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem); font-weight: 700; line-height: 1.55;
  text-align: center; box-shadow: var(--shadow-sm); }
.conv-vision-tag { display: inline-block; margin-right: 12px; font-size: .7rem; letter-spacing: .14em;
  font-weight: 800; color: var(--gold-400); vertical-align: middle; }
.conv-table .ms-cat { font-weight: 800; color: var(--green-800); white-space: nowrap; }
.conv-ko { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); margin-top: 2px; }

/* ===== 관리자: 보안 모니터링 ===== */
.sec-banner { margin: 4px 0 26px; padding: 15px 18px; border-radius: 12px; font-size: .95rem; line-height: 1.6; border: 1px solid var(--line); }
.sec-banner--ok { background: #eef7f0; border-color: #cfe6d6; color: #1c6b3e; }
.sec-banner--warn { background: #fdf0e7; border-color: #f4d3b8; color: #a5521a; }
.sec-h { font-size: 1.15rem; font-weight: 800; color: var(--green-900); margin: 30px 0 14px; }
.sec-h-note { font-size: .82rem; font-weight: 500; color: var(--muted); }
.sec-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.sec-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: var(--paper); box-shadow: var(--shadow-sm); }
.sec-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sec-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-800); margin: 0 0 8px; }
.sec-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 10px; }
.sec-action { font-size: .86rem; color: var(--ink); line-height: 1.5; margin: 0; padding-top: 10px; border-top: 1px dashed var(--line); }
.sec-action strong { color: var(--ci-green-d); margin-right: 6px; }
.sec-count { font-size: .82rem; font-weight: 700; color: var(--muted); }
.sev-badge { display: inline-block; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.sev-low { background: #e7f4ec; color: #1c7a45; }
.sev-mid { background: #fdf1e3; color: #b5701a; }
.sev-high { background: #fdeaea; color: #b4232a; }
.cat-tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin: 1px 0; }
.cat-tag.sev-low { background: #eef4f0; color: #2c7a4e; }
.cat-tag.sev-mid { background: #fbf0e2; color: #a5691f; }
.cat-tag.sev-high { background: #fbe6e6; color: #a5262c; }
.sec-guide ol { margin: 0; padding-left: 20px; display: grid; gap: 12px; }
.sec-guide li { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.sec-guide li strong { color: var(--green-800); }
.sec-pre { margin: 10px 0 0; padding: 14px 16px; background: #10231b; color: #d6e5dd; border-radius: 10px; font-size: .82rem; line-height: 1.5; overflow-x: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.sec-code { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; font-size: .84rem; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ===== 뉴스레터: 홈 '주요 최근 소식' 피처 ===== */
.brief-grid--feature { display: block; }
.brief-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
@media (max-width: 820px) { .brief-cards { grid-template-columns: 1fr; } }
.nl-feature { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 30px 34px;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease); }
.nl-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.nl-feature-text { display: flex; flex-direction: column; min-width: 0; }
.nl-feature-badge { align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  color: #fff; background: var(--ci-green-d); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.nl-feature-title { font-size: clamp(1.2rem, 2.6vw, 1.5rem); font-weight: 800; color: var(--green-900);
  line-height: 1.35; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-feature-summary { font-size: .98rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }
.nl-content { line-height: 1.75; white-space: normal; }
.nl-feature-foot { margin-top: auto; padding-top: 16px; font-size: .86rem; font-weight: 700; color: var(--muted); }
.nl-feature-foot .brief-arrow { color: var(--gold-500); }
.nl-feature-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nl-feature-img { border-radius: 12px; background: var(--paper-warm) center/cover no-repeat; min-height: 180px; }

/* ===== 뉴스레터 목록 페이지 ===== */
.nl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.nl-item { display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow-sm); }
.nl-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nl-img { aspect-ratio: 3 / 2; border-radius: 8px; background: var(--paper-warm) center/cover no-repeat; }
.nl-body { min-width: 0; }
.nl-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; font-size: .8rem; color: var(--muted); }
.nl-kw { font-weight: 800; color: var(--ci-green-d); background: #eef4f0; padding: 2px 9px; border-radius: 999px; }
.nl-src { font-weight: 600; color: var(--ink-soft); }
.nl-title { font-size: 1.12rem; font-weight: 800; color: var(--green-900); line-height: 1.4; margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-summary { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-link { font-size: .88rem; font-weight: 700; color: var(--gold-600); text-decoration: none; }
.nl-link:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .nl-feature { grid-template-columns: 1fr; gap: 20px; }
  .nl-feature-imgs { grid-template-columns: 1fr 1fr; }
  .nl-feature-img { min-height: 130px; }
  .nl-item { grid-template-columns: 1fr; }
  .nl-imgs { max-width: 320px; }
}

/* ===== 뉴스레터: 게시판형 목록 테이블 ===== */
.post-list--nl .post-list-head, .post-list--nl .post-row { grid-template-columns: 60px 1fr 140px 104px 100px 60px; }
.post-list--nl .col-src { color: var(--ink-soft); font-size: .9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-list--nl .col-kw .nl-kw { font-size: .74rem; }
.post-list--nl .col-date { color: var(--muted); font-size: .86rem; }
@media (max-width: 760px) {
  .post-list--nl .post-row { grid-template-columns: 1fr auto; grid-template-areas: "title kw" "src date"; gap: 4px 10px; }
  .post-list--nl .col-no { display: none; }
  .post-list--nl .col-title { grid-area: title; }
  .post-list--nl .col-kw { grid-area: kw; text-align: right; display: block; }
  .post-list--nl .col-src { grid-area: src; display: inline; }
  .post-list--nl .col-date { grid-area: date; text-align: right; display: inline; }
  .post-list--nl .col-views { display: none; }
}
/* 뉴스레터 상세 */
.nl-view-tags { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.nl-view-src { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.nl-view-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.nl-view-imgs .post-image { margin: 0; }
.nl-view-img { display: block; width: 100%; aspect-ratio: 16 / 10; border-radius: 12px; background: var(--paper-warm) center/cover no-repeat; }
.nl-view-origin { margin: 26px 0 6px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nl-view-origin-note { font-size: .82rem; color: var(--muted); }
.nl-img-note { font-size: .8rem; color: var(--muted); margin: 2px 0 0; }

/* 홈 문의 CTA (문의 보내기/확인하기 버튼) */
.contact-cta{background:var(--paper-warm);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(22px,3vw,30px)}
.contact-cta-lead{font-size:.98rem;color:var(--ink-soft);margin:0 0 18px;line-height:1.7}
.contact-cta-btns{display:flex;flex-direction:column;gap:10px}
.contact-cta-note{font-size:.85rem;color:var(--muted);margin:16px 0 0;line-height:1.6}

/* 회원가입 안내 CTA */
.ms-apply-cta{text-align:center;background:var(--paper-warm);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(30px,5vw,48px)}
.ms-apply-cta h2{color:var(--green-800);margin:0 0 10px}
.ms-apply-cta p{color:var(--ink-soft);max-width:520px;margin:0 auto 22px}
.ms-apply-login{margin-top:16px;font-size:.9rem;color:var(--muted)}
.ms-apply-login a{color:var(--green-700);font-weight:600}
.btn-lg{padding:15px 30px;font-size:1rem}
