/* =========================================================
   JB Local Content Platform · Design System
   ========================================================= */
:root {
  --brand: #1F3A8A;
  --brand-dark: #162A66;
  --brand-soft: #E8ECF8;
  --accent: #C0392B;
  --ink: #111827;
  --ink-2: #1F2937;
  --gray-900: #1F2937;
  --gray-700: #4B5563;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.06);
  --shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 16px 40px rgba(17, 24, 39, 0.1);
  --grad-brand: linear-gradient(135deg, #1F3A8A 0%, #162A66 100%);
  --grad-warm: linear-gradient(135deg, #1F3A8A 0%, #162A66 100%);
  --grad-cool: linear-gradient(135deg, #1F3A8A 0%, #162A66 100%);
  --container: 1240px;
  --trans: 0.28s cubic-bezier(0.33, 1, 0.68, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--trans);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(42, 75, 255, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42, 75, 255, 0.36); }
.btn--line {
  border-color: var(--gray-300);
  color: var(--ink);
  background: var(--white);
}
.btn--line:hover { border-color: var(--brand); color: var(--brand); }
.btn--ghost {
  color: var(--gray-700);
  background: transparent;
}
.btn--ghost:hover { color: var(--brand); background: var(--gray-100); }
.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 16px; }
.btn--sm { padding: 6px 12px; font-size: 12px; }
.btn--block { width: 100%; }

/* =========================================================
   Chips / Tags / Badges
   ========================================================= */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
  letter-spacing: 0;
}
.chip--blue { background: var(--brand-soft); color: var(--brand); }
.chip--pink { background: var(--brand-soft); color: var(--brand); }
.chip--green { background: var(--gray-100); color: var(--ink-2); }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.tag--accent {
  background: linear-gradient(90deg, rgba(42, 75, 255, 0.08), rgba(255, 90, 122, 0.08));
  border-color: transparent;
  color: var(--brand);
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  letter-spacing: 0.04em;
}
.badge--hot { background: var(--accent); }
.badge { background: var(--ink); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: var(--white);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.05em;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(42, 75, 255, 0.28);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; color: var(--ink); }
.logo__text small { font-size: 11.5px; color: var(--gray-500); font-weight: 500; }
.logo--inv .logo__text strong { color: var(--white); }
.logo--inv .logo__text small { color: rgba(255, 255, 255, 0.6); }

.gnb ul { display: flex; gap: 2px; align-items: center; }
.gnb a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 10px;
  transition: all var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.gnb a:hover { color: var(--brand); background: var(--gray-100); }
.gnb a.is-active { color: var(--brand); background: rgba(42, 75, 255, 0.08); }
.header__util { display: flex; align-items: center; gap: 8px; }
.gnb__toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.gnb__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F6FA 0%, #FAFAFA 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(31, 58, 138, 0.18), transparent 70%);
  top: -80px; left: -100px;
}
.hero__blob--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31, 58, 138, 0.12), transparent 70%);
  bottom: -120px; right: -60px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 75, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 75, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 75%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin: 24px 0 20px;
  letter-spacing: -0.03em;
}
.hero__desc { font-size: 17px; color: var(--gray-700); line-height: 1.75; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.hero__stats span { font-size: 13px; color: var(--gray-500); }

.hero__visual { position: relative; height: 480px; }
.card-stack { position: relative; width: 100%; height: 100%; }
.card-stack__item {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  transition: transform var(--trans);
}
.card-stack__item:hover { transform: translateY(-6px) rotate(0deg) !important; }
.card-stack__item--1 { top: 30px; left: 20px; transform: rotate(-6deg); z-index: 3; }
.card-stack__item--2 { top: 130px; left: 180px; transform: rotate(3deg); z-index: 2; }
.card-stack__item--3 { top: 280px; left: 60px; transform: rotate(-2deg); z-index: 1; }
.card-stack__item h4 { font-size: 17px; margin: 10px 0 8px; font-weight: 800; letter-spacing: -0.02em; }
.card-stack__item p { font-size: 13.5px; color: var(--gray-700); line-height: 1.6; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid var(--gray-300);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--brand);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* =========================================================
   Quick Menu
   ========================================================= */
.quick { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.quick__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.quick__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  border-radius: var(--radius);
  transition: all var(--trans);
  text-align: center;
}
.quick__list a:hover { background: var(--gray-100); transform: translateY(-3px); }
.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-brand);
  display: block;
  position: relative;
  box-shadow: 0 6px 16px rgba(42, 75, 255, 0.2);
}
.ico--edu,
.ico--mentor,
.ico--fund,
.ico--local,
.ico--story,
.ico--chat { background: var(--grad-brand); }
.ico::after {
  content: '';
  position: absolute;
  inset: 12px;
  background: var(--white);
  opacity: 0.4;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 30% 30%, 30% 100%, 0 100%);
}
.quick__list strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.quick__list span { font-size: 12px; color: var(--gray-500); }

