@charset "utf-8";
/* =========================================================================
   2026 숭실대학교 소상공인 디지털 특성화대학 — 공통 스타일시트
   벤치마크(cjdigital.co.kr) 디자인 기반 · 정적 사이트
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. Design Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --navy-900: #14224e;   /* 최심 네이비 : 공지 스트립 · 강조 배경 */
  --navy-800: #1a2c5e;
  --navy-700: #223a78;
  --brand:    #2b5ba6;   /* 기본 브랜드 블루 : 버튼 · 뱃지 */
  --brand-600:#2450a0;
  --brand-500:#2e73d6;   /* 밝은 블루 : 링크 · 큰 타이틀 · 전화번호 */
  --brand-300:#7fb0e0;   /* 라이트 블루 : 히어로 투톤 강조 */
  --brand-200:#aacdee;
  --sky-100:  #e9f2fb;   /* 히어로 배경 · 라이트 섹션 */
  --sky-50:   #f4f8fd;
  --cream:    #fbf4dc;   /* 문의 카드 */
  --cream-line:#f0e4bf;
  --coral:    #ff7a4d;   /* CTA 강조 · 플로팅 버튼 */
  --coral-600:#f2653a;

  /* Neutrals */
  --ink:      #21252c;   /* 본문 */
  --gray-700: #3d434e;
  --gray-600: #5a6270;   /* 보조 텍스트 */
  --gray-400: #98a0ae;
  --gray-200: #d9dee6;
  --line:     #e4e8ef;   /* 구분선 · 카드 보더 */
  --line-soft:#eef1f6;
  --bg:       #ffffff;
  --bg-soft:  #f7f9fc;

  /* Effects — 절제된 그림자·라운드 (기관 신뢰 톤) */
  --shadow-sm: 0 1px 2px rgba(20, 34, 78, .05);
  --shadow-md: 0 4px 14px rgba(20, 34, 78, .06);
  --shadow-lg: 0 12px 28px rgba(20, 34, 78, .09);
  --shadow-card: 0 2px 6px rgba(20, 34, 78, .05), 0 14px 30px rgba(20, 34, 78, .06);
  --shadow-card-hover: 0 6px 14px rgba(20, 34, 78, .07), 0 22px 42px rgba(20, 34, 78, .10);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 84px;

  /* Fonts */
  --font-display: 'Jua', 'Noto Sans KR', system-ui, sans-serif;
  --font-body: 'Noto Sans KR', system-ui, -apple-system, 'Apple SD Gothic Neo', sans-serif;

  /* Type scale — 명확한 위계 (Gmarket GDS 위계 원칙 참고, 웹 마케팅용 확장) */
  --fs-display: clamp(2rem, 5.2vw, 3.5rem);      /* 32 → 56  Hero */
  --fs-h1:      clamp(1.625rem, 3.4vw, 2.375rem);/* 26 → 38  페이지 타이틀 */
  --fs-h2:      clamp(1.5rem, 3vw, 2rem);         /* 24 → 32  섹션 타이틀 */
  --fs-h3:      clamp(1.375rem, 2.4vw, 1.75rem);  /* 22 → 28  블록 타이틀 */
  --fs-h4:      1.1875rem;   /* 19  카드·콜아웃 타이틀 */
  --fs-h5:      1.0625rem;   /* 17 */
  --fs-lead:    1.0625rem;   /* 17  리드 본문 */
  --fs-body:    1rem;        /* 16  기본 본문 */
  --fs-sm:      0.90625rem;  /* 14.5 보조 본문 */
  --fs-detail:  0.8125rem;   /* 13  캡션·메타 */
  --fs-micro:   0.75rem;     /* 12 */
  --lh-tight:   1.22;
  --lh-heading: 1.4;
  --lh-body:    1.7;
}

/* -------------------------------------------------------------------------
   1. Reset & Base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--bg);
  line-height: var(--lh-body);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.28; font-weight: 700; }
p { margin: 0; }
table { border-collapse: collapse; width: 100%; }

/* Utilities */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
/* 반응형 안전장치: 그리드 자식이 콘텐츠 폭 때문에 컨테이너를 밀어내지 않도록 (min-width:auto 기본값 무력화) */
.info-row > *, .feature-grid > *, .steps > *, .split > *, .stat-grid > *, .flow > *, .gallery > *, .cta-inner > * { min-width: 0; }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-brand { color: var(--brand-500); }
.text-coral { color: var(--coral-600); }
.nowrap { white-space: nowrap; }

