@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

:root {
  --ink:       #131719;
  --ink-2:     #4c5459;
  --ink-3:     #7b8489;
  --bg:        #f2f1ee;
  --surface:   #ffffff;
  --line:      #d9d9d4;
  --line-soft: #ebebe6;
  --brand:     #1c4568;
  --brand-ink: #163a59;
  --brand-wash:#e9eef3;
  --nav:       #0e2240;
  --nav-ink:   #ffffff;
  --nav-sub:   #8ea1bd;
  --nav-line:  #1f3a60;
  --ok:        #23663f;
  --ok-wash:   #e7f0ea;
  --warn:      #8f5a10;
  --warn-wash: #f7eeda;
  --idle:      #6d7880;
  --idle-wash: #ecece7;
  --urgent:    #a92d10;
  --urgent-wash:#f8e9e3;
  --shadow:    0 1px 2px rgba(14, 34, 64, .04), 0 6px 20px rgba(14, 34, 64, .06);
  --shadow-up: 0 4px 10px rgba(14, 34, 64, .09), 0 18px 40px rgba(14, 34, 64, .12);
  --r:         12px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ebeceb; --ink-2: #a8b0b4; --ink-3: #7d868b;
    --bg: #101416; --surface: #191f23; --line: #2c3438; --line-soft: #232a2e;
    --brand: #85a9c8; --brand-ink: #a3c0da; --brand-wash: #1c2833;
    --nav: #0a1a31; --nav-ink: #ffffff; --nav-sub: #8298b4; --nav-line: #1a3252;
    --ok: #5aa87b; --ok-wash: #16281d; --warn: #c9963c; --warn-wash: #2e2513;
    --idle: #7d868b; --idle-wash: #1e2529;
    --urgent: #d97a5c; --urgent-wash: #331b12;
    --shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 6px 20px rgba(0, 0, 0, .3);
    --shadow-up: 0 4px 10px rgba(0, 0, 0, .35), 0 18px 40px rgba(0, 0, 0, .5);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(28, 69, 104, .18); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo",
               "Malgun Gothic", "Noto Sans KR", sans-serif;
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .wrap { padding: 0 16px; } }