/* =========================================================
   Section Common
   ========================================================= */
.section { padding: 100px 0; }
.section--talk { background: var(--white); }
.section--map { background: linear-gradient(180deg, var(--gray-100), var(--white)); }
.section--program { background: var(--ink); color: var(--white); }
.section--program .section__title,
.section--program .eyebrow { color: var(--white); }
.section--split { background: var(--white); }
.section--notice { background: var(--gray-100); }
.section--partner { background: var(--white); padding: 80px 0; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.section__desc { font-size: 16px; color: var(--gray-700); margin-top: 10px; }
.section__more { text-align: center; margin-top: 40px; }
.section__tabs { display: flex; gap: 6px; background: var(--gray-100); padding: 4px; border-radius: 100px; }
.tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 100px;
  transition: all var(--trans);
}
.tab.is-active { background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   Grids
   ========================================================= */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--news {
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.grid--news .news-card--feature { grid-row: span 2; }

/* =========================================================
   News Card
   ========================================================= */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.news-card__thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card--feature .news-card__thumb { aspect-ratio: 16 / 11; }
.news-card__thumb .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.news-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card--feature h3 { font-size: 22px; font-weight: 800; -webkit-line-clamp: 3; }
.news-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--gray-500); margin-top: auto; padding-top: 10px; }