/* -------------------------------------------------------------------------
   2. Buttons & Chips
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 700; font-size: 16px; line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn-accent { background: var(--coral); color: #fff; }
.btn-accent:hover { background: var(--coral-600); transform: translateY(-1px); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-900); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--brand); border: 1.5px solid var(--brand-200); }
.btn-outline:hover { border-color: var(--brand); background: var(--sky-50); }
.btn-ghost { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { display: flex; width: 100%; white-space: normal; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; line-height: 1;
}
.chip-navy { background: var(--navy-800); color: #fff; }
.chip-blue { background: var(--brand); color: #fff; }
.chip-sky  { background: var(--sky-100); color: var(--brand-600); }
.chip-cream{ background: var(--cream); color: #9a7b28; }
.chip-coral{ background: #ffe7dd; color: var(--coral-600); }
.chip-line { background: #fff; color: var(--gray-600); border: 1px solid var(--line); }

/* Section eyebrow + title -------------------------------------------------- */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-500); font-weight: 700; font-size: 15px; letter-spacing: .02em;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 3px; border-radius: 2px; background: var(--coral); }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); line-height: var(--lh-tight); color: var(--navy-900); letter-spacing: 0; }
.section-title .accent { color: var(--brand-500); }
.section-desc { margin-top: 16px; color: var(--gray-600); font-size: 17px; max-width: 720px; margin-inline: auto; }

/* -------------------------------------------------------------------------
   3. Header / Nav
   ------------------------------------------------------------------------- */
/* 주입 래퍼가 sticky 헤더를 가두지 않도록 박스를 제거 (전체 페이지 기준 고정) */
#site-header { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand-logos { display: flex; align-items: center; gap: 16px; }
.brand-logos a { display: flex; align-items: center; }
.logo-semas { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; color: var(--gray-700); }
.logo-semas .mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--coral), #ff9a3d); flex: none; }
.logo-divider { width: 1px; height: 30px; background: var(--line); }
.logo-main { display: flex; align-items: center; gap: 11px; }
.logo-main .mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, var(--brand-500), var(--brand)); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 20px;
  box-shadow: 0 6px 14px rgba(43,91,166,.3);
}
.logo-main .txt { line-height: 1.15; }
.logo-main .txt b { display: block; font-size: 15px; color: var(--navy-900); font-weight: 700; }
.logo-main .txt span { display: block; font-size: 12.5px; color: var(--gray-600); font-weight: 500; }

