/**
 * KLLE Career v2 · Etoos 247 와이어프레임 + KLLE 브랜드 (#1560bd)
 */
:root {
  --klle-blue: #1560bd;
  --klle-blue-light: #0092db;
  --klle-green: #5cb730;
  --klle-ink: #1a1a2e;
  --klle-text: #444;
  --klle-muted: #7d7d7d;
  --klle-line: #e4e4e4;
  --klle-soft: #f5f7fa;
  --inner: 1200px;
  --font: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  --shadow: 0 8px 32px rgba(21, 96, 189, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  color: var(--klle-text);
  background: #fff;
  letter-spacing: -0.02em;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.home,
body.home * {
  font-family: var(--font);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.inner { max-width: var(--inner); margin: 0 auto; padding: 0 24px; }

/* Header · 한 줄 GNB */
.kl-header {
  position: sticky; top: 0; z-index: 300;
  background: #fff; border-bottom: 1px solid var(--klle-line);
}
.kl-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: 84px; padding: 0 24px;
  max-width: var(--inner); margin: 0 auto;
}
.kl-header__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.kl-header__brand img { height: 32px; width: auto; }
.kl-header__brand span { font-size: 16px; font-weight: 800; color: var(--klle-ink); }
.kl-gnb { display: flex; align-items: center; gap: 40px; margin: 0; padding: 0; border: 0; }
.kl-gnb__item {
  position: relative;
  display: inline-block;
  padding: 16px 2px;
  font-size: 20px;
  font-weight: 800;
  color: #222;
  white-space: nowrap;
}
.kl-gnb__item:hover, .kl-gnb__item[aria-current="page"] { color: var(--klle-blue); }
.kl-gnb__item[aria-current="page"] { font-weight: 800; }
.kl-gnb__item[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--klle-blue);
}
.menu-btn {
  display: none; border: 1px solid var(--klle-line); background: #fff;
  border-radius: 6px; padding: 8px 12px; font: inherit; font-weight: 700; cursor: pointer;
}

/* Hero swiper · Etoos-style centered layout */
.gate_main_bn { background: #e8f2fb; }
.hero-swiper { position: relative; overflow: hidden; }

.hero-slide {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #1560bd;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1560bd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 36, 72, 0.88) 0%, rgba(8, 36, 72, 0.62) 40%, rgba(8, 36, 72, 0.28) 68%, rgba(8, 36, 72, 0.18) 100%),
    rgba(8, 36, 72, 0.12);
  pointer-events: none;
}


.bn_content {
  width: 100%;
  max-width: 520px;
}
.bn_content .bn_kicker {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: #b8e0ff;
  letter-spacing: 0.02em;
}
.bn_content .bn_tit {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.bn_content .bn_txt {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.94);
  max-width: 520px;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (min-width: 961px) {
  .bn_content .bn_txt { white-space: nowrap; }
}
.bn_content .bn_txt strong { color: #fff; font-weight: 800; }
.bn_note { margin: 12px 0 0; font-size: 16px; color: rgba(255,255,255,0.75); max-width: 480px; }
.bn_actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gate_main_bn > .inner:not(.slide-inner) { max-width: none; padding: 0; }
.hero-slide .slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 52px 24px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
  justify-content: center;
  gap: 36px;
  align-items: center;
}
.hero-slide .slide-inner:not(:has(.bn_panel)) {
  grid-template-columns: minmax(0, 1fr);
}
.gate_main_bn .swiper-slide { background-color: transparent; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px; border-radius: 6px;
  font-size: 18px; font-weight: 700; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--klle-blue); color: #fff; }
.btn-primary:hover { background: #1254a8; }
.btn-outline { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.24); }

/* 오른쪽 패널 · 슬라이드 간 높이 균형 */
.bn_panel {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 18px 20px 16px;
  overflow: hidden;
  box-sizing: border-box;
  align-self: center;
}
.bn_panel--stats,
.bn_panel--regions,
.bn_panel--priority {
  max-width: 420px;
}

.hero-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.hero-region-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}
.hero-region-tab:hover { background: rgba(255,255,255,0.16); }
.hero-region-tab.is-active {
  background: rgba(255,255,255,0.95);
  color: var(--klle-blue);
  border-color: transparent;
}

.bn_stat_row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.bn_stat {
  text-align: center; padding: 16px 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}
.bn_stat strong { display: block; font-size: 30px; color: #fff; line-height: 1.1; }
.bn_stat span { display: block; margin-top: 6px; font-size: 16px; color: rgba(255,255,255,0.88); font-weight: 700; line-height: 1.3; }
.bn_stat.is-main { background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.38); }
.bn_stat.is-main strong { color: #fff; }

.panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  min-width: 0;
}
.panel-meta h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
}
.panel-meta time,
.panel-meta-hint {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.panel-mini-list li {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.panel-mini-list li a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.15s;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.panel-mini-list li a:hover {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}
.panel-mini-list li:last-child a { border-bottom: 0; }
.panel-mini-list a > div {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.panel-mini-list b {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.panel-mini-list a > div span {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.mini-empty { padding: 14px 0; margin: 0; font-size: 18px; color: rgba(255,255,255,0.82); }

.bn_panel .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--klle-blue);
  border: none;
}
.bn_panel .btn-primary:hover { background: #fff; }

/* D-day 뱃지 — 어디서든 글자 정중앙 */
.dday,
span.dday,
.tag.dday,
.map_job_list .dday,
.panel-mini-list .dday,
.urgent-card .dday,
.job_tags .dday {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  padding: 0 !important;
  margin: 0;
  border: 0;
  border-radius: 999px;
  font-size: 15px !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1 !important;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  align-self: center;
  justify-self: start;
  background: #e2e8f0;
  color: #1e293b !important;
}
.dday.urgent,
span.dday.urgent,
.tag.dday.urgent,
.map_job_list .dday.urgent,
.panel-mini-list .dday.urgent {
  background: #c2410c;
  color: #fff !important;
}
.dday.soon,
span.dday.soon,
.tag.dday.soon,
.map_job_list .dday.soon,
.panel-mini-list .dday.soon {
  background: #15803d;
  color: #fff !important;
}
.bn_panel .dday.urgent { background: #ea580c; color: #fff !important; }
.bn_panel .dday.soon { background: #16a34a; color: #fff !important; }
.bn_panel .dday:not(.urgent):not(.soon) {
  background: #fff;
  color: #1560bd !important;
}

.swiper-button-box {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: auto;
  max-width: calc(100% - 32px);
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.swiper-button-box > * { pointer-events: auto; }
.hero-swiper .swiper-pagination-fraction {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  width: auto !important;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 16px;
  background: rgba(0,0,0,0.22);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  color: #fff;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.22);
  border-radius: 50%;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 16px; font-weight: 900; }

/* Section common */
.title {
  margin: 0 0 28px; text-align: center; font-size: 36px;
  font-weight: 900; color: var(--klle-ink); letter-spacing: -0.02em;
}
.title.left { text-align: left; margin-bottom: 12px; }
.section-lead { margin: 0 0 28px; text-align: center; color: var(--klle-muted); font-size: 18px; }
.section-lead.left { text-align: left; margin-bottom: 20px; }
.section-lead strong { color: var(--klle-ink); }
.section-head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.section-head-row .title { margin: 0; }
.more_link { font-size: 16px; font-weight: 700; color: var(--klle-blue); }

/* Story swiper */
.successstory_wrap { padding: 72px 0; background: var(--klle-soft); }

/* Map section */
.map_wrap { padding: 72px 0; background: var(--klle-soft); }
.map_head {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  justify-content: space-between; gap: 16px; margin-bottom: 20px;
}
.map_view_toggle { display: flex; gap: 0; border: 1px solid var(--klle-line); border-radius: 8px; overflow: hidden; background: #fff; }
.map_view_toggle button {
  padding: 10px 18px; border: 0; background: transparent; font: inherit;
  font-size: 16px; font-weight: 700; color: var(--klle-muted); cursor: pointer;
}
.map_view_toggle button.active { background: var(--klle-blue); color: #fff; }
.map_region_tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.map_region_tabs button {
  padding: 10px 16px; border: 1px solid var(--klle-line); background: #fff;
  border-radius: 999px; font: inherit; font-size: 16px; font-weight: 600;
  color: #555; cursor: pointer;
}
.map_region_tabs button.active {
  background: var(--klle-blue); border-color: var(--klle-blue); color: #fff;
}
.map_layout {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 18px; align-items: stretch;
}
.map_canvas_wrap {
  background: #fff; border: 1px solid var(--klle-line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
}
.map_canvas { height: 520px; width: 100%; z-index: 1; }
.map_note { margin: 0; padding: 12px 16px; font-size: 15px; color: var(--klle-muted); background: #fafafa; border-top: 1px solid var(--klle-line); }
.map_sidebar {
  background: #fff; border: 1px solid var(--klle-line); border-radius: 16px;
  padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.map_sidebar_head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--klle-line);
}
.map_sidebar_head h4 { margin: 0; font-size: 20px; color: var(--klle-ink); }
.map_sidebar_count { font-size: 16px; font-weight: 800; color: var(--klle-blue); }
.map_job_list { margin: 0; padding: 0; list-style: none; flex: 1; overflow: auto; max-height: 380px; }
.map_job_list li a {
  display: grid; grid-template-columns: 56px 1fr; gap: 10px;
  align-items: center;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.map_job_list li:last-child a { border-bottom: 0; }
.map_job_list b { display: block; font-size: 16px; color: var(--klle-ink); }
.map_job_list a > div span { display: block; font-size: 15px; color: var(--klle-muted); }
.map_empty, .map-empty { padding: 24px 0; text-align: center; color: var(--klle-muted); font-size: 16px; }
.map_list_link { width: 100%; margin-top: 14px; }
.map-pin span {
  display: flex; align-items: center; justify-content: center;
  background: var(--klle-blue); color: #fff; border-radius: 50%;
  font-size: 16px; font-weight: 900; border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(21,96,189,0.4);
}

/* Jobs */
.jobs_wrap { padding: 72px 0; background: var(--klle-soft); }
.jobs_head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.jobs_toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.jobs_toolbar input {
  flex: 1; min-width: 220px; height: 52px; border: 1px solid var(--klle-line);
  border-radius: 8px; padding: 0 16px; font: inherit; font-size: 17px; background: #fff;
}
.jobs_toolbar input:focus { outline: none; border-color: var(--klle-blue); box-shadow: 0 0 0 3px rgba(21, 96, 189, 0.12); }

/* 필터 패널 · 세그먼트 + 칩 */
.filter-panel {
  background: #fff;
  border: 1px solid rgba(21, 96, 189, 0.1);
  border-radius: 16px;
  padding: 6px 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.06);
}
.filter-panel__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
}
.filter-panel__row:last-child { border-bottom: 0; }
.filter-panel__kicker {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #64748b;
}
.filter-segment {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 12px;
}
.filter-segment button {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 9px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.filter-segment button:hover { color: var(--klle-blue); }
.filter-segment button.is-active {
  background: #fff;
  color: var(--klle-blue);
  box-shadow: 0 2px 10px rgba(15, 39, 68, 0.08);
}
.filter-segment--sort { flex-shrink: 0; }
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.filter-chip:hover {
  border-color: #b8d4f0;
  background: #fff;
}
.filter-chip__label {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  line-height: 1.2;
}
.filter-chip__count {
  min-width: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 15px;
  font-weight: 800;
  color: #475569;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.filter-chip.is-active {
  background: var(--klle-blue);
  border-color: var(--klle-blue);
  box-shadow: 0 4px 14px rgba(21, 96, 189, 0.22);
  transform: translateY(-1px);
}
.filter-chip.is-active .filter-chip__label { color: #fff; }
.filter-chip.is-active .filter-chip__count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.filter_row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.filter_row button {
  padding: 9px 16px; border: 1px solid var(--klle-line); background: #fff;
  border-radius: 8px; font: inherit; font-size: 16px; font-weight: 600;
  color: #555; cursor: pointer;
}
.filter_row button.active { background: var(--klle-blue); border-color: var(--klle-blue); color: #fff; }
.filter_hint {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
  word-break: keep-all;
}
.filter_hint strong { color: var(--klle-ink); }
.job_feed { display: grid; gap: 24px; }
.source_block {
  border: 1px solid var(--klle-line); border-radius: 14px; padding: 20px;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.source_block_head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--klle-line);
}
.source_block_head h3 { margin: 0; font-size: 20px; color: var(--klle-ink); }
.job_grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.job_card {
  border: 1px solid var(--klle-line); border-radius: 16px; padding: 22px; background: #fff;
  transition: border-color 0.2s;
}
.job_card:hover { border-color: #b8d4f0; }
.job_org { font-size: 15px; font-weight: 800; color: var(--klle-muted); }
.job_card h3 { margin: 8px 0 12px; font-size: 20px; line-height: 1.45; color: var(--klle-ink); }
.job_card h3 a:hover { color: var(--klle-blue); }
.job_tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag { padding: 4px 8px; border-radius: 4px; font-size: 15px; font-weight: 800; }
.tag.ok { background: #e8f6ef; color: #197858; }
.tag.open { background: #eef5fc; color: var(--klle-blue); }
.tag.closed { background: #f2f2f2; color: #777; }
.tag.emp-stable { background: #ecfdf5; color: #047857; font-weight: 800; }
.tag.emp-contract { background: #fff7ed; color: #c2410c; }
.tag.emp-part { background: #f1f5f9; color: #64748b; }
.job_meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 15px; color: var(--klle-muted); }
.job_meta span { padding: 4px 8px; background: var(--klle-soft); border-radius: 4px; }
.job_foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--klle-line);
}
.btn-sm {
  padding: 6px 12px; min-height: 32px; font-size: 16px;
  border: 1px solid var(--klle-line); border-radius: 6px;
  background: #fff; color: var(--klle-blue); font-weight: 700;
}
.pagination { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.pagination button {
  min-width: 36px; height: 36px; border: 1px solid var(--klle-line);
  background: #fff; border-radius: 6px; cursor: pointer; font-weight: 700;
}
.pagination button.active { background: var(--klle-blue); color: #fff; border-color: var(--klle-blue); }
.pagination_meta { width: 100%; font-size: 16px; color: var(--klle-muted); margin: 0 0 8px; }
.empty { padding: 36px; text-align: center; color: var(--klle-muted); border: 1px dashed var(--klle-line); border-radius: 12px; background: #fff; }
.empty.compact { padding: 16px; }

/* 사서 취업 브리핑 · 히어로급 비주얼 */
.briefing { padding: 0; background: #0b1f3a; }
.briefing-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.briefing-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.briefing-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 58, 0.92) 0%, rgba(8, 36, 72, 0.72) 45%, rgba(8, 36, 72, 0.35) 100%),
    rgba(8, 28, 58, 0.2);
  pointer-events: none;
}
.briefing-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.briefing-hero__kicker {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9ec9f5;
}
.briefing-hero__title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: left;
}
.briefing-hero__lead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  word-break: keep-all;
}
.briefing-hero__lead strong { color: #fff; font-weight: 800; }
.briefing-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.briefing-body {
  background: #f5f7fa;
  padding: 32px 0 64px;
}

.brief-roadmap {
  margin: 0 0 28px;
  padding: 40px 36px 36px;
  background: #fff;
  border: 1px solid #d6e6f7;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(21, 96, 189, 0.08);
}
.brief-roadmap__head { margin-bottom: 28px; max-width: 820px; }
.brief-roadmap__kicker {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--klle-blue);
}
.brief-roadmap__head h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a1f3d;
}
.brief-roadmap__head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
  color: #334155;
}
.brief-roadmap__head strong { color: var(--klle-blue); font-weight: 800; }

.flow { display: grid; gap: 0; }
.flow-start,
.flow-end {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 26px;
  text-align: center;
  border-radius: 18px;
}
.flow-start {
  background: linear-gradient(180deg, #1560bd 0%, #0d4a96 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(21, 96, 189, 0.22);
}
.flow-start__tag,
.flow-end__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.flow-start__tag { background: rgba(255,255,255,0.18); color: #fff; }
.flow-start__title,
.flow-end__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.flow-start__txt,
.flow-end__txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}
.flow-start__txt { color: rgba(255,255,255,0.92); }
.flow-arrow {
  position: relative;
  margin: 0 auto;
  width: 2px;
  height: 36px;
  background: #8eb6e0;
  color: transparent;
  overflow: hidden;
}
.flow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #8eb6e0;
  border-bottom: 2px solid #8eb6e0;
  transform: translateX(-50%) rotate(45deg);
}
.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.flow-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(50% - 10px);
  height: 14px;
  border: 2px solid #8eb6e0;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  transform: translateX(-50%);
}
.flow-lane {
  margin-top: 14px;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #d6e6f7;
}
.flow-lane--exam { background: #f4faf6; border-color: #c5e4cf; }
.flow-lane__head span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: #e8f1fb;
  color: var(--klle-blue);
}
.flow-lane--exam .flow-lane__head span {
  background: #e7f6ec;
  color: #15803d;
}
.flow-lane__head h4 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color: #0a1f3d;
}
.flow-lane__head p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #475569;
}
.flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.flow-steps li {
  position: relative;
  padding: 14px 0 18px 18px;
  border-left: 2px solid #b8d4f0;
}
.flow-lane--exam .flow-steps li { border-left-color: #86c99a; }
.flow-steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.flow-steps li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--klle-blue);
}
.flow-lane--exam .flow-steps li::before { background: #15803d; }
.flow-steps b {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 900;
  color: #0a1f3d;
}
.flow-steps p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: #334155;
}
.flow-steps a {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--klle-blue);
}
.flow-lane--exam .flow-steps a { color: #15803d; }
.flow-end {
  background: #fff;
  border: 2px dashed #1560bd;
  color: #0a1f3d;
}
.flow-end__tag { background: #e8f1fb; color: var(--klle-blue); }
.flow-end__txt { color: #475569; }
.flow-end__link {
  display: inline-flex;
  margin-top: 14px;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  border-radius: 8px;
  background: var(--klle-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.flow-end__link:hover { background: #1254a8; }
@media (max-width: 720px) {
  .brief-roadmap { padding: 28px 18px; }
  .brief-roadmap__head h3 { font-size: 26px; }
  .flow-split { grid-template-columns: 1fr; }
  .flow-split::before { display: none; }
  .flow-lane { margin-top: 0; }
}

.career-showcase {
  position: relative;
  margin: 0;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #e8f0f8;
}
.career-showcase__bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/generated/career_paths_bg.png?v=2') center / cover no-repeat,
    linear-gradient(180deg, #eef4fb 0%, #e3ecf6 100%);
  opacity: 0.55;
  pointer-events: none;
}
.career-showcase__wrap {
  position: relative;
  z-index: 1;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 24px;
}
.career-showcase__head {
  max-width: 880px;
  margin-bottom: 36px;
}
.career-showcase__kicker {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--klle-blue);
}
.career-showcase__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a1f3d;
}
.career-showcase__lead {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.75;
  color: #3d536b;
  word-break: keep-all;
}
.career-showcase__lead strong { color: #0a1f3d; }
.career-showcase__lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.career-lane {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #c8d8ea;
  background: rgba(255,255,255,0.85);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.career-lane:hover { border-color: var(--klle-blue); color: var(--klle-blue); }
.career-lane.is-active {
  background: var(--klle-blue);
  border-color: var(--klle-blue);
  color: #fff;
}
.career-lane--live.is-active { background: #1560bd; border-color: #1560bd; }
.career-lane--exam.is-active { background: #15803d; border-color: #15803d; }
.career-lane--extra.is-active { background: #c2410c; border-color: #c2410c; }

.career-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
.career-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21, 96, 189, 0.12);
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.2s;
}
.career-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.1);
}
.career-tile.is-hidden { display: none; }
.career-tile--exam {
  border-color: rgba(21, 128, 61, 0.22);
}
.career-tile__badge {
  position: static;
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.career-tile__badge--live { background: rgba(21, 96, 189, 0.92); color: #fff; }
.career-tile__badge--exam { background: rgba(21, 128, 61, 0.92); color: #fff; }
.career-tile__badge--extra { background: rgba(194, 65, 12, 0.92); color: #fff; }
.career-tile__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.career-tile__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.career-tile__route {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid #d6e6f7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(21, 96, 189, 0.06);
}
.career-tile__route h4 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  color: var(--klle-blue);
  letter-spacing: -0.02em;
}
.career-tile__route ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: route-step;
}
.career-tile__route li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: #3d4a5c;
  word-break: keep-all;
  counter-increment: route-step;
}
.career-tile__route li::before {
  content: counter(route-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--klle-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.career-tile__desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  color: #3d4a5c;
  word-break: keep-all;
}
.career-tile__hook {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f2fc 0%, #dcecf9 100%);
  border: 1px solid #b8d4f0;
  border-left: 5px solid var(--klle-blue);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 700;
  color: #1560bd;
  word-break: keep-all;
}
.career-tile--exam .career-tile__hook {
  background: #ecfdf3;
  border-left-color: #15803d;
}
.career-tile[data-type="extra"] .career-tile__hook {
  background: #fff7ed;
  border-left-color: #c2410c;
}
.career-tile__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.career-tile__points li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  color: #3d4a5c;
  word-break: keep-all;
}
.career-tile__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--klle-blue);
}
.career-tile__prep {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px 16px;
  border-top: none;
  border-radius: 10px;
  background: #0f2744;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  word-break: keep-all;
}
.career-tile__prep b {
  color: #7dd3fc;
  font-weight: 900;
  margin-right: 8px;
}

.career-tile--premium {
  border: 1px solid #e8eef6;
  box-shadow: 0 16px 48px rgba(21, 96, 189, 0.07);
}
.career-tile--premium .career-tile__layout {
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  min-height: 0;
}
.career-tile--premium .career-tile__media {
  position: relative;
  margin: 0;
  min-height: 280px;
  background: #f0f6fc;
}
.career-tile--premium .career-tile__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.career-tile[data-tone="civil"] .career-tile__media img {
  object-position: center 12%;
}
.career-tile--premium .career-tile__num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(15, 39, 68, 0.35);
}
.career-tile--premium .career-tile__panel {
  padding: 24px 28px 26px;
  background: linear-gradient(180deg, #fcfdff 0%, #fff 100%);
}
.career-tile--premium .career-tile__titlebar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f7;
}
.career-tile--premium .career-tile__titles {
  flex: 1;
  min-width: 0;
}
.career-tile--premium .career-tile__kicker {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--klle-blue);
}
.career-tile--premium h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a1f3d;
}
.career-tile--premium .career-tile__badge--live {
  background: #eef5fc;
  color: #1560bd;
  border: 1px solid #c8ddf5;
}
.career-tile--premium .career-tile__badge--exam {
  background: #ecfdf3;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.career-tile--premium .career-tile__badge--extra {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}
.career-tile--premium .career-tile__hook {
  background: linear-gradient(135deg, #e8f2fc 0%, #dcecf9 100%);
  border: 1px solid #b8d4f0;
  border-left: 5px solid var(--klle-blue);
  color: #1560bd;
  font-weight: 700;
}
.career-tile--premium.career-tile--exam .career-tile__hook {
  background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
  border-color: #86efac;
  border-left-color: #15803d;
  color: #14532d;
}
.career-tile--premium[data-type="extra"] .career-tile__hook {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-color: #fdba74;
  border-left-color: #c2410c;
  color: #7c2d12;
}
.career-tile--premium .career-tile__route {
  background: #fff;
  border: 2px solid #d6e6f7;
  box-shadow: 0 2px 10px rgba(21, 96, 189, 0.06);
}

@media (max-width: 768px) {
  .career-tile--premium .career-tile__layout {
    grid-template-columns: 1fr;
  }
  .career-tile--premium .career-tile__media,
  .career-tile--premium .career-tile__media img {
    min-height: 200px;
  }
  .career-tile--premium h3 { font-size: 30px; }
  .career-tile--premium .career-tile__panel { padding: 18px 16px 20px; }
}

@media (max-width: 768px) {
  .career-tile__num { font-size: 30px; }
  .career-tile__grid { grid-template-columns: 1fr; gap: 14px; }
  .career-tile__desc,
  .career-tile__hook { font-size: 18px; }
  .career-tile__points li,
  .career-tile__prep { font-size: 16px; }
}
@media (max-width: 640px) {
  .career-showcase { padding: 48px 0 56px; }
  .career-showcase__wrap { padding: 0 16px; }
  .career-bento { gap: 12px; }
}

/* 시험·임용 전문 가이드 */
.exam-guide {
  margin: 48px 0 8px;
  padding: 40px 36px 36px;
  background: #fff;
  border: 1px solid #d6e6f7;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(21, 96, 189, 0.08);
}
.exam-guide__head { margin-bottom: 28px; max-width: 820px; }
.exam-guide__kicker {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #15803d;
  text-transform: none;
}
.exam-guide__title {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a1f3d;
}
.exam-guide__lead {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 600;
  color: #1a1a2e;
  word-break: keep-all;
}
.exam-guide__lead strong { color: var(--klle-blue); font-weight: 900; }

.exam-guide__compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.exam-compare {
  padding: 22px 20px;
  background: #f8fbff;
  border: 1px solid #d6e6f7;
  border-radius: 16px;
}
.exam-compare__tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}
.exam-compare__tag--ok { background: #1560bd; color: #fff; }
.exam-compare__tag--warn { background: #15803d; color: #fff; }
.exam-compare__tag--live { background: #eef5fc; color: #1560bd; border: 1px solid #b8d4f0; }
.exam-compare h4 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  color: #0a1f3d;
  letter-spacing: -0.02em;
}
.exam-compare__sum {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  color: #1a1a2e;
  word-break: keep-all;
}
.exam-compare__sum strong { color: #0a1f3d; font-weight: 900; }
.exam-compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.exam-compare li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  color: #334155;
}
.exam-compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--klle-blue);
}

.exam-guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
/* 강조 타이포 색 */
.exam-hl {
  font-style: normal;
  font-weight: 900;
}
.exam-hl--alert { color: #dc2626; }
.exam-hl--blue { color: #1560bd; }
.exam-hl--green { color: #15803d; }
.exam-hl--warn { color: #fbbf24; }
.exam-compare__sum .exam-hl--alert { color: #dc2626; }
.exam-compare__sum .exam-hl--blue { color: #1560bd; }
.exam-compare__sum .exam-hl--green { color: #15803d; }

.exam-guide__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding: 24px 26px;
  background: linear-gradient(135deg, #0f2744 0%, #1560bd 100%);
  border-radius: 16px;
  color: #fff;
}
.exam-guide__cta-kicker {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: #fde68a;
  letter-spacing: 0.04em;
}
.exam-guide__cta h4 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.exam-guide__cta p {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}
.exam-guide__cta .exam-hl--blue { color: #7dd3fc; }
.exam-guide__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.exam-guide__cta-actions .btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 800;
}
.exam-guide__btn-teacher {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
}
.exam-guide__btn-teacher:hover { background: #166534; border-color: #166534; }
.exam-guide__btn-room {
  background: #fff;
  color: #1560bd;
  border: 1px solid #1560bd;
}
.exam-guide__btn-room:hover { background: #eef5fc; }

@media (max-width: 960px) {
  .exam-guide { padding: 28px 18px; }
  .exam-guide__title { font-size: 30px; }
  .exam-guide__compare { grid-template-columns: 1fr; }
}

.brief-split-lite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.brief-lite-card {
  background: #fff;
  border: 1px solid #e2eaf4;
  border-radius: 14px;
  padding: 20px 18px;
}
.brief-lite-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--klle-ink);
}
.brief-lite-card__lead {
  margin: -4px 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  word-break: keep-all;
}
.brief-lite-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.brief-lite-card li {
  font-size: 16px;
  line-height: 1.5;
  color: #334155;
  word-break: keep-all;
}
.brief-lite-card b {
  color: var(--klle-blue);
  font-weight: 800;
  margin-right: 4px;
}

.brief-table-wrap {
  background: #fff;
  border: 1px solid #e2eaf4;
  border-radius: 16px;
  padding: 22px 22px 18px;
  overflow-x: auto;
}
.brief-table-wrap h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}
.brief-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.brief-table th,
.brief-table td {
  padding: 12px 12px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
  word-break: keep-all;
}
.brief-table th {
  font-size: 15px;
  color: #64748b;
  font-weight: 800;
  background: #f8fafc;
}
.brief-table td:first-child { font-weight: 900; color: var(--klle-ink); white-space: nowrap; }
.brief-cite {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #94a3b8;
  word-break: keep-all;
}
.brief-data__note {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #94a3b8;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .briefing-hero__inner,
  .brief-split-lite { grid-template-columns: 1fr; }
  .briefing-hero__title { font-size: 36px; }
  .brief-table { display: block; overflow-x: auto; }
}
/* Notice + bottom */
.notice_board_wrap { padding: 72px 0; background: var(--klle-soft); }
.notice_group { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 640px; }
.notice_box {
  border: 1px solid var(--klle-line); border-radius: 14px; padding: 24px;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.notice_box .title { display: block; margin: 0 0 16px; text-align: left; font-size: 24px; }
.notice_list { margin: 0; padding: 0; list-style: none; }
.notice_list li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 16px; line-height: 1.6; }
.notice_list li:last-child { border-bottom: 0; }
.faq dt { font-size: 18px; font-weight: 800; color: var(--klle-ink); margin-bottom: 6px; }
.faq dd { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--klle-text); }
.notice_cta { width: 100%; margin-top: 16px; }
.gate_bottom { background: var(--klle-ink); color: #fff; padding: 56px 0; }
.gate_bottom .inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.gate_bottom h2 { margin: 0 0 8px; font-size: 30px; font-weight: 800; }
.gate_bottom p { margin: 0; color: #ccc; font-size: 18px; }
.btn-white { background: #fff; color: var(--klle-blue); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.kl-footer { background: #2b2b2b; color: #aaa; padding: 32px 0 40px; font-size: 16px; line-height: 1.7; }
.kl-footer strong { color: #fff; font-size: 18px; }
.top-btn {
  position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px;
  border: 0; border-radius: 50%; background: var(--klle-blue); color: #fff;
  font-size: 24px; font-weight: 900; cursor: pointer; z-index: 400;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--klle-ink); color: #fff; padding: 12px 20px;
  border-radius: 999px; font-size: 16px; font-weight: 700; z-index: 500;
}

/* ── Compact hero + jobs first layout ── */
.hero_compact {
  background: linear-gradient(135deg, #1560bd 0%, #0092db 100%);
  color: #fff;
  padding: 28px 0 32px;
}
.hero_compact__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero_compact .bn_kicker { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: #b8e4ff; }
.hero_compact .bn_tit { margin: 0 0 8px; font-size: 36px; font-weight: 900; letter-spacing: -0.03em; }
.hero_compact .bn_txt { margin: 0 0 14px; font-size: 18px; color: rgba(255,255,255,0.9); }
.hero_compact .btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.hero_compact__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 520px;
}
.hero_compact__stats .bn_stat {
  background: rgba(255,255,255,0.95);
  border: 0;
  border-radius: 10px;
  padding: 14px 10px;
}
.hero_compact__stats .bn_stat strong { font-size: 24px; }
.hero_compact__stats .bn_stat.is-main strong { color: var(--klle-blue); }

.jobs_wrap--primary { padding-top: 28px; padding-bottom: 48px; background: #fff; }
.jobs_sub { margin: 4px 0 0; font-size: 16px; color: var(--klle-muted); }
.jobs_head_actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.jobs_top_stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 18px;
  max-width: none;
}
.jobs_top_stats .bn_stat {
  background: var(--klle-soft);
  border: 1px solid var(--klle-line);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}
.jobs_top_stats .bn_stat strong { display: block; font-size: 30px; color: var(--klle-ink); }
.jobs_top_stats .bn_stat span { font-size: 15px; color: var(--klle-muted); font-weight: 600; }
.jobs_top_stats .bn_stat.is-main { background: #eef5fc; border-color: #b8d4f0; }
.jobs_top_stats .bn_stat.is-main strong { color: var(--klle-blue); }

.successstory_wrap--compact { padding: 40px 0; }
.urgent-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.urgent-scroll {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-bottom: 4px;
}
.urgent-scroll.is-marquee {
  animation: urgent-rtl 42s linear infinite;
}
.urgent-scroll.is-marquee:hover {
  animation-play-state: paused;
}
@keyframes urgent-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .urgent-scroll.is-marquee { animation: none; }
  .urgent-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.urgent-card {
  flex: 0 0 240px;
  display: block;
  background: #fff;
  border: 1px solid var(--klle-line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.urgent-card:hover { border-color: #b8d4f0; }
.urgent-card .dday { margin-bottom: 2px; }
.urgent-card b { display: block; margin: 8px 0 4px; font-size: 16px; color: var(--klle-ink); }
.urgent-card p { margin: 0 0 6px; font-size: 16px; line-height: 1.45; color: var(--klle-text); }
.urgent-card small { font-size: 15px; color: var(--klle-muted); }


@media (max-width: 1100px) {
  .hero-slide .slide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    max-width: var(--inner);
  }
  .bn_panel,
  .bn_panel--stats,
  .bn_panel--regions,
  .bn_panel--priority {
    width: 100%;
    max-width: 100%;
  }
  .job_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .menu-btn { display: inline-flex; }
  .hero-slide .slide-inner {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px 72px;
    max-width: 560px;
    margin: 0 auto;
  }
  .bn_content { max-width: none; }
  .bn_content .bn_tit { font-size: 30px; }
  .bn_panel,
  .bn_panel--stats,
  .bn_panel--regions,
  .bn_panel--priority {
    width: 100%;
    max-width: none;
  }
  .swiper-button-box { justify-content: center; padding: 0 16px; }
  .kl-gnb {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--klle-line); padding: 12px 24px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
  }
  .kl-gnb__item { padding: 14px 0; font-size: 18px; }
  .kl-gnb.open { display: flex; }
  .kl-header { position: relative; }
  .kl-header__bar { flex-wrap: wrap; min-height: 64px; }
  .kl-gnb__item[aria-current="page"]::after { display: none; }
  .job_grid, .notice_group, .map_layout { grid-template-columns: 1fr; }
  .filter-panel { padding: 4px 14px; }
  .filter-panel__row { grid-template-columns: 1fr; gap: 8px; padding: 12px 0; }
  .filter-panel__kicker { padding-top: 0; }
  .filter-segment--sort { width: 100%; }
  .title { font-size: 30px; }
  .map_canvas { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* 합격전략은 별도 페이지. GNB는 같은 텍스트 메뉴. */