.thumb-ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.thumb-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 50%);
}
.thumb-ph--1 { background: linear-gradient(135deg, #1F3A8A, #162A66); }
.thumb-ph--2 { background: linear-gradient(135deg, #374151, #1F2937); }
.thumb-ph--3 { background: linear-gradient(135deg, #1F3A8A, #374151); }
.thumb-ph--4 { background: linear-gradient(135deg, #4B5563, #1F2937); }
.thumb-ph--5 { background: linear-gradient(135deg, #162A66, #111827); }
.thumb-ph--6 { background: linear-gradient(135deg, #1F3A8A, #4B5563); }
.thumb-ph--7 { background: linear-gradient(135deg, #374151, #162A66); }
.thumb-ph--8 { background: linear-gradient(135deg, #1F2937, #4B5563); }

/* =========================================================
   Press List
   ========================================================= */
.press-list { display: flex; flex-direction: column; gap: 4px; }
.press-list li {
  display: grid;
  grid-template-columns: 80px 1fr 140px;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--trans);
}
.press-list li:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.press-list__num { font-size: 13px; color: var(--gray-500); font-weight: 700; letter-spacing: 0.05em; }
.press-list__body h4 { font-size: 18px; font-weight: 700; margin: 8px 0 6px; letter-spacing: -0.02em; }
.press-list__body p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
.press-list__meta { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.press-list__meta time { font-size: 13px; color: var(--gray-500); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--trans);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

/* =========================================================
   Map Section
   ========================================================= */
.map-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  align-items: center;
}
.map-wrap__map { position: relative; }
.jb-map { width: 100%; height: auto; }
.jb-map .region {
  fill: var(--gray-200);
  stroke: var(--white);
  stroke-width: 2;
  cursor: pointer;
  transition: all var(--trans);
}
.jb-map .region:hover { fill: var(--brand); }
.jb-map .region.is-active { fill: url(#regionGrad) var(--brand); }
.jb-map .labels text {
  font-size: 11px;
  font-weight: 700;
  fill: var(--ink-2);
  text-anchor: middle;
  pointer-events: none;
  font-family: 'Pretendard', sans-serif;
}

.region-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.region-card h3 { font-size: 22px; font-weight: 800; margin: 10px 0; letter-spacing: -0.02em; }
.region-card__desc { font-size: 14.5px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.region-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.region-card__stats li { text-align: center; }
.region-card__stats strong { display: block; font-size: 22px; font-weight: 800; color: var(--brand); }
.region-card__stats span { font-size: 12px; color: var(--gray-500); }
.region-card__news h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--ink-2); }
.region-card__news ul { margin-bottom: 20px; }
.region-card__news li {
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--gray-700);
  border-bottom: 1px dashed var(--gray-300);
  line-height: 1.5;
}
.region-card__news li:last-child { border-bottom: none; }

/* =========================================================
   Track (Education Program)
   ========================================================= */
.track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.track::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0.3;
}
.track__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: all var(--trans);
}
.track__item:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.08); }
.track__item--accent { background: var(--grad-brand); border-color: transparent; }
.track__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-bottom: 16px;
}
.track__item h3 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.02em; }
.track__item p { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin-bottom: 16px; }
.track__item ul li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}
.track__item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.track__item--accent ul li::before { color: var(--white); }

/* =========================================================
   Split Section (Mentors & Stories)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.split .section__title { font-size: 28px; margin-bottom: 8px; }
.split .section__desc { margin-bottom: 32px; }
.mentors {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.mentor {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.mentor:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.mentor__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  position: relative;
}
.mentor__avatar::before {
  content: attr(data-init);
  position: relative;
}
.mentor__avatar--2,
.mentor__avatar--3,
.mentor__avatar--4 { background: var(--grad-brand); }
.mentor__info strong { font-size: 16px; font-weight: 700; }
.mentor__info span { font-size: 12.5px; color: var(--gray-500); margin-left: 8px; }
.mentor__info p { font-size: 13.5px; color: var(--gray-700); margin-top: 4px; }

.story-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: all var(--trans);
}
.story-card:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.story-card__num {
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}
.story-card h4 { font-size: 18px; font-weight: 800; margin: 8px 0; letter-spacing: -0.02em; }
.story-card p { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 10px; }
.story-card__meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--brand); font-weight: 600; }

/* =========================================================
   Notice Panels
   ========================================================= */
.panel { background: var(--white); border-radius: var(--radius-lg); padding: 28px; }
.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.panel__head h3 { font-size: 18px; font-weight: 800; }
.link { font-size: 13px; color: var(--gray-700); font-weight: 600; }
.link:hover { color: var(--brand); }

.notice-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-200);
  align-items: center;
}
.notice-list li:last-child { border-bottom: none; }
.notice-list strong { font-size: 14.5px; font-weight: 700; color: var(--ink); flex: 1; }
.notice-list p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.notice-list--plain time { font-size: 12.5px; color: var(--gray-500); }

.d-day {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.d-day--warn { background: var(--accent); }
.d-day--safe { background: var(--gray-500); }

/* =========================================================
   Partners
   ========================================================= */
.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.partner {
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: all var(--trans);
  text-align: center;
  padding: 0 10px;
}
.partner:hover { background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 58, 138, 0.35), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(40px);
}
.cta::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  bottom: -200px;
  left: -100px;
  filter: blur(40px);
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cta p { color: rgba(255, 255, 255, 0.75); font-size: 16px; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn--line { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.cta .btn--line:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); color: var(--white); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #080D24; color: rgba(255, 255, 255, 0.7); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 50px; }
.footer__brand p { font-size: 13.5px; line-height: 1.8; margin-top: 20px; }
.footer__menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__menu h5 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__menu ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer__menu a:hover { color: var(--white); }
.footer__copy { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 24px 0; }
.footer__copy .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__copy small { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }

/* =========================================================
   Sub Page Hero
   ========================================================= */
.sub-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #F5F6FA 0%, #FAFAFA 100%);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 58, 138, 0.08), transparent 70%);
  top: -200px;
  right: -150px;
  filter: blur(40px);
}
.sub-hero__inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--gray-300); }
.sub-hero h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.2; }
.sub-hero p { font-size: 17px; color: var(--gray-700); margin-top: 14px; max-width: 620px; }

.filter-bar {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.filter-bar__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--trans);
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand); }
.filter-chip.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.search {
  position: relative;
  width: 280px;
}
.search input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: all var(--trans);
}
.search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(42, 75, 255, 0.1); }
.search::after {
  content: '🔍';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.6;
}