.main-nav > ul { display: flex; align-items: center; gap: 6px; }
.main-nav .nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 16.5px; color: var(--gray-700);
}
.main-nav li { position: relative; }
.main-nav .nav-link:hover { color: var(--brand); background: var(--sky-50); }
.main-nav li.is-active > .nav-link { color: var(--brand); }
.main-nav .has-sub > .nav-link::after {
  content: ""; width: 8px; height: 8px; margin-left: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .55;
}
.submenu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 180px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transition: all .2s ease; z-index: 20;
}
.main-nav li.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: 11px 16px; border-radius: 9px; font-size: 15.5px; font-weight: 500; color: var(--gray-700); }
.submenu a:hover { background: var(--sky-100); color: var(--brand); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: var(--navy-900); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Announcement strip ------------------------------------------------------- */
.announce {
  background: var(--navy-900); color: #fff; text-align: center;
  font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 13px; flex-wrap: wrap; }
.announce .tag { background: var(--coral); color: #fff; font-size: 12.5px; padding: 3px 10px; border-radius: var(--radius-pill); }
.announce a { color: #ffd7c7; text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------------------
   4. Hero (home)
   ------------------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(180deg, #eaf3fc 0%, #e3eefa 100%); overflow: hidden; }
.hero::before { /* soft decorative circles */
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,176,224,.28), transparent 68%);
  top: -140px; right: -120px; pointer-events: none;
}
/* 스캘럽(물결) 상단 보더 — 네이비 반원 타일 */
.scallop-edge {
  height: 23px; width: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='23' viewBox='0 0 26 23'%3E%3Cpath d='M0 0 H26 V10 A13 13 0 0 1 0 10 Z' fill='%231a2c5e'/%3E%3C/svg%3E") repeat-x top center;
  background-size: 26px 23px;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; padding: 66px 0 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display); line-height: 1.16; color: var(--navy-900); letter-spacing: -0.01em; }
.hero h1 .lite { color: var(--brand-300); }
.hero h1 .blue { color: var(--brand-500); }
.hero-sub { margin-top: 20px; font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.6vw, 30px); color: var(--brand-600); }
.hero-lead { margin-top: 20px; font-size: 17px; color: var(--gray-700); max-width: 540px; line-height: 1.75; }
.hero-facts { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.hero-fact { display: flex; align-items: center; gap: 12px; font-size: 16.5px; color: var(--gray-700); font-weight: 500; }
.hero-fact .chip { flex: none; min-width: 84px; justify-content: center; }
.hero-fact b { color: var(--navy-900); font-weight: 700; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-phone { margin-top: 20px; display: flex; align-items: center; gap: 9px; color: var(--gray-600); font-size: 15.5px; font-weight: 500; }
.hero-phone b { font-family: var(--font-display); font-size: 22px; color: var(--brand-500); letter-spacing: .01em; }
.hero-art { position: relative; z-index: 1; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(20,34,78,.14)); }

/* -------------------------------------------------------------------------
   5. Info row (notice + course + contact)
   ------------------------------------------------------------------------- */
.info-row { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 24px; margin-top: -46px; position: relative; z-index: 5; }
.info-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.info-card .card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.info-card .card-head h3 { font-size: 20px; color: var(--navy-900); font-weight: 800; letter-spacing: -0.01em; }
.info-card .more { display: inline-flex; width: 30px; height: 30px; border-radius: 8px; align-items: center; justify-content: center; color: var(--gray-400); border: 1px solid var(--line); }
.info-card .more:hover { color: var(--brand); border-color: var(--brand-200); background: var(--sky-50); }

.mini-list { border-top: 2px solid var(--navy-800); }
.mini-list li a {
  display: flex; align-items: center; gap: 12px; padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft); font-size: 15px;
}
.mini-list li a:hover .m-title { color: var(--brand); }
.mini-list .m-cat { flex: none; font-size: 12px; font-weight: 700; color: var(--brand-600); background: var(--sky-100); padding: 3px 9px; border-radius: 6px; }
.mini-list .m-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--gray-700); font-weight: 500; }
.mini-list .m-date { flex: none; font-size: 13px; color: var(--gray-400); }