/* ── 네비 (다크 + 흰색 리버스 로고) ─────── */
.nav {
  background: rgba(14, 34, 64, .88); color: var(--nav-ink);
  -webkit-backdrop-filter: blur(12px) saturate(1.3); backdrop-filter: blur(12px) saturate(1.3);
  position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav-in { display: flex; align-items: center; gap: 30px; height: 62px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.logo-img { height: 21px; display: block; }
.navlinks { display: flex; gap: 24px; margin-left: auto; }
@media (max-width: 780px) { .navlinks { gap: 16px; } }
.navlinks a {
  font-size: .92rem; font-weight: 600; color: var(--nav-sub); text-decoration: none;
  padding: 4px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
@media (max-width: 780px) { .navlinks a.hide-m { display: none; } }
.navlinks a:hover { color: #fff; }
.navlinks a.act { color: #fff; border-bottom-color: #7fa4c4; }
.navlinks a:focus-visible { outline: 2px solid #7fa4c4; outline-offset: 3px; }

/* ── 신규 알림 표시 ─────────────────────── */
.ndot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #ff5a36; margin-left: 6px; vertical-align: 6px;
}
.alertpill {
  flex: none; display: inline-block; font-size: .76rem; font-weight: 800;
  padding: 2.5px 9px; border-radius: 6px; background: var(--urgent); color: #fff;
  white-space: nowrap; letter-spacing: .02em; font-variant-numeric: tabular-nums;
}
.isalert {
  display: inline-block; font-size: .68rem; font-weight: 800; color: #fff;
  background: var(--urgent); padding: 1px 6px; border-radius: 6px;
  margin-right: 7px; vertical-align: 1.5px; letter-spacing: .02em;
}

/* ── 확인 필요 동향 섹션 ────────────────── */
.alist {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--urgent); box-shadow: var(--shadow);
  border-radius: var(--r); overflow: hidden;
}
.arow {
  display: flex; gap: 14px; align-items: flex-start; padding: 12px 19px;
  border-bottom: 1px solid var(--line-soft); text-decoration: none;
}
.arow:last-child { border-bottom: none; }
.arow:hover { background: var(--bg); }
.a-reason {
  flex: none; font-size: .74rem; font-weight: 800; color: var(--urgent);
  background: var(--urgent-wash); padding: 3px 9px; border-radius: 6px;
  margin-top: 2px; white-space: nowrap;
}
.a-body { display: block; min-width: 0; }
.a-body .t { display: block; font-size: .97rem; font-weight: 600; line-height: 1.5; }
.arow:hover .t { color: var(--brand-ink); }
.a-body .m { display: block; font-size: .82rem; color: var(--ink-3); margin-top: 1px; font-variant-numeric: tabular-nums; }
.a-body .m b { color: var(--ink-2); font-weight: 700; }
.a-more {
  display: block; width: 100%; border: none; border-top: 1px solid var(--line-soft);
  background: var(--bg); font-family: inherit; font-size: .88rem; font-weight: 700;
  color: var(--ink-2); padding: 10px; cursor: pointer;
}
.a-more:hover { color: var(--urgent); }

/* ── 페이지 헤더 ───────────────────────── */
.phead {
  background: linear-gradient(135deg, var(--nav) 0%, #1e4271 130%);
  color: var(--nav-ink); padding: 48px 0 44px; position: relative; overflow: hidden;
}
.phead::after, .dhead::after {
  content: ""; position: absolute; right: -60px; bottom: -12px; width: 620px; height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="620" height="300" viewBox="0 0 620 300" fill="none"><path d="M20 300 C140 70 480 70 600 300" stroke="rgba(255,255,255,0.09)" stroke-width="2"/><path d="M-60 300 C90 10 530 10 680 300" stroke="rgba(255,255,255,0.055)" stroke-width="2"/><path d="M100 300 C190 135 430 135 520 300" stroke="rgba(255,255,255,0.12)" stroke-width="2"/><path d="M0 299 h620" stroke="rgba(255,255,255,0.1)" stroke-width="1.5"/></svg>') no-repeat right bottom;
  pointer-events: none;
}
.phead .wrap, .dhead .wrap { position: relative; z-index: 1; }
.phead h1 { margin: 0; font-size: 2.5rem; line-height: 1.18; font-weight: 800; letter-spacing: -.032em; }
@media (max-width: 640px) { .phead h1 { font-size: 1.9rem; } }
.phead p { margin: 11px 0 0; color: var(--nav-sub); font-size: 1.02rem; max-width: 60ch; }
.gen-line { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; font-variant-numeric: tabular-nums; }
.gchip {
  font-size: .8rem; font-weight: 600; color: #ccd8e9;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.gchip.hot {
  color: #ffb09c; border-color: rgba(255, 138, 112, .38); background: rgba(255, 90, 54, .13);
  font-weight: 700;
}

/* ── 섹션 ─────────────────────────────── */
section.blk { margin-bottom: 46px; scroll-margin-top: 74px; }
.shead {
  display: flex; align-items: baseline; gap: 13px; flex-wrap: wrap;
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.shead h2 { margin: 0; font-size: 1.3rem; font-weight: 800; letter-spacing: -.025em; }
.shead .n { font-size: .88rem; color: var(--ink-3); }
.shead .seelink {
  margin-left: auto; font-size: .89rem; font-weight: 700; color: var(--brand-ink);
  text-decoration: none;
}
.shead .seelink:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── 시행 캘린더 ───────────────────────── */
.cal { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--r); overflow: hidden; }
.cal-scroll { overflow-x: auto; }
.cal-in { min-width: 720px; padding: 26px 30px 20px; position: relative; }
.track { position: relative; height: 3px; background: var(--line); margin: 34px 0 0; }
.yr {
  position: absolute; top: -26px; font-size: .78rem; font-weight: 700; color: var(--ink-3);
  border-left: 1px solid var(--line); padding-left: 7px; height: 26px; line-height: 26px;
}
.today {
  position: absolute; top: -7px; width: 3px; height: 17px; background: var(--ink);
  transform: translateX(-1px);
}
.today b {
  position: absolute; top: -25px; left: -3px; font-size: .78rem; font-weight: 700;
  color: var(--ink); white-space: nowrap;
}
.mk { position: absolute; top: -6px; }
.mk i {
  display: block; width: 15px; height: 15px; border-radius: 50%;
  border: 3px solid var(--surface); background: var(--mkc); margin-left: -7.5px;
  box-shadow: 0 0 0 1.5px var(--mkc);
}
.mk .stem { position: absolute; left: -.5px; top: 15px; width: 1px; background: var(--line); }
.mk .lab {
  position: absolute; left: 0; white-space: nowrap; transform: translateX(-50%);
  text-align: center;
}
.mk.edge-l .lab { transform: none; text-align: left; }
.mk.edge-r .lab { transform: translateX(-100%); text-align: right; }
.mk .lab b { display: block; font-size: .94rem; font-weight: 700; letter-spacing: -.015em; }
.mk .lab b a { text-decoration: none; }
.mk .lab b a:hover { color: var(--brand-ink); }
.mk .lab span { display: block; font-size: .8rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.mk .lab em {
  display: inline-block; font-style: normal; font-size: .78rem; font-weight: 800;
  color: var(--mkc); background: var(--mkw); padding: 1px 7px; border-radius: 6px;
  margin-top: 2px; font-variant-numeric: tabular-nums;
}
.cal-live {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  padding: 15px 30px; border-top: 1px solid var(--line-soft); background: var(--bg);
}
.cal-live .lk { font-size: .84rem; font-weight: 700; color: var(--ok); flex: none; }
.cal-live .lc {
  font-size: .85rem; font-weight: 600; background: var(--ok-wash); color: var(--ok);
  padding: 3px 10px; border-radius: 6px; text-decoration: none;
}
.cal-live .lc:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── 연도별 일정표 ─────────────────────── */
.syear {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 1.05rem; font-weight: 800; margin: 24px 0 9px; letter-spacing: -.015em;
}
.syear:first-child { margin-top: 0; }
.syear span { font-size: .84rem; color: var(--ink-3); font-weight: 600; }
.sched { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--r); overflow: hidden; }
.srow {
  display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  padding: 11px 19px; border-bottom: 1px solid var(--line-soft); font-size: .95rem;
}
.srow:last-child { border-bottom: none; }
.srow .sd {
  flex: none; width: 88px; font-variant-numeric: tabular-nums;
  color: var(--ink-2); font-weight: 700; font-size: .9rem;
}
.srow .sr { flex: none; font-weight: 800; text-decoration: none; letter-spacing: -.015em; }
.srow .sr:hover { text-decoration: underline; text-underline-offset: 3px; }
.srow .sl { color: var(--ink-2); }
.srow.past .sd, .srow.past .sl { color: var(--ink-3); }
.srow.past .sr { opacity: .6; }
.pastwrap { margin-top: 18px; }
.pastwrap > summary {
  cursor: pointer; font-size: .92rem; font-weight: 700; color: var(--ink-2);
  padding: 4px 0; list-style: none;
}
.pastwrap > summary::-webkit-details-marker { display: none; }
.pastwrap > summary::after { content: " ▾"; color: var(--ink-3); }
.pastwrap[open] > summary::after { content: " ▴"; }
.pastwrap > summary:hover { color: var(--ink); }
.pastwrap .sched { margin-top: 9px; }

/* ── 우리 회사 기준 필터 ───────────────── */
.pf {
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 18px 22px 20px; margin-bottom: 34px; border-top: 3px solid var(--brand);
  border-radius: var(--r);
}
.pf-h { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 15px; }
.pf-h h2 { margin: 0; font-size: 1.16rem; font-weight: 800; letter-spacing: -.022em; }
.pf-h .n { font-size: .87rem; color: var(--ink-3); }
.pf-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.pf-k { flex: none; width: 104px; font-size: .88rem; font-weight: 700; color: var(--ink-2); }
@media (max-width: 560px) { .pf-k { width: 100%; } }
.seg { display: flex; flex-wrap: wrap; }
.seg button {
  font-family: inherit; font-size: .91rem; font-weight: 600; padding: 7px 15px; cursor: pointer;
  background: var(--surface); color: var(--ink-2); border: 1px solid var(--line); margin-left: -1px;
}
.seg button:first-child { margin-left: 0; border-radius: 9px 0 0 9px; }
.seg button:last-child { border-radius: 0 9px 9px 0; }
.seg button:hover { color: var(--ink); border-color: var(--ink-3); z-index: 1; position: relative; }
.seg button:focus-visible { outline: 2px solid var(--brand); outline-offset: -1px; z-index: 2; position: relative; }
.seg button.on {
  background: var(--brand); border-color: var(--brand); color: #fff; z-index: 1; position: relative;
}
.pf-foot {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.pf-sum { font-size: .93rem; font-weight: 600; color: var(--ink-2); }
.pf-sum b { font-weight: 800; font-variant-numeric: tabular-nums; }
.pf-sum .s-direct { color: var(--urgent); }
.pf-sum .s-indirect { color: var(--warn); }
.pf-sum .s-watch { color: var(--brand-ink); }
.pf-tog { display: flex; align-items: center; gap: 7px; font-size: .89rem; color: var(--ink-2); cursor: pointer; }
.pf-tog input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.pf-reset {
  margin-left: auto; border: none; background: none; font-family: inherit; font-size: .88rem;
  font-weight: 600; color: var(--ink-3); cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; padding: 0;
}
.pf-reset:hover { color: var(--ink); }
.pf-hint { font-size: .89rem; color: var(--ink-3); }

/* 적용 수준 배지 / 사유 */
.lv {
  flex: none; font-size: .8rem; font-weight: 800; padding: 3px 9px; border-radius: 6px;
  background: var(--lvw); color: var(--lvc); white-space: nowrap;
}
.why {
  font-size: .89rem; color: var(--ink-2); background: var(--bg);
  border-left: 3px solid var(--lvc); padding: 8px 12px; margin-top: 10px;
  border-radius: 0 8px 8px 0;
}
.why b { color: var(--lvc); font-weight: 800; }
.rc.dim { opacity: .55; }
.rc.dim:hover { opacity: 1; }
.mk.dim { opacity: .3; }
.cal-live .lc.dim { opacity: .4; }

/* ── 규제 카드 그리드 ──────────────────── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(352px, 1fr)); gap: 16px; align-items: start; }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.rc {
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  border-top: 3px solid var(--rcc); display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
}
.rc:hover { box-shadow: var(--shadow-up); transform: translateY(-2px); }
.rc-top { padding: 16px 19px 14px; }
.rc-r1 { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rc-abbr { font-size: 1.34rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.2; }
.rc-abbr a { color: inherit; text-decoration: none; }
.rc-abbr a:hover { color: var(--brand-ink); }
.rc-badges { display: flex; align-items: center; gap: 6px; flex: none; }
.dday {
  flex: none; font-size: .82rem; font-weight: 800; padding: 3px 9px; border-radius: 6px;
  background: var(--rcw); color: var(--rcc); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.rc-name { font-size: 1.02rem; font-weight: 700; letter-spacing: -.018em; margin-top: 2px; line-height: 1.4; }
.rc-stat { display: flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--ink-2); margin-top: 7px; font-weight: 600; }
.rc-stat i { width: 8px; height: 8px; border-radius: 50%; background: var(--rcc); flex: none; }
.rc-desc { font-size: .92rem; color: var(--ink-2); margin: 9px 0 2px; }
.rc-news { border-top: 1px solid var(--line-soft); padding: 12px 19px 14px; margin-top: auto; }
.rc-news .nh {
  font-size: .78rem; font-weight: 700; color: var(--ink-3); letter-spacing: .04em;
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px;
}
.rc-news .nh em { font-style: normal; color: var(--urgent); font-weight: 800; }
.rc-news ul { margin: 0; padding: 0; list-style: none; }
.rc-news li { padding: 5px 0; border-bottom: 1px solid var(--line-soft); font-size: .9rem; line-height: 1.5; }
.rc-news li:last-child { border-bottom: none; }
.rc-news a { text-decoration: none; }
.rc-news a:hover { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }
.rc-news .d { color: var(--ink-3); font-size: .8rem; font-variant-numeric: tabular-nums; margin-right: 8px; }
.rc-news .none { font-size: .87rem; color: var(--ink-3); }
.rc-more {
  display: block; margin-top: 10px; font-size: .86rem; font-weight: 700;
  color: var(--brand-ink); text-decoration: none;
}
.rc-more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── 재단 브리핑·권고 ───────────────────── */
.brief { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 14px; }
.bi {
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 16px 19px; border-left: 3px solid var(--brand);
  border-radius: 10px;
}
.bi b { display: block; font-size: 1.04rem; font-weight: 700; letter-spacing: -.018em; margin: 5px 0 3px; }
.bi > span { font-size: .93rem; color: var(--ink-2); }
.cb {
  display: inline-block; font-size: .74rem; font-weight: 800; padding: 2px 8px;
  border-radius: 6px; letter-spacing: .03em;
}
.cb-warn { background: var(--urgent-wash); color: var(--urgent); }
.cb-rec  { background: var(--brand-wash); color: var(--brand-ink); }
.cb-info { background: var(--idle-wash); color: var(--idle); }
.bi-reg {
  display: block; margin-top: 9px; font-size: .85rem; font-weight: 700;
  color: var(--brand-ink); text-decoration: none;
}
.bi-reg:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── 뉴스 ─────────────────────────────── */
.newsgrid { display: grid; grid-template-columns: 1fr 296px; gap: 20px; align-items: start; }
@media (max-width: 900px) { .newsgrid { grid-template-columns: 1fr; } }
.side { position: sticky; top: 78px; display: grid; gap: 14px; }
@media (max-width: 900px) { .side { position: static; } }
.panel { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 15px 17px; border-radius: var(--r); }
.panel h3 { margin: 0 0 10px; font-size: .95rem; font-weight: 800; letter-spacing: -.015em; }
input.search {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); background: var(--bg);
  color: var(--ink); font-size: .95rem; font-family: inherit; border-radius: 9px;
}
input.search::placeholder { color: var(--ink-3); }
input.search:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-wash); }
.chips { display: flex; flex-wrap: wrap; gap: 5px 12px; }
.chip {
  border: none; background: none; font-family: inherit; font-size: .9rem;
  color: var(--ink-2); cursor: pointer; padding: 1px 0; border-bottom: 2px solid transparent;
}
.chip:hover { color: var(--ink); }
.chip:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.chip.on { color: var(--brand-ink); font-weight: 700; border-bottom-color: var(--brand); }
.chip small { color: var(--ink-3); font-weight: 500; font-variant-numeric: tabular-nums; margin-left: 3px; }
.trend { display: grid; gap: 7px; }
.trow {
  display: grid; grid-template-columns: 1fr 62px 24px; align-items: center; gap: 9px;
  font-size: .87rem; cursor: pointer; border: none; background: none; color: var(--ink-2);
  padding: 0; text-align: left; font-family: inherit;
}
.trow:hover .tn { color: var(--brand-ink); }
.trow:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.tn { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tbar { height: 8px; background: var(--line-soft); }
.tbar i { display: block; height: 100%; background: var(--brand); }
.tnum { color: var(--ink-3); font-variant-numeric: tabular-nums; text-align: right; font-weight: 700; font-size: .82rem; }

.count-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
.count { font-size: .88rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
select.sort {
  font-family: inherit; font-size: .87rem; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line); padding: 5px 8px; cursor: pointer;
  margin-left: auto; border-radius: 8px;
}
select.sort:focus-visible { outline: 2px solid var(--brand); outline-offset: -1px; }
.seg-sm button { font-size: .86rem; padding: 5px 12px; }
.psub { font-size: .78rem; font-weight: 500; color: var(--ink-3); margin-left: 4px; }
.via {
  font-size: .74rem; font-weight: 700; color: var(--ink-3);
  background: var(--idle-wash); padding: 1px 6px; border-radius: 6px;
}
.card { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 15px 19px; margin-bottom: 10px; border-radius: 10px; }
.card .meta { display: flex; align-items: baseline; gap: 11px; font-size: .82rem; margin-bottom: 3px; }
.badge { font-weight: 700; }
.badge.eu { color: var(--brand-ink); }
.badge.media { color: var(--ink-2); }
.card .date { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.card h3 { margin: 0 0 2px; font-size: 1.09rem; line-height: 1.48; font-weight: 700; letter-spacing: -.018em; text-wrap: balance; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }
.card .orig { font-size: .81rem; color: var(--ink-3); margin-bottom: 5px; }
.card p { margin: 0 0 6px; font-size: .93rem; color: var(--ink-2); }
.tags { font-size: .83rem; color: var(--ink-3); }
.tags span + span::before { content: " · "; }
.empty { text-align: center; color: var(--ink-3); padding: 48px 0; }
.more {
  display: block; width: 100%; margin-top: 12px; border: 1px solid var(--line); background: var(--surface);
  font-family: inherit; font-size: .94rem; font-weight: 700; color: var(--ink-2);
  padding: 12px; cursor: pointer; border-radius: 10px;
}
.more:hover { border-color: var(--brand); color: var(--brand-ink); }
.seeall {
  display: block; text-align: center; border: 1px solid var(--line); background: var(--surface);
  font-size: .94rem; font-weight: 700; color: var(--ink-2); padding: 12px;
  text-decoration: none; margin-top: 12px; border-radius: 10px;
}
.seeall:hover { border-color: var(--brand); color: var(--brand-ink); }

/* ── 주간 동향 (주차 탭) ────────────────── */
.btn2 {
  border: 1px solid var(--line); background: var(--surface); font-family: inherit;
  font-size: .89rem; font-weight: 700; color: var(--ink-2); padding: 8px 14px; cursor: pointer;
  border-radius: 9px;
}
.btn2:hover:not(:disabled) { border-color: var(--brand); color: var(--brand-ink); }
.btn2:disabled { opacity: .4; cursor: default; }
.btn2:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn2.primary {
  background: linear-gradient(180deg, #2a5c94, #1c4568); border-color: #1c4568; color: #fff;
  box-shadow: 0 2px 8px rgba(28, 69, 104, .3);
}
.btn2.primary:hover:not(:disabled) { background: linear-gradient(180deg, #24537f, #163a59); color: #fff; }
.wtabs-wrap { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.wtabs { display: flex; overflow-x: auto; flex: 1; }
.wtabs button {
  flex: none; padding: 10px 15px 9px; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: .93rem; font-weight: 600; color: var(--ink-3);
  border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
}
.wtabs button:hover { color: var(--ink); }
.wtabs button:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }
.wtabs button.on { color: var(--ink); font-weight: 800; border-bottom-color: var(--brand); }
.wtabs button .wdot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--urgent); margin-left: 5px; vertical-align: 3px;
}
.wold {
  flex: none; font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line); padding: 6px 8px;
  cursor: pointer; margin-bottom: 6px; border-radius: 8px;
}
.wk-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.wk-head h2 { margin: 0; font-size: 1.42rem; font-weight: 800; letter-spacing: -.025em; }
.wk-head .n { font-size: .89rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.wk-head .acts { margin-left: auto; display: flex; gap: 8px; }
@media (max-width: 640px) { .wk-head .acts { margin-left: 0; } }
.wsec { margin-bottom: 26px; }
.wsec.dim { opacity: .45; }
.wsec.dim:hover { opacity: 1; }
.wsec-h {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px;
  border-left: 4px solid var(--brand); padding-left: 11px;
}
.wsec-h b { font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; }
.wsec-h span { font-size: .86rem; color: var(--ink-3); }
.wk-note { font-size: .85rem; color: var(--ink-3); margin: 26px 0 0; }

/* ── 규제 상세 페이지 ──────────────────── */
.dtable {
  width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface);
  border: 1px solid var(--line); font-size: .92rem;
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
}
.dtable th {
  width: 158px; text-align: left; vertical-align: top; padding: 11px 14px;
  color: var(--ink-2); font-weight: 700; background: var(--bg);
  border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.dtable td {
  padding: 11px 15px; border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2); line-height: 1.65;
}
.dtable tr:last-child th, .dtable tr:last-child td { border-bottom: none; }
@media (max-width: 560px) {
  .dtable th { width: 96px; white-space: normal; }
}
.dnote { font-size: .85rem; color: var(--warn); margin: 9px 0 0; }
.pbox {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--urgent); padding: 13px 17px;
  font-size: .92rem; color: var(--ink-2); margin: 0; line-height: 1.65;
  border-radius: 10px;
}
.doclist { display: grid; gap: 8px; }
.doclist a {
  font-size: .9rem; font-weight: 600; color: var(--brand-ink);
  text-decoration: none; line-height: 1.5;
}
.doclist a:hover { text-decoration: underline; text-underline-offset: 3px; }

.dhead {
  background: linear-gradient(135deg, var(--nav) 0%, #1e4271 130%);
  color: var(--nav-ink); padding: 32px 0 40px; position: relative; overflow: hidden;
}
.crumb { font-size: .86rem; margin-bottom: 16px; }
.crumb a { color: var(--nav-sub); text-decoration: none; }
.crumb a:hover { color: #fff; }
.crumb span { color: var(--nav-sub); margin: 0 7px; }
.d-r1 { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.d-abbr { font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.d-status {
  font-size: .85rem; font-weight: 800; padding: 4px 11px; border-radius: 6px;
  background: var(--rcw); color: var(--rcc); white-space: nowrap;
}
.d-name { margin: 6px 0 0; font-size: 1.13rem; color: var(--nav-sub); font-weight: 600; }
.dgrid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; margin-top: 26px; margin-bottom: 42px; }
@media (max-width: 900px) { .dgrid { grid-template-columns: 1fr; } }
.nlist { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--r); overflow: hidden; }
.nrow { display: block; padding: 13px 19px; border-bottom: 1px solid var(--line-soft); text-decoration: none; }
.nrow:last-child { border-bottom: none; }
.nrow:hover { background: var(--bg); }
.nrow .t { font-size: .97rem; font-weight: 600; line-height: 1.5; }
.nrow:hover .t { color: var(--brand-ink); }
.nrow .m { font-size: .82rem; color: var(--ink-3); margin-top: 2px; font-variant-numeric: tabular-nums; }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { position: relative; padding: 0 0 14px 22px; font-size: .91rem; color: var(--ink-2); }
.steps li::before {
  content: ""; position: absolute; left: 5px; top: 7px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--rcc, var(--line));
}
.steps li::after {
  content: ""; position: absolute; left: 9px; top: 18px; bottom: -3px; width: 1px; background: var(--line-soft);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.plink { font-size: .92rem; font-weight: 700; color: var(--brand-ink); text-decoration: none; }
.plink:hover { text-decoration: underline; text-underline-offset: 3px; }
.ptext { font-size: .92rem; color: var(--ink-2); margin: 0; }
.reglist { display: grid; gap: 4px; }
.reglist a {
  display: flex; align-items: baseline; gap: 8px; font-size: .91rem; font-weight: 600;
  color: var(--ink-2); text-decoration: none; padding: 3px 0;
}
.reglist a:hover { color: var(--brand-ink); }
.reglist a small { color: var(--ink-3); font-weight: 500; }
.reglist a .alertpill { font-size: .68rem; padding: 1px 7px; margin-left: auto; }

/* ── 푸터 ─────────────────────────────── */
footer { background: var(--nav); color: var(--nav-sub); padding: 32px 0 40px; margin-top: 20px; font-size: .89rem; }
footer .fl { color: #fff; font-weight: 700; margin-bottom: 9px; }
footer ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 34px; }
@media (max-width: 700px) { footer ul { columns: 1; } }
footer li { padding: 3px 0; break-inside: avoid; }
footer a { color: #7fb0ff; text-decoration: none; }
footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer .fn { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--nav-line); font-size: .83rem; }

@media (prefers-reduced-motion: no-preference) {
  .rc, .chip, .more, .navlinks a, .trow, .card, .nrow { transition: box-shadow .18s, transform .18s, color .12s, border-color .12s, background .12s; }
}

/* ── 모바일 최적화 (총장님 폰 대응) ─────── */
@media (max-width: 680px) {
  /* 헤더 2단: 로고 줄 + 메뉴 줄 — 4개 메뉴 전부 표시 */
  .nav-in { flex-wrap: wrap; height: auto; padding: 11px 0 0; row-gap: 2px; }
  .logo-img { height: 18px !important; }
  .navlinks { margin-left: 0; width: 100%; gap: 20px; padding-bottom: 9px; }
  .navlinks a { font-size: .89rem; padding: 5px 0; }
  .navlinks a.hide-m { display: inline-block; }

  .phead { padding: 28px 0 26px; }
  .phead h1 { font-size: 1.6rem; }
  .phead p { font-size: .93rem; }
  .gen-line { margin-top: 13px; gap: 6px; }
  .gchip { font-size: .74rem; padding: 3px 10px; }
  .phead::after, .dhead::after { opacity: .6; }

  section.blk { margin-bottom: 34px; }
  .shead h2 { font-size: 1.14rem; }
  .shead .n { font-size: .83rem; }

  .pf { padding: 15px 15px 17px; }
  .pf-h h2 { font-size: 1.05rem; }
  .seg button { font-size: .85rem; padding: 7px 11px; }

  .cal-in { padding: 22px 18px 16px; }
  .cal-live { padding: 12px 18px; }
  .cal-scroll { -webkit-overflow-scrolling: touch; }

  .rc-top { padding: 14px 16px 12px; }
  .rc-news { padding: 11px 16px 13px; }
  .rc-abbr { font-size: 1.22rem; }

  .arow { padding: 11px 14px; gap: 10px; }
  .a-reason { font-size: .7rem; padding: 3px 7px; }
  .srow { padding: 10px 14px; gap: 10px; }
  .srow .sd { width: 74px; font-size: .84rem; }
  .nrow { padding: 12px 14px; }

  .dtable { font-size: .88rem; }
  .dtable th { padding: 9px 11px; }
  .dtable td { padding: 9px 12px; }

  .wtabs button { padding: 9px 12px 8px; font-size: .88rem; }
  .wk-head h2 { font-size: 1.22rem; }
  .wk-head .acts { width: 100%; }
  .wk-head .acts .btn2 { flex: 1; }
  .d-abbr { font-size: 1.7rem; }
  .dhead { padding: 24px 0 30px; }

  footer { font-size: .85rem; }
}

/* 인쇄 시에만 표시되는 재단 로고 */
.plogo { display: none; }

/* ── 인쇄 (보고자료 출력용) ─────────────── */
@media print {
  .plogo { display: block; height: 30px; margin-bottom: 14px; }
  .nav, footer, .btn2, .a-more, .wold, .seelink, .wk-head .acts,
  .pf, .rc-more, .wk-note, .pastwrap > summary { display: none !important; }
  .pastwrap[open] > summary { display: none !important; }
  body { background: #fff; }
  .phead, .dhead { background: none; color: #000; padding: 6px 0 2px; }
  .phead h1, .dhead .d-abbr { color: #000; }
  .phead p, .gen-line, .d-name { color: #444; }
  .cal, .rc, .sched, .alist, .nlist, .panel, .bi, .dtable { box-shadow: none; break-inside: avoid; }
  .wsec, section.blk { break-inside: avoid; }
  .wsec.dim { opacity: 1; }
  a { text-decoration: none; }
}