/* =========================================================
   Sub Page Card Grids (reusable)
   ========================================================= */
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}
.pagination button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  transition: all var(--trans);
}
.pagination button:hover,
.pagination button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* =========================================================
   Program Detail
   ========================================================= */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card__head {
  padding: 28px 24px 20px;
  background: var(--grad-brand);
  color: var(--white);
  position: relative;
}
.program-card:nth-child(n) .program-card__head { background: var(--grad-brand); }
.program-card__head h3 { font-size: 20px; font-weight: 800; margin: 10px 0 8px; letter-spacing: -0.02em; }
.program-card__head p { font-size: 13.5px; opacity: 0.85; line-height: 1.6; }
.program-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.program-card__body dl { display: grid; grid-template-columns: 80px 1fr; gap: 8px 14px; font-size: 13.5px; }
.program-card__body dt { color: var(--gray-500); font-weight: 600; }
.program-card__body dd { color: var(--ink); font-weight: 600; }
.program-card__footer { padding: 16px 24px; border-top: 1px solid var(--gray-200); display: flex; gap: 10px; }

/* =========================================================
   Community (Q&A)
   ========================================================= */
.qna-list li {
  display: grid;
  grid-template-columns: 60px 1fr 180px;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  align-items: center;
  transition: all var(--trans);
}
.qna-list li:hover { border-color: var(--brand); }
.qna-list .status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 28px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.status--q { background: var(--brand-soft); color: var(--brand); }
.status--a { background: var(--gray-100); color: var(--gray-700); }
.qna-list__info { display: flex; flex-direction: column; gap: 4px; }
.qna-list__info strong { font-size: 15.5px; font-weight: 700; }
.qna-list__info p { font-size: 13px; color: var(--gray-500); }
.qna-list__meta { text-align: right; font-size: 12.5px; color: var(--gray-500); }
.qna-list__meta div { margin-bottom: 4px; }

/* =========================================================
   About Page
   ========================================================= */
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.vision-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.vision-card__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-card:nth-child(2) .vision-card__num,
.vision-card:nth-child(3) .vision-card__num { background: var(--grad-brand); }
.vision-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.vision-card p { color: var(--gray-700); font-size: 14.5px; line-height: 1.7; }

.about-flow {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
}
.about-flow__title { font-size: 22px; font-weight: 800; margin-bottom: 24px; text-align: center; letter-spacing: -0.02em; }
.about-flow__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-flow__step { background: var(--white); padding: 20px; border-radius: var(--radius); text-align: center; }
.about-flow__step strong { display: block; font-size: 16px; margin-bottom: 6px; color: var(--brand); font-weight: 800; }
.about-flow__step p { font-size: 13.5px; color: var(--gray-700); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 420px; max-width: 440px; margin: 0 auto; }
  .quick__list { grid-template-columns: repeat(3, 1fr); }
  .grid--news { grid-template-columns: repeat(2, 1fr); }
  .grid--news .news-card--feature { grid-row: auto; }
  .map-wrap { grid-template-columns: 1fr; }
  .track { grid-template-columns: repeat(2, 1fr); }
  .track::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid--2 { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vision-cards { grid-template-columns: 1fr; }
  .about-flow__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gnb, .header__util .btn { display: none; }
  .gnb__toggle { display: flex; }
  .gnb.is-open {
    display: block;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--gray-200);
  }
  .gnb.is-open ul { flex-direction: column; gap: 2px; }
  .hero { padding: 40px 0 70px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .quick__list { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 0; }
  .grid--news, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery__item--lg, .gallery__item--wide, .gallery__item--tall { grid-column: span 2; grid-row: auto; }
  .track { grid-template-columns: 1fr; }
  .press-list li { grid-template-columns: 1fr; gap: 10px; }
  .press-list__meta { justify-content: flex-start; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .qna-list li { grid-template-columns: 1fr; gap: 10px; }
  .qna-list__meta { text-align: left; }
}