/* course promo card */
.promo-card { text-align: center; display: flex; flex-direction: column; }
.promo-card .p-icon { width: 64px; height: 64px; margin: 4px auto 14px; color: var(--brand); }
.promo-card h4 { font-weight: 800; font-size: 21px; color: var(--navy-900); letter-spacing: -0.01em; }
.promo-card p { color: var(--gray-600); font-size: 15px; margin-top: 6px; }
.promo-card .p-sep { height: 1px; background: var(--line); margin: 18px 0; }
.promo-btns { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* contact card */
.contact-card { background: #fff; }
.contact-card h4 { font-size: 15px; color: var(--gray-600); letter-spacing: .01em; }
.contact-card .c-sep { height: 1px; background: var(--line); margin: 14px 0 16px; }
.contact-card .tel { font-family: var(--font-body); font-weight: 800; font-size: 29px; color: var(--brand-600); line-height: 1.25; letter-spacing: -0.01em; }
.contact-card .hours { color: var(--gray-600); font-size: 14px; margin-top: 6px; font-weight: 500; }
.contact-card .c-apply { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding: 16px 18px; background: var(--sky-50); border-radius: var(--radius); border: 1px solid var(--line); }
.contact-card .c-apply span { font-weight: 700; color: var(--navy-900); font-size: 16px; }
.contact-card .c-apply span small { display: block; font-weight: 500; color: var(--gray-600); font-size: 13px; }
.contact-card .c-apply svg { width: 34px; height: 34px; color: var(--coral); flex: none; }

/* -------------------------------------------------------------------------
   6. Feature cards (4 courses)
   ------------------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.fc-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.fc-thumb svg, .fc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fc-badge { position: absolute; left: 16px; bottom: 14px; }
.fc-body { padding: 22px 22px 26px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.fc-body h3 { font-size: 19px; color: var(--navy-900); margin-bottom: 4px; }
.fc-tag { display: inline-block; margin: 0 auto 12px; font-size: 13px; font-weight: 700; color: var(--brand-600); }
.fc-list { display: flex; flex-direction: column; gap: 8px; text-align: left; margin-top: 4px; }
.fc-list li { position: relative; padding-left: 15px; font-size: 14.5px; color: var(--gray-700); line-height: 1.55; }
.fc-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-300); }
.fc-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13.5px; color: var(--gray-600); font-weight: 500; }
.fc-meta b { color: var(--brand-600); }

/* -------------------------------------------------------------------------
   7. Steps / process
   ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; counter-reset: step; }
.step { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-card); }
.step .num { font-family: var(--font-body); font-weight: 800; font-size: 30px; color: var(--brand-300); line-height: 1; letter-spacing: -0.02em; }
.step h4 { margin: 8px 0 8px; font-size: 18px; color: var(--navy-900); }
.step p { font-size: 14.5px; color: var(--gray-600); line-height: 1.6; }
.step:not(:last-child)::after {
  content: ""; position: absolute; right: -27px; top: 50%; width: 15px; height: 15px; z-index: 2;
  transform: translateY(-50%) rotate(45deg); border-right: 3px solid var(--brand-200); border-top: 3px solid var(--brand-200);
}

/* -------------------------------------------------------------------------
   8. Sub-page hero (breadcrumb + title)
   ------------------------------------------------------------------------- */
.page-hero { position: relative; background: var(--sky-50); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; padding: 54px 0 58px; text-align: center; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--gray-600); margin-bottom: 16px; font-weight: 500; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .5; }
.breadcrumb .cur { color: var(--brand-600); font-weight: 700; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); line-height: var(--lh-tight); color: var(--navy-900); }
.page-hero p { margin-top: 14px; color: var(--gray-600); font-size: 16.5px; }

/* -------------------------------------------------------------------------
   9. Content blocks (sub pages)
   ------------------------------------------------------------------------- */
.block-title { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); line-height: var(--lh-tight); color: var(--navy-900); margin-bottom: 8px; }
.block-title .accent { color: var(--brand-500); }
.block-lead { color: var(--gray-600); font-size: 16.5px; margin-bottom: 30px; }
.prose p { color: var(--gray-700); font-size: 16.5px; line-height: 1.85; }
.prose p + p { margin-top: 16px; }
.lead-emph { font-size: 19px; color: var(--navy-800); font-weight: 500; line-height: 1.7; }

.callout { display: flex; gap: 16px; padding: 24px 26px; border-radius: var(--radius); background: var(--sky-50); border: 1px solid var(--line); }
.callout.tone-cream { background: #fdf8ea; border-color: var(--cream-line); }
.callout.tone-coral { background: #fff4ef; border-color: #ffd9c9; }
.callout .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.callout .ic svg { width: 24px; height: 24px; }
.callout h4 { font-size: 17px; color: var(--navy-900); margin-bottom: 6px; }
.callout p, .callout li { font-size: 15px; color: var(--gray-700); line-height: 1.7; }
.callout ul { margin-top: 6px; display: flex; flex-direction: column; gap: 4px; }
.callout ul li { position: relative; padding-left: 16px; }
.callout ul li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

/* Definition / overview table --------------------------------------------- */
.data-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table table { font-size: 15.5px; }
.data-table th, .data-table td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }
.data-table th { width: 200px; background: var(--sky-50); color: var(--navy-800); font-weight: 700; white-space: nowrap; }
.data-table td { color: var(--gray-700); }
.data-table td b { color: var(--navy-900); }

/* Schedule table ---------------------------------------------------------- */
.sched-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.sched-table table { font-size: 15px; }
.sched-table thead th { background: var(--navy-800); color: #fff; padding: 15px 18px; font-weight: 700; text-align: left; font-size: 15px; }
.sched-table tbody th, .sched-table tbody td { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: top; text-align: left; color: var(--gray-700); }
.sched-table tbody th { font-weight: 700; color: var(--navy-800); white-space: nowrap; background: var(--sky-50); }
.sched-table tbody tr:last-child th, .sched-table tbody tr:last-child td { border-bottom: 0; }
.sched-table .hl { color: var(--coral-600); font-weight: 700; }
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.topics { display: flex; flex-direction: column; gap: 5px; }
.topics li { position: relative; padding-left: 15px; font-size: 14.5px; line-height: 1.5; }
.topics li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-300); }
.req { color: var(--coral-600); font-weight: 700; font-size: 12.5px; }

/* Tabs -------------------------------------------------------------------- */
.tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--sky-100); border-radius: var(--radius-pill); margin-bottom: 28px; }
.tab-btn { padding: 11px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15.5px; color: var(--gray-600); }
.tab-btn.is-active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Timeline (annual schedule) ---------------------------------------------- */
.timeline { position: relative; padding-left: 8px; }
.tl-item { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 0 0 30px 30px; border-left: 2px solid var(--line); }
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -9px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 4px solid var(--brand); }
.tl-item.is-key::before { border-color: var(--coral); }
.tl-period { font-weight: 700; color: var(--brand-600); font-size: 15px; }
.tl-body h4 { font-size: 17px; color: var(--navy-900); margin-bottom: 4px; }
.tl-body p { color: var(--gray-600); font-size: 14.5px; }

/* Split intro + stat tiles ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.narrow { gap: 40px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-tile { background: #fff; border-radius: var(--radius-lg); padding: 24px 26px; box-shadow: var(--shadow-card); }
.stat-tile .st-num { font-family: var(--font-body); font-weight: 800; font-size: 38px; letter-spacing: -0.02em; color: var(--brand-600); line-height: 1; }
.stat-tile .st-num small { font-size: 19px; font-weight: 700; }
.stat-tile .st-label { margin-top: 10px; color: var(--gray-600); font-weight: 500; font-size: 15px; }
.stat-tile.accent { background: var(--brand); box-shadow: 0 10px 24px rgba(43, 91, 166, .22); }
.stat-tile.accent .st-num, .stat-tile.accent .st-label { color: #fff; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.check-list li { position: relative; padding-left: 26px; font-size: 16px; color: var(--gray-700); line-height: 1.65; }
.check-list li b { color: var(--navy-900); font-weight: 700; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232b5ba6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* Gallery ------------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; }
/* 16/9 = 제공된 캠퍼스 사진(1280×720) 비율. 다른 비율로 바꾸면 사진 우하단 숭실대 워터마크가 잘린다. */
.gal-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--sky-100); aspect-ratio: 16/9; }
.gal-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; }
.gal-slide.is-active { opacity: 1; }
.gal-slide svg, .gal-slide img { width: 100%; height: 100%; object-fit: cover; }
.gal-caption-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.gal-caption { font-weight: 700; color: var(--navy-900); font-size: 16px; }
.gal-nav { display: flex; gap: 8px; }
.gal-nav button { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--brand); display: grid; place-items: center; transition: all .18s; }
.gal-nav button:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.gal-nav svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------------------
   10. FAQ accordion
   ------------------------------------------------------------------------- */
.faq-list { max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item.is-open { border-color: var(--brand-200); box-shadow: var(--shadow-md); }
.faq-q { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; padding: 22px 24px; }
.faq-q .q-mark { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--sky-100); color: var(--brand); font-family: var(--font-display); font-size: 19px; display: grid; place-items: center; }
.faq-q .q-text { flex: 1; font-size: 17px; font-weight: 700; color: var(--navy-900); }
.faq-q .q-toggle { flex: none; width: 26px; height: 26px; position: relative; color: var(--gray-400); transition: transform .25s ease; }
.faq-item.is-open .q-toggle { transform: rotate(180deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 24px 74px; color: var(--gray-700); font-size: 15.5px; line-height: 1.8; }
.faq-a-inner b { color: var(--navy-800); }

/* -------------------------------------------------------------------------
   11. Board (게시판 — 임시)
   ------------------------------------------------------------------------- */
.board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.board-count { font-size: 15px; color: var(--gray-600); }
.board-count b { color: var(--brand); font-weight: 700; }
.board-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { padding: 8px 16px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 700; color: var(--gray-600); background: #fff; border: 1px solid var(--line); }
.filter-chip.is-active, .filter-chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.board-search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 6px 6px 18px; }
.board-search input { border: 0; outline: 0; font-size: 14.5px; min-width: 180px; font-family: inherit; background: transparent; }
.board-search button { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; }
.board-search button svg { width: 17px; height: 17px; }

.board-table { border-top: 2px solid var(--navy-800); }
.board-table table { font-size: 15.5px; }
.board-table thead th { padding: 15px 12px; font-size: 14.5px; color: var(--gray-600); font-weight: 700; border-bottom: 1px solid var(--line); background: var(--sky-50); text-align: center; }
.board-table tbody td { padding: 18px 12px; border-bottom: 1px solid var(--line-soft); text-align: center; color: var(--gray-600); font-size: 14.5px; }
.board-table .col-no { width: 72px; }
.board-table .col-cat { width: 110px; }
.board-table .col-title { text-align: left; }
.board-table .col-date { width: 130px; }
.board-table .col-views { width: 80px; }
.board-table .col-file { width: 70px; }
.board-table tbody tr:hover { background: var(--sky-50); }
.board-table .b-title { color: var(--navy-900); font-weight: 500; text-align: left; display: inline-flex; align-items: center; gap: 8px; }
.board-table tr:hover .b-title { color: var(--brand); }
.board-table .b-new { font-size: 10px; font-weight: 700; color: #fff; background: var(--coral); border-radius: 5px; padding: 2px 6px; vertical-align: middle; }
.board-table .b-pin { color: var(--coral); }
.board-table .row-notice { background: #fbfcfe; }
.board-cat { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 4px 11px; border-radius: var(--radius-pill); }
.cat-모집 { background: #e7f0fb; color: var(--brand-600); }
.cat-안내 { background: #eaf6ee; color: #2e8b57; }
.cat-행사 { background: #fdeedf; color: #c9791d; }
.cat-결과발표 { background: #f2ecfb; color: #7a55c2; }
.dl-btn { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: var(--sky-100); color: var(--brand); }
.dl-btn:hover { background: var(--brand); color: #fff; }
.dl-btn svg { width: 17px; height: 17px; }
/* 파일형식 아이콘 */
.file-dl { display: inline-flex; padding: 4px; border-radius: 9px; transition: background .15s; }
.file-dl:hover { background: var(--sky-100); }
.file-ic { width: 30px; height: 34px; display: block; }
.file-lock { display: inline-grid; place-items: center; width: 34px; height: 34px; color: var(--gray-400); }
.file-lock svg { width: 20px; height: 20px; }

/* pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 34px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 6px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 14.5px; font-weight: 700; color: var(--gray-600); border: 1px solid var(--line); background: #fff; }
.pagination a:hover { border-color: var(--brand-200); color: var(--brand); }
.pagination .is-current { background: var(--brand); color: #fff; border-color: var(--brand); }
.pagination .nav-arrow svg { width: 16px; height: 16px; }

/* board detail (view) */
.post-head { border-top: 2px solid var(--navy-800); border-bottom: 1px solid var(--line); padding: 26px 4px; }
.post-head h1 { font-size: clamp(22px, 3vw, 30px); color: var(--navy-900); font-family: var(--font-display); font-weight: 400; margin: 12px 0 14px; line-height: 1.35; }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--gray-500, #8a92a0); font-size: 14px; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-600); }
.post-meta svg { width: 15px; height: 15px; opacity: .6; }
.post-body { padding: 40px 4px; color: var(--gray-700); font-size: 16px; line-height: 1.9; min-height: 220px; }
.post-body p + p { margin-top: 18px; }
.post-body h3 { color: var(--navy-900); font-size: 19px; margin: 28px 0 12px; }
.post-attach { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--sky-50); border: 1px solid var(--line); border-radius: var(--radius); margin: 10px 0; }
.post-attach svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
.post-attach a { color: var(--brand-600); font-weight: 700; }
.post-nav { border-top: 1px solid var(--line); margin-top: 20px; }
.post-nav a { display: flex; align-items: center; gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.post-nav .dir { flex: none; font-weight: 700; color: var(--gray-500, #8a92a0); min-width: 60px; }
.post-nav a:hover .pn-title { color: var(--brand); }
.post-nav .pn-title { color: var(--gray-700); }
.post-actions { display: flex; justify-content: center; margin-top: 30px; }

/* Flow (선발 절차) --------------------------------------------------------- */
.flow { display: flex; flex-wrap: wrap; gap: 14px; }
.flow li { flex: 1 1 160px; background: #fff; border-radius: var(--radius); padding: 22px 20px; position: relative; box-shadow: var(--shadow-card); }
.flow li .fn { width: 32px; height: 32px; border-radius: 9px; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 16px; margin-bottom: 12px; }
.flow li h4 { font-size: 16px; color: var(--navy-900); }
.flow li:not(:last-child)::after { content: ""; position: absolute; right: -11px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%) rotate(45deg); border-right: 3px solid var(--brand-200); border-top: 3px solid var(--brand-200); z-index: 2; }

/* Forms -------------------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); max-width: 860px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
.field label .req-mark { color: var(--coral); margin-left: 2px; }
.field input, .field select, .field textarea { border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px; font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,91,166,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span { display: inline-block; padding: 11px 20px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); font-weight: 700; font-size: 14.5px; color: var(--gray-600); }
.radio-chip input:checked + span { background: var(--brand); color: #fff; border-color: var(--brand); }
.form-agree { display: grid; grid-template-columns: auto 1fr; width: 100%; align-items: start; gap: 10px; margin-top: 4px; font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.form-agree input { margin-top: 3px; }
.form-agree a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.form-note { text-align: center; color: var(--gray-400); font-size: 13.5px; margin-top: 18px; line-height: 1.6; }

/* 교육신청 상단 접수 안내 CTA 카드 */
.apply-cta { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: center; max-width: 1040px; margin-inline: auto; padding: 40px 44px; border-radius: var(--radius-lg); background: linear-gradient(120deg, #eef5fc, #e5eff9); box-shadow: var(--shadow-card); }
.apply-cta__logo { display: block; width: auto; margin-bottom: 16px; }
.apply-cta__title { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); line-height: var(--lh-tight); color: var(--navy-900); }
.apply-cta__title .accent { color: var(--brand-500); }
.apply-cta__desc { margin-top: 12px; color: var(--gray-700); font-size: 15.5px; line-height: 1.75; }
.apply-cta__side { display: flex; flex-direction: column; gap: 14px; }
.apply-cta__tel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: var(--gray-700); font-weight: 700; font-size: 15px; }
.apply-cta__tel svg { width: 17px; height: 17px; color: var(--brand); }
@media (max-width: 820px) {
  .apply-cta { grid-template-columns: 1fr; gap: 26px; padding: 32px 26px; }
}

/* -------------------------------------------------------------------------
   12. CTA band
   ------------------------------------------------------------------------- */
.cta-band { position: relative; background: linear-gradient(100deg, var(--navy-900), var(--navy-800)); color: #fff; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 52px 0; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.3; }
.cta-inner p { margin-top: 12px; color: rgba(255,255,255,.82); font-size: 16.5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   13. Footer
   ------------------------------------------------------------------------- */
.partners { padding: 30px 0 34px; border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.partners-label { text-align: center; font-size: 12.5px; color: var(--gray-400); font-weight: 700; letter-spacing: .06em; margin-bottom: 18px; }
.marquee { position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 20s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner-logo { flex: none; display: inline-flex; align-items: center; margin: 0 32px; }
.partner-logo img { display: block; width: auto; max-width: none; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.site-footer { background: #f4f6fa; color: var(--gray-600); padding: 54px 0 30px; font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-brand .logo-main { margin-bottom: 16px; }
.footer-brand p { color: var(--gray-600); line-height: 1.8; font-size: 14px; }
.footer-brand .org { font-weight: 700; color: var(--navy-900); font-size: 15px; margin-bottom: 4px; }
.footer-col h5 { font-size: 15px; color: var(--navy-900); font-weight: 700; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-600); }
.footer-col a:hover { color: var(--brand); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; line-height: 1.6; }
.footer-contact svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: 3px; }
.footer-sns { display: flex; gap: 10px; margin-top: 18px; }
.footer-sns a { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gray-600); }
.footer-sns a:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.footer-sns svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: var(--gray-700); font-weight: 500; }
.footer-links a.strong { color: var(--brand-600); font-weight: 700; }
.footer-links .sep { color: var(--gray-200); }
.copyright { color: var(--gray-400); font-size: 13px; line-height: 1.7; }
.gov-note { margin-top: 6px; font-size: 12.5px; color: var(--gray-400); }

/* Floating contact button -------------------------------------------------- */
.float-btn { position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px rgba(255,122,77,.45); transition: transform .2s ease; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn::after { content: attr(data-tip); position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--navy-900); color: #fff; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 10px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.float-btn:hover::after { opacity: 1; }

/* -------------------------------------------------------------------------
   14. Mobile nav drawer
   ------------------------------------------------------------------------- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,34,78,.5); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 200; }
.mobile-drawer { position: fixed; top: 0; right: 0; width: min(340px, 86vw); height: 100%; background: #fff; z-index: 210; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.15); }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open .mobile-drawer { transform: none; }
body.nav-open { overflow: hidden; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; color: var(--navy-900); }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-nav { padding: 12px 14px 24px; }
.drawer-nav > li > a { display: block; padding: 15px 14px; font-size: 17px; font-weight: 700; color: var(--navy-900); border-radius: 10px; }
.drawer-nav > li > a:hover { background: var(--sky-50); color: var(--brand); }
.drawer-nav .sub { padding: 2px 0 8px 14px; }
.drawer-nav .sub a { display: block; padding: 10px 14px; font-size: 15px; color: var(--gray-600); font-weight: 500; border-radius: 8px; }
.drawer-nav .sub a:hover { color: var(--brand); background: var(--sky-50); }
.drawer-cta { padding: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }

/* -------------------------------------------------------------------------
   15. Responsive
   ------------------------------------------------------------------------- */
/* ≤1080 · 좁은 데스크톱 / 가로 태블릿 */
@media (max-width: 1080px) {
  .info-row { grid-template-columns: 1fr 1fr; }
  .info-row .contact-card { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after, .step:last-child::after { display: none; }
}
/* ≤900 · 태블릿 : 내비 접힘 · 히어로/분할 세로 정렬 */
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; padding: 40px 0 60px; }
  .hero-art { max-width: 420px; margin: 0 auto; order: -1; }
  .split, .split.narrow { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr; gap: 28px; }
  .info-row { grid-template-columns: 1fr; margin-top: -32px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .data-table th { width: 150px; }
}
/* ≤600 · 모바일 : 단일 컬럼 · 표 스택 */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 30px; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .callout { flex-wrap: wrap; }
  .callout .btn { width: 100%; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .hero-actions .btn { flex: 1; }
  .board-table .col-cat, .board-table .col-views { display: none; }
  .board-toolbar { flex-direction: column; align-items: stretch; }
  .board-filters { overflow-x: auto; padding-bottom: 2px; }
  .board-search input { min-width: 0; flex: 1; }
  .announce .container { font-size: 13px; gap: 6px 10px; }
  .logo-semas, .logo-divider { display: none; }
  .float-btn { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .post-nav .dir { min-width: 44px; }
  .partner-logo { font-size: 12px; padding: 8px 12px; }
  /* 정의형 표(사업 개요 등): 라벨-값 세로 스택 */
  .data-table tr { display: block; border-bottom: 1px solid var(--line); }
  .data-table tr:last-child { border-bottom: 0; }
  .data-table th, .data-table td { display: block; width: 100%; border-bottom: 0; white-space: normal; }
  .data-table th { padding: 14px 18px 2px; background: transparent; color: var(--brand-600); }
  .data-table td { padding: 2px 18px 14px; }
}
/* ≤400 · 소형 모바일 */
@media (max-width: 400px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
