/* EMENC site main styles
   Fonts: Pretendard + Poppins for KR/EN, Noto Sans JP for JP, Noto Sans SC for CN
   Loaded via header.php (Google Fonts + CDN Pretendard)                       */

:root {
  --c-bg: #ffffff;
  --c-fg: #1a1f2e;
  --c-muted: #6c7383;
  --c-line: #e6e8ee;
  --c-line-2: #f2f4f8;
  --c-primary: #0b3d91;
  --c-primary-2: #1054c4;
  --c-accent: #f5a623;
  --c-danger: #d9333f;
  --c-ok: #2faa6c;
  --c-card: #ffffff;
  --c-tag: #eef3fd;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(10,20,40,.06), 0 1px 2px rgba(10,20,40,.04);
  --shadow-md: 0 10px 30px rgba(10,20,40,.08), 0 2px 6px rgba(10,20,40,.04);
  --header-h: 80px;
  --max-w: 1600px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--c-fg);
  background: #fbfcfe;
  font-family: "Poppins", "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Language-specific fonts — most-used safe family per region */
body.lang-jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 400;
}
body.lang-cn {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", system-ui, sans-serif;
  font-weight: 400;
}
body.lang-kr {
  font-family: "Pretendard", "Poppins", system-ui, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}
body.lang-en {
  /* KR과 동일 글꼴(Pretendard)로 통일 — Poppins 우선 시 KR/EN 폰트가 달라 보이던 문제 해결 */
  font-family: "Pretendard", "Poppins", system-ui, -apple-system, "Apple SD Gothic Neo", "Segoe UI", Roboto, sans-serif;
}
body.lang-th {
  font-family: "Noto Sans Thai", "Sarabun", "Tahoma", system-ui, sans-serif;
  font-weight: 400;
}
body.lang-ru {
  font-family: "Pretendard", "Roboto", "Inter", "PT Sans", "Segoe UI", system-ui, sans-serif;
}
body.lang-vi {
  /* Vietnamese needs full Latin-Extended-Additional + tone marks support */
  font-family: "Pretendard", "Be Vietnam Pro", "Roboto", "Inter", system-ui, sans-serif;
}
body.lang-fr, body.lang-de, body.lang-es {
  /* Latin-script European languages — Pretendard handles diacritics well */
  font-family: "Pretendard", "Poppins", "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; letter-spacing: -.01em; }
.muted { color: var(--c-muted); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 1200px; }
/* 게시판(목록·글보기) 콘텐츠 폭 제한 */
.container.board-page { max-width: 1400px; }
.container.post-view { max-width: 1200px; }

/* Member auth pages */
.auth-wrap { padding: 56px 20px 80px; display: flex; justify-content: center; }
.auth-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: 36px 32px; box-shadow: var(--shadow-sm); }
.auth-card.wide { max-width: 520px; }
.auth-card h1 { font-size: 26px; font-weight: 700; margin: 0 0 22px; text-align: center; }
.auth-card label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.auth-card input { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid var(--c-line); border-radius: 9px; font-size: 15px; font-family: inherit; box-sizing: border-box; }
.auth-card input:disabled { background: var(--c-line-2); color: var(--c-muted); }
.auth-btn { width: 100%; padding: 13px; font-size: 16px; margin-top: 6px; }
.auth-alt { text-align: center; margin: 18px 0 0; color: var(--c-muted); font-size: 14px; }
.auth-err { background: #fdecec; color: var(--c-danger); padding: 11px 14px; border-radius: 9px; margin-bottom: 16px; font-size: 14px; }
.auth-ok { background: #e8f6ee; color: var(--c-ok); padding: 11px 14px; border-radius: 9px; margin-bottom: 16px; font-size: 14px; }
.auth-hello { text-align: center; color: var(--c-muted); margin: -10px 0 20px; }
.agree-block { margin-bottom: 18px; }
.agree-block h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; }
.terms-box { height: 150px; overflow-y: auto; border: 1px solid var(--c-line); border-radius: 8px; padding: 14px 16px; background: var(--c-bg, #fbfcfe); font-size: 12.5px; line-height: 1.7; color: var(--c-fg-2, #475067); }
.terms-box p { margin: 0 0 10px; }
.privacy-tbl { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.privacy-tbl th, .privacy-tbl td { border: 1px solid var(--c-line); padding: 7px 9px; text-align: left; vertical-align: top; }
.privacy-tbl th { background: var(--c-line-2); font-weight: 600; }
.agree-ck { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 14px; font-weight: 500; }
.agree-ck input, .agree-all input { width: 18px; height: 18px; margin: 0; }
.agree-all { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: var(--c-tag); border-radius: 8px; font-size: 15px; cursor: pointer; }
.auth-sep { border: 0; border-top: 1px solid var(--c-line); margin: 22px 0; }

/* Top utility bar */
.topbar { background: var(--c-primary); color: rgba(255,255,255,.85); font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.tb-left { display: flex; align-items: center; gap: 22px; }
.tb-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.tb-ic { width: 14px; height: 14px; opacity: .85; flex: none; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; text-decoration: none; }
.tb-right { display: flex; align-items: center; gap: 8px; }
.tb-follow { font-size: 12px; letter-spacing: .04em; opacity: .8; margin-right: 4px; }
.tb-sns { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12); transition: .15s; }
.tb-sns svg { width: 14px; height: 14px; }
.tb-sns:hover { background: var(--c-accent); color: #1a1f2e !important; }
.tb-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); margin: 0 6px; }
.tb-member { display: inline-flex; align-items: center; gap: 14px; }
.tb-member a { font-size: 13px; }
.tb-member b { font-weight: 600; color: #fff; }
.nav-member-m, .nav-lang-m { display: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .container {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-weight: 700; font-size: 20px; letter-spacing: -.02em;
  color: var(--c-fg) !important;
  display: flex; align-items: center; margin-right: 24px;
}
.logo img { display: block; height: 54px; width: auto; }
.primary-nav { display: flex; gap: 30px; align-items: center; flex-wrap: nowrap; }
.primary-nav a {
  color: var(--c-fg);
  font-weight: 600;
  font-size: 18px;
}
.primary-nav a:hover { color: var(--c-primary); text-decoration: none; }

/* Dropdown navigation (Jonathan) */
.nav-home { color: var(--c-fg); font-weight: 600; font-size: 17px; }
.nav-item { position: relative; }
.nav-top {
  display: flex; align-items: center; gap: 4px;
  color: var(--c-fg); font-weight: 600; font-size: 20px;
  cursor: pointer; padding: 8px 0; user-select: none; white-space: nowrap;
}
.nav-top:hover { color: var(--c-primary); }
.nav-top .caret { font-size: 14px; opacity: .55; font-style: normal; transition: transform .2s ease; }
.nav-item:hover .nav-top .caret { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 184px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px;
  display: none; z-index: 200;
}
/* 대메뉴 ↔ 하위메뉴 사이 틈을 덮는 투명 브릿지(호버 끊김 방지) */
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { display: block; }
.nav-sub a {
  display: block; padding: 9px 14px; border-radius: 6px;
  color: var(--c-fg); font-size: 14px; font-weight: 500; white-space: nowrap;
}
.nav-sub a:hover { background: var(--c-tag); color: var(--c-primary); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.lang-switcher { position: relative; }
.lang-btn {
  background: var(--c-line-2); border: 1px solid var(--c-line);
  border-radius: var(--radius-sm); padding: 6px 12px; font-weight: 500;
  font-size: 14px; cursor: pointer; color: var(--c-fg); white-space: nowrap;
}
.lang-switcher ul {
  position: absolute; right: 0; top: 100%; margin-top: 6px;
  list-style: none; padding: 6px; min-width: 140px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: none;
}
.lang-switcher:hover ul, .lang-switcher:focus-within ul { display: block; }
.lang-switcher li a { display: block; padding: 8px 10px; border-radius: 4px; color: var(--c-fg); }
.lang-switcher li a:hover { background: var(--c-line-2); text-decoration: none; }

.nav-toggle {
  display: none; background: transparent; border: 0;
  width: 36px; height: 36px; padding: 8px; flex-direction: column; gap: 4px; cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--c-fg); border-radius: 2px; }

/* Responsive video embed (Vimeo/YouTube) */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; margin: 0 0 22px; background: #000; border-radius: 8px; overflow: hidden; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Sub-page breadcrumb hero (banner + title + crumbs) */
.page-hero {
  background-size: cover; background-position: center;
  color: #fff; padding: 104px 0 88px; margin-bottom: 34px;
  border-bottom: 3px solid var(--c-accent);
  display: flex; align-items: center;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 700; margin: 0 0 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35); color: #fff;
}
.page-hero .hero-eyebrow { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent, #ffb43a); margin: 0 0 10px; }
.page-hero .hero-sub { font-size: clamp(15px, 1.8vw, 18px); font-weight: 500; color: rgba(255,255,255,.92); margin: 0 0 16px; text-shadow: 0 1px 10px rgba(0,0,0,.3); max-width: 640px; }
.page-hero .hero-crumbs { font-size: 14px; opacity: .96; }
.page-hero .hero-crumbs a { color: #fff; }
.page-hero .hero-crumbs a:hover { text-decoration: underline; }
.page-hero .hero-crumbs .sep { margin: 0 8px; opacity: .55; }
.page-hero .hero-crumbs .cur { font-weight: 600; }
.page-hero:has(+ .page-lnb-bar) { margin-bottom: 0; }
.page-lnb-bar { background: #fff; border-bottom: 1px solid var(--c-line, #e6e9f0); box-shadow: 0 6px 16px rgba(11,61,145,.05); margin-bottom: 30px; }
.page-lnb-bar .container { display: flex; flex-wrap: wrap; gap: 0; padding-top: 0; padding-bottom: 0; }
.page-lnb-bar .lnb-dd { position: relative; }
.page-lnb-bar .lnb-dd + .lnb-dd { border-left: 1px solid #e1e6ef; }
.page-lnb-bar .lnb-btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 14px; min-width: 200px; background: transparent; border: 0; cursor: pointer; padding: 16px 22px; font-size: 20px; font-weight: 700; font-family: inherit; color: #1a2436; transition: background .15s; }
.page-lnb-bar .lnb-dd-sec .lnb-btn { color: var(--c-primary, #0b3d91); }
.page-lnb-bar .lnb-btn:hover { background: #f5f8fc; }
.page-lnb-bar .lnb-caret { font-size: 14px; color: var(--c-primary, #0b3d91); transition: transform .2s; }
.page-lnb-bar .lnb-dd.open .lnb-caret { transform: rotate(180deg); }
.page-lnb-bar .lnb-menu { display: none; position: absolute; top: calc(100% - 2px); left: 10px; min-width: 210px; background: #fff; border: 1px solid #e6ebf3; border-radius: 12px; box-shadow: 0 16px 40px rgba(11,61,145,.18); padding: 8px; z-index: 70; animation: lnbPop .16s ease; }
.page-lnb-bar .lnb-dd.open .lnb-menu { display: block; }
@keyframes lnbPop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.page-lnb-bar .lnb-menu a { display: block; padding: 11px 16px; border-radius: 8px; font-size: 15px; font-weight: 600; color: #2a3346; white-space: nowrap; }
.page-lnb-bar .lnb-menu a:hover { background: #eef3fb; color: var(--c-primary, #0b3d91); text-decoration: none; }
.page-lnb-bar .lnb-menu a.on { background: var(--c-primary, #0b3d91); color: #fff; }
@media (max-width: 600px) { .page-lnb-bar .lnb-dd { flex: 1; min-width: 0; } .page-lnb-bar .lnb-btn { min-width: 0; width: 100%; padding: 13px 14px; font-size: 15px; } .page-lnb-bar .lnb-menu { left: 8px; right: 8px; min-width: 0; } }

/* ===== Home page ===== */
.home-hero { position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease, transform 6s ease; transform: scale(1.06); }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: transparent; }
.hero-content { position: relative; z-index: 2; }
.hero-caption { transition: opacity .35s ease, transform .35s ease; }
.hero-caption.fading { opacity: 0; transform: translateY(10px); }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 11px; }
.hero-dots .dot { width: 12px; height: 12px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: .15s; }
.hero-dots .dot.active { background: #fff; transform: scale(1.15); }
.hero-dots .dot:hover { background: rgba(255,255,255,.8); }
.hh-eyebrow { letter-spacing: .18em; font-size: 13px; font-weight: 600; opacity: .92; margin: 0 0 16px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hh-title { font-size: clamp(34px, 6vw, 60px); font-weight: 800; margin: 0 0 16px; text-shadow: 0 2px 6px rgba(0,0,0,.45), 0 6px 30px rgba(0,0,0,.55); line-height: 1.2; color: #fff; word-break: keep-all; overflow-wrap: break-word; }
.hh-sub { font-size: clamp(16px, 2.2vw, 20px); max-width: 640px; margin: 0 auto 30px; opacity: .98; line-height: 1.6; text-shadow: 0 2px 14px rgba(0,0,0,.55); word-break: keep-all; overflow-wrap: break-word; }
.hh-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero { display: inline-flex; align-items: center; justify-content: center; padding: 15px 34px; border-radius: 40px; font-weight: 700; font-size: 18px; line-height: 1.2; transition: .18s; }
.btn-hero.primary { background: var(--c-accent); color: #1a1f2e; }
.btn-hero.primary:hover { background: #ffb733; transform: translateY(-2px); text-decoration: none; }
.btn-hero.ghost { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-hero.ghost:hover { background: rgba(255,255,255,.16); text-decoration: none; }

.home-intro { background: #fff; border-bottom: 1px solid var(--c-line); padding: 72px 0; }
.intro-wrap { display: grid; grid-template-columns: 1fr 1.12fr; gap: 50px; align-items: center; }
.intro-media { position: relative; }
.intro-media img { width: 100%; height: 420px; object-fit: cover; border-radius: 18px; display: block; box-shadow: 0 24px 52px rgba(11,61,145,.18); }
.intro-since { position: absolute; left: -18px; bottom: 26px; display: flex; flex-direction: column; align-items: center; gap: 1px; background: var(--c-primary, #0b3d91); color: #fff; padding: 14px 20px; border-radius: 14px; font-size: 12px; font-weight: 700; letter-spacing: .1em; box-shadow: 0 14px 30px rgba(11,61,145,.32); }
.intro-since b { font-size: 26px; font-weight: 800; letter-spacing: 0; line-height: 1; }
.intro-tag { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .16em; color: #da1c0e; margin-bottom: 13px; }
.intro-text h2 { font-size: clamp(32px, 4.6vw, 48px); font-weight: 800; margin: 0 0 18px; color: var(--c-primary, #0b3d91); line-height: 1.2; letter-spacing: -.015em; }
.intro-text p { color: var(--c-fg-2, #475067); font-size: 16px; line-height: 1.9; margin: 0 0 22px; }
.intro-hl { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.intro-hl li { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: #16233a; background: #eef3fb; border-radius: 99px; padding: 8px 15px; }
.intro-hl li::before { content: "✓"; color: var(--c-primary, #0b3d91); font-weight: 800; }
.intro-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--c-primary, #0b3d91); text-decoration: none; font-size: 15px; }
.intro-more span { font-weight: 700; transition: transform .2s; }
.intro-more:hover span { transform: rotate(90deg); }
@media (max-width: 820px) {
  .home-intro { padding: 48px 0; }
  .intro-wrap { grid-template-columns: 1fr; gap: 26px; }
  .intro-media img { height: 270px; }
  .intro-since { left: 16px; bottom: 16px; padding: 11px 16px; }
  .intro-text { text-align: left; }
}

.home-vc { background: #fff; padding: 76px 0; }
.container-fluid { width: 100%; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
.vc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.vc-courses { order: -1; }
.vc-vlabel { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .16em; color: #da1c0e; margin-bottom: 12px; }
.vc-cap { margin: 14px 0 0; font-size: 14px; color: #000; line-height: 1.6; text-align: center; }
.video-frame { position: relative; max-width: 100%; margin: 0; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 24px 52px rgba(11,61,145,.18); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.course-grid.vc-cards { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .vc-grid { grid-template-columns: 1fr; gap: 34px; } .home-vc { padding: 56px 0; } }
@media (max-width: 480px){ .course-grid.vc-cards { grid-template-columns: 1fr; } .video-frame { border-radius: 12px; } }

.home-section { padding: 62px 20px; }
.home-soft { background: #f3f6fb; border-top: 1px solid #eaeef5; border-bottom: 1px solid #eaeef5; }
/* 모바일: 갤러리+공지/뉴스 섹션 좌우 여백을 영상 섹션(container-fluid 20px)과 동일하게 */
@media (max-width: 768px) {
  .home-section.home-soft { padding-left: 0; padding-right: 0; }
  .home-section.home-soft > .container { padding-left: 20px; padding-right: 20px; }
}
.sec-head { text-align: center; margin-bottom: 34px; }
.sec-head.row { display: flex; align-items: baseline; justify-content: space-between; text-align: left; margin-bottom: 22px; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 48px); font-weight: 800; margin: 0 0 10px; letter-spacing: -.015em; }
.sec-head p { color: var(--c-muted); font-size: 15px; margin: 0; }
.sec-link { font-weight: 600; color: var(--c-primary); white-space: nowrap; }
.gal-h2 { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 0 14px; }
.gal-sub { font-size: 15px; font-weight: 500; color: var(--c-muted); }
.gal-link { display: inline-flex; align-items: center; gap: 9px; }
.gal-link .plus { font-size: 19px; font-weight: 700; line-height: 1; transition: transform .2s; }
.gal-link:hover .plus { transform: rotate(90deg); }

.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.course-card { --cc: #0b3d91; position: relative; display: flex; flex-direction: column; gap: 9px; padding: 30px 24px 26px; border: 1px solid var(--c-line); border-radius: 18px; background: #fff; color: var(--c-fg); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.course-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--cc), color-mix(in srgb, var(--cc) 50%, #fff)); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11,40,80,.14); border-color: transparent; text-decoration: none; }
.course-card:hover::before { transform: scaleX(1); }
.cc-num { position: absolute; top: 12px; right: 22px; font-size: 60px; font-weight: 800; letter-spacing: -.02em; color: color-mix(in srgb, var(--cc) 16%, transparent); }
.cc-icon { width: 56px; height: 56px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 28px; background: color-mix(in srgb, var(--cc) 13%, #fff); margin-bottom: 6px; transition: transform .2s; }
.course-card:hover .cc-icon { transform: scale(1.06) rotate(-3deg); }
.cc-title { font-size: 23px; font-weight: 800; color: #16233a; letter-spacing: -.015em; }
.cc-desc { font-size: 14.5px; color: var(--c-muted); line-height: 1.6; flex: 1; }
.cc-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--cc); }
.cc-more i { font-style: normal; font-weight: 700; transition: transform .2s; }
.course-card:hover .cc-more i { transform: rotate(90deg); }
.sec-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .16em; color: #da1c0e; margin-bottom: 10px; }

.home-why { position: relative; overflow: hidden; background: linear-gradient(160deg, #0e4aa8 0%, #0b3d91 46%, #082a63 100%); color: #fff; padding: 80px 0; }
.home-why::before { content: ""; position: absolute; top: -90px; right: -70px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.09), transparent 70%); pointer-events: none; }
.home-why::after { content: ""; position: absolute; bottom: -120px; left: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.10), transparent 70%); pointer-events: none; }
.home-why .container { position: relative; z-index: 1; }
.home-why .sec-head h2 { color: #fff; }
.home-why .sec-head p { color: rgba(255,255,255,.82); }
.why-eyebrow { color: #ffd27a; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-stats { gap: 0; }
.why-stat { text-align: center; padding: 16px 18px; border-left: 1px solid rgba(255,255,255,.15); }
.why-stat:first-child { border-left: 0; }
.wt-num { font-size: clamp(44px, 5vw, 58px); font-weight: 800; letter-spacing: -.02em; line-height: 1; background: linear-gradient(180deg, #ffffff, #ffd27a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wt-suf { font-size: .5em; }
.wt-lb { font-size: 16.5px; font-weight: 800; margin-top: 14px; }
.wt-d { font-size: 13px; opacity: .72; margin-top: 6px; line-height: 1.5; }

/* 갤러리 마소너리 (s01~s06) */
.home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 215px); gap: 12px; }
.hg-item:nth-child(1) { grid-area: 1/1/2/2; }
.hg-item:nth-child(2) { grid-area: 2/1/3/2; }
.hg-item:nth-child(3) { grid-area: 1/2/3/3; }
.hg-item:nth-child(4) { grid-area: 1/3/2/5; }
.hg-item:nth-child(5) { grid-area: 2/3/3/4; }
.hg-item:nth-child(6) { grid-area: 2/4/3/5; }
.hg-item { position: relative; overflow: hidden; border-radius: 14px; background: var(--c-line-2); display: block; cursor: zoom-in; box-shadow: 0 4px 14px rgba(8,22,46,.06); transition: box-shadow .25s; }
.hg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.hg-item:hover { box-shadow: 0 16px 38px rgba(8,22,46,.18); }
.hg-item:hover img { transform: scale(1.06); }
.hg-item::after { content: ""; position: absolute; inset: 0; background: rgba(8,22,46,0); transition: background .25s; }
.hg-item:hover::after { background: rgba(8,22,46,.1); }

/* 라이트박스 */
.lbox { position: fixed; inset: 0; z-index: 3000; background: rgba(8,16,30,.94); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 56px 16px 96px; }
.lbox[hidden] { display: none; }
.lbox-stage { flex: 1; min-height: 0; width: 100%; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
.lbox-stage img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.lbox-x { position: absolute; top: 14px; right: 20px; background: none; border: 0; color: #fff; font-size: 36px; line-height: 1; cursor: pointer; opacity: .8; }
.lbox-x:hover { opacity: 1; }
.lbox-count { position: absolute; top: 22px; left: 24px; color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600; }
.lbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 30px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lbox-nav:hover { background: rgba(255,255,255,.26); }
.lbox-prev { left: 18px; } .lbox-next { right: 18px; }
.lbox-thumbs { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 0 12px; }
.lbox-th { width: 76px; height: 54px; padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; background: none; opacity: .5; transition: opacity .2s, border-color .2s; }
.lbox-th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lbox-th.on, .lbox-th:hover { opacity: 1; }
.lbox-th.on { border-color: #fff; }
@media (max-width: 600px) { .lbox-th { width: 52px; height: 38px; } .lbox-nav { width: 42px; height: 42px; font-size: 26px; } .lbox-prev { left: 8px; } .lbox-next { right: 8px; } }

.home-cta { position: relative; background-size: cover; background-position: center; color: #fff; text-align: center; padding: 96px 0; overflow: hidden; }
.home-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,40,96,.40) 0%, rgba(9,46,110,.60) 46%, rgba(6,30,80,.86) 100%); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .22em; color: var(--c-accent); margin-bottom: 16px; }
.home-cta h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; margin: 0 0 16px; text-shadow: 0 2px 18px rgba(0,0,0,.35); color: #fff; line-height: 1.25; }
.cta-sub { max-width: 620px; margin: 0 auto 34px; font-size: clamp(15px, 1.8vw, 18px); line-height: 1.7; color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 900px) {
  .course-grid, .why-grid, .home-gallery { grid-template-columns: repeat(2, 1fr); }
  .why-stats { gap: 30px 8px; }
  .why-stat { border-left: 0; }
  .home-gallery { grid-template-rows: none; grid-auto-rows: 1fr; }
  .home-gallery .hg-item { grid-area: auto !important; grid-row: auto !important; grid-column: auto !important; aspect-ratio: 1 / 1; }
}
@media (max-width: 768px) {
  .home-hero { min-height: 72vh; }
  .hero-content { padding: 0 22px; }
  .hh-title { font-size: 32px; line-height: 1.25; margin: 0 0 14px; }
  .hh-sub { font-size: 15.5px; line-height: 1.55; margin: 0 auto 24px; }
  .hh-eyebrow { font-size: 12px; margin: 0 0 12px; }
  .hh-cta { gap: 10px; }
  .hero-dots { bottom: 16px; }
  .sec-head.row { flex-direction: column; gap: 6px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .home-hero { min-height: 66vh; }
  .hh-title { font-size: 28px; }
  .hh-sub { font-size: 15px; }
  .hh-cta { flex-direction: column; align-items: center; width: 100%; }
  .hh-cta .btn-hero { width: 100%; max-width: 280px; }
  .course-grid { grid-template-columns: 1fr; }
}

/* Hero */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(160deg, #f1f5fd 0%, #fafbfe 60%);
  border-bottom: 1px solid var(--c-line);
}
.hero-title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 18px; color: var(--c-muted); max-width: 640px; }
.hero-cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

/* Buttons */
.btn, .btn-primary, .btn-ghost, .btn-danger {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .08s ease, box-shadow .15s, background .15s;
  font-family: inherit;
}
.btn { background: #fff; border-color: var(--c-line); color: var(--c-fg); }
.btn:hover { background: var(--c-line-2); text-decoration: none; }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-2); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; border-color: var(--c-primary); color: var(--c-primary); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; text-decoration: none; }
.btn-danger { background: var(--c-danger); color: #fff; }
.btn-danger:hover { background: #b8262f; }
.btn.small { padding: 5px 10px; font-size: 12px; }

/* Cards / sections */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 56px 20px;
}
.two-col.gn-cols { padding: 0; margin-top: 44px; }
.two-col > .card { min-width: 0; }
.card {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-head h2 { font-size: 32px; margin: 0; }
.link { color: var(--c-primary); font-size: 14px; font-weight: 500; }

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--c-line-2);
}
.post-list li:last-child { border-bottom: 0; }
.post-list a { color: var(--c-fg); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-list time { color: var(--c-muted); font-size: 13px; flex-shrink: 0; white-space: nowrap; }

.feature-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  padding: 56px 20px 80px;
}
.feature-tile {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 12px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  color: var(--c-fg); transition: all .2s;
}
.feature-tile:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.ft-icon { font-size: 28px; }
.ft-title { font-size: 13px; font-weight: 500; }

/* Footer */
.site-footer { margin-top: 80px; background: #383b40; color: rgba(255,255,255,.72); font-size: 14px; }
.site-main:has(.home-cta) + .site-footer { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 250px 1fr auto; gap: 65px; align-items: center; padding: 46px 70px 40px; }
.footer-brand-col { text-align: center; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 180px; height: auto; display: block; border-radius: 8px; }
.footer-cert { margin: 12px 0 0; font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.5; }
.footer-info-col p { margin: 0 0 9px; line-height: 1.7; color: rgba(255,255,255,.8); }
.footer-info-col a { color: rgba(255,255,255,.85); }
.footer-info-col a:hover { color: #fff; text-decoration: underline; }
.footer-biz-line { color: #cfe0ee; }
.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.footer-social > span { font-weight: 700; color: #fff; margin-right: 4px; }
.footer-social a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; transition: background .18s; }
.footer-social a:hover { background: rgba(255,255,255,.26); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-weather { display: flex; flex-direction: column; gap: 9px; min-width: 158px; }
.fw-title { margin: 0 0 2px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); text-align: center; }
.fw-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: #222; border-radius: 9px; padding: 9px 16px; min-height: 40px; font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .15s; }
.fw-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.28); text-decoration: none; color: #1a1a1a; }
.fw-btn img { display: block; }
.fw-logo-wide { height: 19px; width: auto; }
.fw-ico { width: 20px; height: 20px; object-fit: contain; border-radius: 4px; }
.fw-btn span { line-height: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); background: #34373b; }
.footer-bottom-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 15px 20px; }
.footer-partners { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; }
.footer-partners a { color: rgba(255,255,255,.74); font-size: 13.5px; }
.footer-partners a:hover { color: #fff; text-decoration: underline; }
.footer-copy { margin: 0; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-copy a { color: rgba(255,255,255,.66); }
@media (max-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 48px 16px 30px; }
  .footer-social { justify-content: center; }
  .footer-weather { flex-direction: row; flex-wrap: wrap; justify-content: center; min-width: 0; }
  .footer-weather .fw-title { width: 100%; }
  .footer-info-col p { font-size: 13.5px; }
  .footer-biz-line { font-size: 12.5px; }
  .site-footer .footer-bottom-in { flex-direction: column-reverse; text-align: center; gap: 14px; padding: 26px 16px; padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px)); }
  .footer-partners { justify-content: center; gap: 6px 16px; }
}
.footer-copy a:hover { color: #fff; }

/* Board */
.board-page { padding: 40px 20px 80px; }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.cat-tabs a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; font-weight: 700; font-size: 14.5px; color: var(--c-fg); background: #f1f4f9; border: 1px solid #e4e9f1; border-radius: 99px; transition: background .15s, color .15s, border-color .15s; }
.cat-tabs a span { font-size: 11.5px; font-weight: 700; color: var(--c-muted); }
.cat-tabs a:hover { background: #e7edf6; text-decoration: none; }
.cat-tabs a.on { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.cat-tabs a.on span { color: rgba(255,255,255,.82); }
@media (max-width: 600px){ .cat-tabs a { padding: 8px 14px; font-size: 13.5px; } }
.board-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 18px; margin-bottom: 24px;
  border-bottom: 2px solid var(--c-fg);
}
.board-title { font-size: 28px; margin: 0; font-weight: 700; }
.board-desc { margin: 0; color: var(--c-muted); }
.board-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.search { display: flex; gap: 4px; }
.search input { padding: 7px 10px; border: 1px solid var(--c-line); border-radius: var(--radius-sm); }
.search button {
  padding: 7px 14px; background: var(--c-fg); color: #fff; border: 0;
  border-radius: var(--radius-sm); cursor: pointer; font-family: inherit;
}

.board-table { width: 100%; border-collapse: collapse; }
.board-table thead { background: var(--c-line-2); }
.board-table th, .board-table td {
  padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--c-line);
  font-size: 16px;
}
.board-table th { font-weight: 600; font-size: 13px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; }
.board-table .num-col, .board-table .meta-col, .board-table .adm-col { width: 1%; white-space: nowrap; }
.board-table .subj a { color: var(--c-fg); font-weight: 500; }
.board-table .subj a:hover { color: var(--c-primary); }
.board-table tr.notice-row { background: #fff8e8; }
.board-table .empty { text-align: center; color: var(--c-muted); padding: 40px 0; }
.badge { display: inline-block; padding: 1px 8px; border-radius: 999px; background: var(--c-tag); font-size: 11px; color: var(--c-primary); margin-left: 4px; }

.admin-bulk { margin-top: 14px; padding: 10px 14px; background: #fff8e8; border-radius: var(--radius-sm); display: flex; gap: 10px; align-items: center; }
.pager { display: flex; gap: 4px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.pager a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  color: var(--c-fg); font-size: 14px;
}
.pager a.on { background: var(--c-fg); color: #fff; border-color: var(--c-fg); }
.pager a:hover { background: var(--c-line-2); text-decoration: none; }
.pager .pg-arrow { font-size: 17px; line-height: 1; }
.pager .pg-gap { display: inline-flex; align-items: flex-end; justify-content: center; min-width: 24px; height: 36px; color: var(--c-muted); }

/* Photo grid */
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.photo-card { position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.photo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.photo-check { position: absolute; top: 8px; left: 8px; z-index: 2; background: rgba(255,255,255,.9); border-radius: 4px; padding: 2px 4px; }
.photo-thumb {
  width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: var(--c-line-2); position: relative;
}
.vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff;
  display: grid; place-items: center; font-size: 20px; padding-left: 3px;
  pointer-events: none; transition: background .15s, transform .15s;
}
.photo-card:hover .vid-play { background: var(--c-primary); transform: translate(-50%, -50%) scale(1.08); }
.photo-meta { padding: 12px; }
.photo-title { font-weight: 500; font-size: 14px; color: var(--c-fg); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.photo-sub { color: var(--c-muted); font-size: 12px; }

/* Calendar */
.calendar { width: 100%; border-collapse: separate; border-spacing: 2px; }
.calendar th { background: var(--c-line-2); padding: 8px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.calendar th.sun { color: var(--c-danger); }
.calendar th.sat { color: var(--c-primary); }
.calendar td { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); vertical-align: top; padding: 6px; min-height: 90px; height: 90px; position: relative; }
.calendar td.empty { background: var(--c-line-2); border: 0; }
.calendar td.today { background: #f0f6ff; border-color: var(--c-primary); }
.calendar td .d { display: inline-block; font-size: 13px; color: var(--c-muted); font-weight: 600; margin-bottom: 4px; }
.calendar td.sun .d { color: var(--c-danger); }
.calendar td.sat .d { color: var(--c-primary); }
.cal-event { display: block; background: var(--c-primary); color: #fff !important; padding: 2px 6px; border-radius: 3px; font-size: 11px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-event:hover { background: var(--c-primary-2); text-decoration: none; }
.cal-nav { display: flex; align-items: center; gap: 8px; font-weight: 600; }

/* Post view */
.post-view { padding: 40px 20px 80px; max-width: 900px; }
.crumbs { font-size: 13px; color: var(--c-muted); margin-bottom: 18px; }
.crumbs a { color: var(--c-muted); }
.post-head { padding-bottom: 20px; margin-bottom: 24px; border-bottom: 2px solid var(--c-fg); }
.post-head h1 { font-size: 30px; }
.post-meta { color: var(--c-muted); font-size: 14px; }
.event-bar { background: #fff8e8; padding: 10px 14px; border-radius: var(--radius-sm); margin: 0 0 16px; font-weight: 500; }
.page-intro { text-align: center; padding: 20px 0 0; margin-bottom: 38px; word-break: keep-all; overflow-wrap: break-word; }
.page-intro .pi-title { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; color: #1a1a1a; margin: 0 0 20px; letter-spacing: -.01em; }
.page-intro .pi-rule { display: inline-block; width: 72px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, #0b3d91 0 33.33%, #da1c0e 33.33% 66.66%, #1a1a1a 66.66% 100%); margin: 0 0 14px; }
.page-intro .pi-lead { font-size: 16px; line-height: 1.7; color: #4a5568; max-width: 820px; margin: 0 auto; }
.page-intro .pi-lead .pi-mbr { display: none; }
@media (max-width: 768px) { .page-intro .pi-lead .pi-mbr { display: inline; } }
.post-body { font-size: 18px; line-height: 1.85; padding: 24px 0; min-height: 220px; word-break: keep-all; overflow-wrap: break-word; }
/* Location 페이지 */
.page-location .loc-map { border-radius: 16px; overflow: hidden; box-shadow: 0 14px 34px rgba(11,61,145,.16); margin: 6px 0 26px; }
.page-location .loc-map iframe { display: block; width: 100%; height: 440px; border: 0; }
.page-location .loc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.page-location .loc-card { display: flex; gap: 14px; align-items: flex-start; background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 14px; padding: 20px; }
.page-location .loc-ic { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.page-location .loc-ic svg { width: 22px; height: 22px; fill: currentColor; }
.page-location .loc-card strong { display: block; font-size: 16px; color: var(--c-primary, #0b3d91); margin-bottom: 6px; }
.page-location .loc-card p { margin: 0; font-size: 15px; line-height: 1.65; color: #465062; }
.page-location .loc-card a { color: var(--c-primary, #0b3d91); }
@media (max-width: 768px) {
  .page-location .loc-map iframe { height: 320px; }
  .page-location .loc-cards { grid-template-columns: 1fr; }
}
/* Paragliding 페이지 (패러글라이딩) */
.page-paragliding .pg-figure { margin: 14px 0 24px; }
.page-paragliding .pg-figure img { width: 100%; border-radius: 14px; margin: 0; box-shadow: 0 8px 24px rgba(8,22,46,.1); }
.page-paragliding .pg-figure figcaption { margin-top: 10px; text-align: center; font-size: 14px; color: #6c7686; }
.page-paragliding .pg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 20px 0 10px; }
.page-paragliding .pg-stat { background: linear-gradient(135deg, #eef3fb, #f6f8fc); border: 1px solid #e2e9f4; border-radius: 14px; padding: 20px 16px; text-align: center; }
.page-paragliding .pg-stat-n { display: block; font-size: 22px; font-weight: 800; color: var(--c-primary, #0b3d91); letter-spacing: -.01em; }
.page-paragliding .pg-stat-l { display: block; margin-top: 5px; font-size: 13.5px; color: #56607a; }
.page-paragliding .pg-callout { background: #f4f8fd; border-left: 4px solid var(--c-primary, #0b3d91); border-radius: 0 12px 12px 0; padding: 16px 22px; margin: 16px 0; line-height: 1.75; color: #2a3346; }
.page-paragliding .pg-callout strong { color: var(--c-primary, #0b3d91); }
.page-paragliding .pg-img-sm { max-width: 320px; margin: 14px auto; }
/* 4번 카드 — 내용(좌) + 이미지(우) 좌우 배치 */
.page-paragliding .pg-split { display: flex; gap: 24px; align-items: stretch; margin-top: 4px; }
.page-paragliding .pg-split-text { flex: 1; min-width: 0; }
.page-paragliding .pg-split-text > :last-child { margin-bottom: 0; }
.page-paragliding .pg-split .pg-img-sm { flex: none; width: 320px; max-width: 46%; margin: 0; }
.page-paragliding .pg-split .pg-img-sm img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .page-paragliding .pg-split { flex-direction: column; align-items: stretch; gap: 14px; } .page-paragliding .pg-split .pg-img-sm { width: 100%; max-width: 320px; margin: 0 auto; } .page-paragliding .pg-split .pg-img-sm img { height: auto; } }
.page-paragliding h3 { margin-top: 40px; }
.page-paragliding h4 { font-size: 16px; font-weight: 800; color: #1a2436; margin: 22px 0 8px; padding-left: 12px; border-left: 3px solid var(--c-primary, #0b3d91); }
.page-paragliding .pg-course { background: #fff; border: 1px solid #e7edf6; border-radius: 14px; padding: 8px 24px 20px; margin: 16px 0; box-shadow: 0 4px 14px rgba(8,22,46,.04); }
.page-paragliding .pg-course > h3 { margin-top: 22px; }
.page-paragliding .pg-spec { margin: 8px 0; padding: 10px 14px; background: #f6f8fc; border-radius: 10px; line-height: 1.7; }
.page-paragliding .pg-spec strong { color: var(--c-primary, #0b3d91); }
/* 선택요령·자격증·자격기준 탭 */
.page-paragliding .pg-tabwrap { margin-top: 34px; }
.page-paragliding .pg-tabs { display: flex; border: 1px solid #e4e9f1; border-radius: 12px; overflow: hidden; margin-bottom: 80px; }
.page-paragliding .pg-tab { flex: 1; background: #f7f9fc; border: 0; border-right: 1px solid #e4e9f1; border-radius: 0; padding: 15px 10px; font-size: 16px; font-weight: 700; font-family: inherit; color: #56607a; cursor: pointer; transition: background .15s, color .15s; text-align: center; }
.page-paragliding .pg-tab:last-child { border-right: 0; }
.page-paragliding .pg-tab:hover { background: #eef2f8; }
.page-paragliding .pg-tab.on { background: var(--c-primary, #0b3d91); color: #fff; }
.page-paragliding .pg-panel { display: none; }
.page-paragliding .pg-panel.on { display: block; }
.page-paragliding .pg-panel > h2:first-child { margin-top: 6px; }
/* 선택 요령 항목 — 번호 배지 카드 */
.page-paragliding .pg-tip { display: flex; gap: 16px; background: #fff; border: 1px solid #e7edf6; border-radius: 14px; padding: 20px 24px; margin: 14px 0; box-shadow: 0 4px 14px rgba(8,22,46,.04); }
.page-paragliding .pg-tip-no { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.page-paragliding .pg-tip-c { flex: 1; min-width: 0; }
.page-paragliding .pg-tip-c h4 { margin: 4px 0 10px; padding: 0; border: 0; font-size: 17px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-paragliding .pg-tip-c > :last-child { margin-bottom: 0; }
.page-paragliding .pg-em { color: #e60000; font-weight: 600; }
@media (max-width: 600px) { .page-paragliding .pg-tip { padding: 16px 16px; gap: 12px; } }
@media (max-width: 768px) { .page-paragliding .pg-tab { font-size: 13px; padding: 12px 6px; } }
/* 패러글라이딩 일반 표 — 전역 첫행 틴트 제거(바디 흰색 유지) */
.page-paragliding .pg-panel table tr:first-child td { background: #fff; }
/* 자격증 종류 표(3번 탭) — 발급 증명서 열 줄바꿈 방지 + 첫 행 글자색 정상화 */
.page-paragliding .pg-panel[data-ptp="3"] table th:nth-child(2),
.page-paragliding .pg-panel[data-ptp="3"] table td:nth-child(2) { white-space: nowrap; }
.page-paragliding .pg-panel[data-ptp="3"] table tr:first-child td { color: #2a3346; font-weight: 400; }
/* DHV 등급표 (rowspan + 컬러 텍스트, 원본 m21 스타일) */
.page-paragliding .pg-grade-table { width: 100%; border-collapse: collapse; margin: 14px 0 22px; font-size: 16.5px; }
.page-paragliding .pg-grade-table th { background: var(--c-primary, #0b3d91); color: #fff; font-weight: 700; padding: 14px 12px; border: 1px solid rgba(255,255,255,.22); text-align: center; }
.page-paragliding .pg-grade-table td { border: 1px solid #e3e8f0; padding: 13px 20px; text-align: center; vertical-align: middle; background: #fff; }
.page-paragliding .pg-grade-table tr:first-child td { background: #fff; }
.page-paragliding .pg-grade-table .gcol { font-weight: 800; color: #1a2436; text-align: left; }
.page-paragliding .pg-grade-table .cr { color: #e60000; font-weight: 600; }
.page-paragliding .pg-grade-table .cb { color: #1a52c4; font-weight: 600; }
.page-paragliding .pg-grade-table .ca { color: #9c1f1f; font-weight: 700; text-align: left; }
/* 원본 m21식 음절 단위 컬러 (첫 글자 빨강 + 나머지 검정/파랑) */
.page-paragliding .pg-grade-table .r { color: #e60000; }
.page-paragliding .pg-grade-table .b { color: #1a52c4; }
.page-paragliding .pg-grade-table .afn { text-align: left; font-weight: 700; }
/* 기체 선택 가이드(전치형) 표 */
.page-paragliding .pg-table-scroll { overflow-x: auto; margin: 14px 0 8px; }
.page-paragliding .pg-spec-table { min-width: 780px; margin: 0; }
.page-paragliding .pg-spec-table th { font-size: 16.5px; }
.page-paragliding .pg-spec-table td { text-align: left; font-size: 16.5px; line-height: 1.5; }
.page-paragliding .pg-spec-table .gcol { font-weight: 800; white-space: nowrap; }
.page-paragliding .pg-spec-table .pg-pick { color: #e60000; font-weight: 700; }
.page-paragliding .pg-spec-table tr:first-child td { color: #2a3346; font-weight: 400; }
.page-paragliding .pg-spec-table tr:first-child td.gcol { color: #1a2436; font-weight: 800; }
@media (max-width: 600px) { .page-paragliding .pg-grade-table { font-size: 13px; } .page-paragliding .pg-grade-table th, .page-paragliding .pg-grade-table td { padding: 9px 7px; } }
@media (max-width: 768px) { .page-paragliding .pg-stats { grid-template-columns: repeat(2, 1fr); } .page-paragliding .pg-course { padding: 6px 16px 16px; } }

/* History 페이지 (연혁) */
.page-history .hist-purpose { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(135deg, #eef3fb, #f6f8fc); border: 1px solid #e2e9f4; border-radius: 16px; padding: 22px 26px; margin: 4px 0 80px; }
.page-history .hp-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--c-primary, #0b3d91); display: inline-flex; align-items: center; justify-content: center; }
.page-history .hp-ic svg { width: 24px; height: 24px; fill: #fff; }
.page-history .hist-purpose h3 { margin: 0 0 8px; font-size: 23px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-history .hist-purpose p { margin: 0; font-size: 18px; line-height: 1.75; color: #455066; }
.page-history .hist-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.page-history .ht-tab { background: #f1f4f9; border: 1px solid #e4e9f1; border-radius: 99px; padding: 15px 40px; font-size: 19px; font-weight: 700; font-family: inherit; color: #56607a; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.page-history .ht-tab:hover { background: #e7edf6; }
.page-history .ht-tab.on { background: var(--c-primary, #0b3d91); border-color: var(--c-primary, #0b3d91); color: #fff; }
.page-history .hist-panel { display: none; }
.page-history .hist-panel.on { display: block; padding-top: 60px; }
.page-history .hist-tl { list-style: none; margin: 8px 0 0; padding: 0; position: relative; }
.page-history .hist-tl::before { content: ""; position: absolute; left: 50%; transform: translateX(-50%); top: 6px; bottom: 6px; width: .5px; background: #000; }
.page-history .hist-tl li { box-sizing: border-box; position: relative; width: calc(50% - 32px); background: #fff; border: 1px solid #e7edf6; border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; box-shadow: 0 4px 14px rgba(8,22,46,.05); transition: box-shadow .15s, transform .15s; }
.page-history .hist-tl li:hover { box-shadow: 0 12px 28px rgba(11,61,145,.13); transform: translateY(-2px); }
.page-history .hist-tl li:nth-child(odd) { margin-right: calc(50% + 32px); text-align: right; }
.page-history .hist-tl li:nth-child(even) { margin-left: calc(50% + 32px); text-align: left; }
.page-history .hist-tl li::after { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid #e30613; box-shadow: 0 0 0 3px #fff, 0 0 0 0 rgba(227,6,19,.5); transition: background .2s ease; animation: histDotPulse 2.2s ease-out infinite; }
.page-history .hist-tl li:nth-child(odd)::after { right: -43px; }
.page-history .hist-tl li:nth-child(even)::after { left: -43px; }
.page-history .hist-tl li:hover::after { background: #e30613; }
@keyframes histDotPulse {
  0%   { box-shadow: 0 0 0 3px #fff, 0 0 0 0 rgba(227,6,19,.5); }
  70%  { box-shadow: 0 0 0 3px #fff, 0 0 0 11px rgba(227,6,19,0); }
  100% { box-shadow: 0 0 0 3px #fff, 0 0 0 0 rgba(227,6,19,0); }
}
@media (prefers-reduced-motion: reduce) { .page-history .hist-tl li::after { animation: none; } }
.page-history .tl-year { display: block; font-weight: 800; color: var(--c-primary, #0b3d91); font-size: 30px; margin-bottom: 5px; }
.page-history .tl-desc { display: block; font-size: 15.5px; line-height: 1.6; color: #2a3346; }
@media (max-width: 768px) {
  .page-history .hist-purpose { padding: 18px; gap: 12px; }
  .page-history .hist-panel.on { padding-top: 40px; }
  .page-history .ht-tab { font-size: 17px; padding: 13px 28px; }
  .page-history .hist-tl::before { left: 7px; transform: none; }
  .page-history .hist-tl li { width: auto; margin: 0 0 12px 28px !important; text-align: left !important; padding: 13px 16px; }
  .page-history .hist-tl li::after { left: -28px !important; right: auto !important; top: 50%; }
  .page-history .tl-year { font-size: 29px; }
  .page-history .tl-desc { font-size: 15px; }
}
/* Officers 페이지 (임원진) */
.page-officers .officer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin: 8px 0 0; }
.page-officers .officer-card { margin: 0; padding: 20px; background: #fff; border: 1px solid #e7edf6; border-radius: 16px; box-shadow: 0 4px 14px rgba(8,22,46,.05); transition: box-shadow .15s, transform .15s; }
.page-officers .officer-card:hover { box-shadow: 0 12px 28px rgba(11,61,145,.13); transform: translateY(-3px); }
.page-officers .oc-photo { aspect-ratio: 1 / 1; background: #eef2f8; border-radius: 12px; overflow: hidden; }
.page-officers .oc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; margin: 0; border-radius: 0; }
.page-officers figcaption { padding: 14px 0 2px; text-align: center; }
.page-officers .oc-name { display: block; font-size: 21px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-officers .oc-role { display: block; margin-top: 5px; font-size: 15px; color: #56607a; }
@media (max-width: 768px) {
  .page-officers .officer-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .page-officers .oc-name { font-size: 19px; }
  .page-officers .officer-card { padding: 16px; }
  .page-officers figcaption { padding: 12px 0 2px; }
}
/* Instructors 페이지 (강사진) */
.page-instructors .ins-sec { font-size: 26px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 48px 0 22px; padding-bottom: 10px; border-bottom: 2px solid #eef2f8; }
.page-instructors .ins-sec:first-child { margin-top: 4px; }
.page-instructors .ins-lead { display: grid; grid-template-columns: 350px 1fr; gap: 50px; align-items: start; background: linear-gradient(135deg, #eef3fb, #f6f8fc); border: 1px solid #e2e9f4; border-radius: 16px; padding: 26px; }
.page-instructors .ins-lead-photo img { width: 100%; height: auto; display: block; border-radius: 12px; margin: 0; }
.page-instructors .ins-lead-name { font-size: 24px; font-weight: 800; color: var(--c-primary, #0b3d91); margin-bottom: 14px; }
.page-instructors .ins-lead-name span { font-size: 16px; font-weight: 700; color: #56607a; margin-left: 6px; }
.page-instructors .ins-career { list-style: none; margin: 0; padding: 0; }
.page-instructors .ins-career li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 15.5px; line-height: 1.6; color: #2a3346; }
.page-instructors .ins-career li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: #e30613; }
.page-instructors .ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.page-instructors .ins-card { margin: 0; padding: 16px; background: #fff; border: 1px solid #e7edf6; border-radius: 16px; box-shadow: 0 4px 14px rgba(8,22,46,.05); transition: box-shadow .15s, transform .15s; }
.page-instructors .ins-card:hover { box-shadow: 0 12px 28px rgba(11,61,145,.13); transform: translateY(-3px); }
.page-instructors .ins-photo { border-radius: 12px; overflow: hidden; background: #eef2f8; }
.page-instructors .ins-photo img { width: 100%; height: auto; display: block; margin: 0; border-radius: 0; }
.page-instructors figcaption { padding: 14px 4px 4px; text-align: center; }
.page-instructors .ins-name { font-size: 20px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-instructors .ins-role { display: inline-block; font-size: 13px; font-weight: 700; color: #fff; background: #e30613; border-radius: 99px; padding: 2px 12px; margin-left: 8px; vertical-align: middle; }
.page-instructors .ins-desc { display: block; margin-top: 10px; font-size: 14px; line-height: 1.55; color: #56607a; }
@media (max-width: 768px) {
  .page-instructors .ins-sec { font-size: 21px; margin: 36px 0 16px; }
  .page-instructors .ins-lead { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .page-instructors .ins-lead-photo { max-width: 260px; margin: 0 auto; }
  .page-instructors .ins-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .page-instructors .ins-name { font-size: 18px; }
}
@media (max-width: 480px) { .page-instructors .ins-grid { grid-template-columns: 1fr; } }
.post-body img { border-radius: var(--radius-sm); margin: 12px auto; max-width: 100%; height: auto; }
.post-body h2 { font-size: 29px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 100px 0 20px; padding-bottom: 8px; border-bottom: 2px solid #eef2f8; }
.post-body h2:first-child { margin-top: 4px; }
@media (max-width: 768px) { .post-body h2 { font-size: 21px; margin: 56px 0 16px; } }
@media (max-width: 480px) { .post-body h2 { font-size: 25px; margin: 44px 0 14px; } }
.post-body h3 { font-size: 18px; font-weight: 700; margin: 22px 0 8px; color: #1a2436; }
.post-body p { margin: 0 0 14px; }
.post-body ul, .post-body ol { margin: 0 0 16px; padding-left: 20px; }
.post-body li { margin: 0 0 7px; line-height: 1.7; }
.post-body table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 15px; }
.post-body th, .post-body td { border: 1px solid #e3e8f0; padding: 10px 12px; text-align: center; }
.post-body thead th, .post-body table tr:first-child td { background: #f3f6fb; font-weight: 700; color: var(--c-primary, #0b3d91); }

/* About 페이지 디자인 */
.page-about .about-lead { font-size: 18px; line-height: 1.5; color: #2a3346; margin: 4px 0 6px; }
.page-about .about-quote { font-style: italic; color: var(--c-primary, #0b3d91); font-weight: 600; border-left: 3px solid var(--c-primary, #0b3d91); padding: 4px 0 4px 16px; margin: 0 0 6px; }
.page-about .mark-wrap { display: grid; grid-template-columns: 455px 1fr; gap: 28px; align-items: start; margin: 6px 0; }
.page-about .mark-img img { width: 100%; margin: 0; border-radius: 14px; box-shadow: 0 14px 34px rgba(11,61,145,.16); }
.page-about .mark-grid { display: flex; flex-direction: column; gap: 12px; }
.page-about .mark-card { background: #fff; border: 1px solid var(--c-line, #e6e9f0); border-left: 4px solid var(--cc, #ccc); border-radius: 12px; padding: 15px 18px; }
.page-about .mark-card h3 { margin: 0 0 6px; font-size: 20px; font-weight: 700; color: var(--cc); }
.page-about .mark-card p { margin: 0 0 5px; font-size: 16px; line-height: 1.5; color: #455066; }
.page-about .mark-card .mc-shape { font-size: 13px; color: #8a93a6; margin: 0; }
.page-about .mc-blue { --cc: #1f5fc0; } .page-about .mc-red { --cc: #d8392f; } .page-about .mc-black { --cc: #2b2f38; }
.page-about .leader-card { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 16px; padding: 24px; margin: 6px 0; }
.page-about .leader-photo img { width: 100%; margin: 0; border-radius: 12px; }
.page-about .leader-name { font-size: 21px; font-weight: 800; color: var(--c-primary, #0b3d91); margin-bottom: 10px; }
.page-about .leader-name span { display: block; font-size: 14px; font-weight: 500; color: #6b7689; margin-top: 4px; }
.page-about .leader-body p { margin: 0; line-height: 1.85; }
.page-about .dream-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 10px 0; }
.page-about .dream-card { position: relative; background: transparent; color: inherit; border-radius: 0; padding: 6px 30px; overflow: visible; }
.page-about .dream-card + .dream-card { border-left: 1px solid #dfe5f0; }
.page-about .dream-num { position: static; display: block; font-size: 34px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0; letter-spacing: .01em; }
.page-about .dream-num::after { content: ""; display: block; width: 44px; height: 3px; margin: 12px 0 16px; border-radius: 2px; background: linear-gradient(90deg, #0b3d91 0 50%, #d8392f 50% 100%); }
.page-about .dream-card h3 { margin: 0 0 12px; font-size: 22px; font-weight: 800; color: #1a1a1a; }
.page-about .dream-card p { margin: 0; font-size: 17px; line-height: 1.75; color: #465062; }
@media (max-width: 820px) {
  .page-about .mark-wrap { grid-template-columns: 1fr; }
  .page-about .leader-card { grid-template-columns: 1fr; text-align: center; }
  .page-about .leader-photo { max-width: 200px; margin: 0 auto; }
  .page-about .dream-grid { grid-template-columns: 1fr; }
  .page-about .dream-card { padding: 22px 0; }
  .page-about .dream-card + .dream-card { border-left: 0; border-top: 1px solid #dfe5f0; }
}
.attachments-block { background: var(--c-line-2); padding: 16px; border-radius: var(--radius); margin: 24px 0; }
.attachments-block h3 { font-size: 14px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-muted); }
.att-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.att-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.att-thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; }

/* Image gallery at top of post body */
.post-images {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px;
}
.post-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-line-2);
  border: 1px solid var(--c-line);
}
.post-image a {
  display: block;
  text-decoration: none;
}
.post-image a:hover { text-decoration: none; }
.post-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  transition: transform .25s;
}
.post-image a:hover img { transform: scale(1.005); }
.post-image figcaption {
  font-size: 13px;
  color: var(--c-muted);
  padding: 8px 14px;
  background: #fff;
  border-top: 1px solid var(--c-line);
  text-align: center;
}

/* Download cards for non-image attachments */
.download-block { background: var(--c-line-2); padding: 18px; border-radius: var(--radius); margin: 24px 0; }
.download-block h3 { font-size: 14px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-muted); }
.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  color: var(--c-fg) !important;
  text-decoration: none !important;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.download-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.download-card .dl-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.download-card .dl-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.download-card .dl-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.download-card .dl-meta {
  font-size: 12px;
  color: var(--c-muted);
}
.download-card .dl-ext {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  background: var(--c-tag);
  color: var(--c-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .02em;
}
.download-card .dl-action {
  font-size: 18px;
  color: var(--c-muted);
  flex-shrink: 0;
  transition: color .15s, transform .15s;
}
.download-card:hover .dl-action {
  color: var(--c-primary);
  transform: translateY(2px);
}

@media (max-width: 520px) {
  .download-cards { grid-template-columns: 1fr; }
  .post-images { gap: 10px; }
}
.post-actions { display: flex; gap: 10px; margin: 24px 0; flex-wrap: wrap; }
.prev-next { display: flex; justify-content: space-between; gap: 12px; padding: 20px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.prev-next a { color: var(--c-fg); font-size: 14px; }
.comments { margin-top: 40px; }
.comments ul { list-style: none; padding: 0; margin: 0; }
.comments li { padding: 14px 0; border-bottom: 1px solid var(--c-line-2); }
.comments li strong { margin-right: 8px; }
.comments p { margin: 8px 0 0; }
.comment-form { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
}

/* ── Post view 리디자인 (카드형, 본문 1200px) ───────────────────── */
.post-view .post { background: #fff; border: 1px solid #e7edf6; border-radius: 18px; padding: 32px 38px; box-shadow: 0 8px 30px rgba(8,22,46,.07); }
.post-view .post-head { padding: 0 0 16px; margin: 0 0 24px; border-bottom: 1px solid #eef2f8; }
.post-view .post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; color: #6c7686; font-size: 14px; }
.post-view .post-meta span:first-child { font-weight: 700; color: #33405a; }
/* 첨부 이미지 갤러리 — 메이슨리(2단), 단일 이미지는 전폭 */
.post-view .post-images { display: block; column-count: 2; column-gap: 16px; margin: 0 0 24px; }
.post-view .post-images:has(.post-image:only-child) { column-count: 1; }
@media (max-width: 680px) { .post-view .post-images { column-count: 1; } }
.post-view .post-image { break-inside: avoid; margin: 0 0 16px; border-radius: 14px; overflow: hidden; border: 1px solid #e7edf6; box-shadow: 0 4px 16px rgba(8,22,46,.06); transition: box-shadow .18s, transform .18s; }
.post-view .post-image:hover { box-shadow: 0 14px 32px rgba(11,61,145,.16); transform: translateY(-2px); }
.post-view .post-body { padding: 8px 0 4px; }
/* 액션 버튼 */
.post-view .post-actions { justify-content: center; margin: 32px 0 6px; }
.post-view .post-actions .btn { padding: 11px 28px; border-radius: 99px; border: 1px solid #d9e1ee; background: #fff; font-weight: 700; font-size: 15px; color: #33405a; transition: .15s; }
.post-view .post-actions .btn:hover { border-color: var(--c-primary); color: var(--c-primary); text-decoration: none; box-shadow: 0 6px 16px rgba(11,61,145,.12); }
.post-view .post-actions .btn-danger { color: #fff; background: #e30613; border-color: #e30613; }
.post-view .post-actions .btn-danger:hover { background: #c70510; color: #fff; }
/* 이전/다음 */
.post-view .prev-next { border: 0; gap: 14px; padding: 16px 0 0; }
.post-view .prev-next a { flex: 1; min-width: 0; background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 12px; padding: 14px 18px; font-weight: 600; color: #33405a; transition: .15s; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-view .prev-next a:hover { border-color: var(--c-primary); color: var(--c-primary); text-decoration: none; background: #eef3fb; }
.post-view .prev-next a:last-child { text-align: right; }
/* 댓글 카드 */
.post-view .comments { background: #fff; border: 1px solid #e7edf6; border-radius: 18px; padding: 26px 32px; margin-top: 22px; box-shadow: 0 8px 30px rgba(8,22,46,.07); }
.post-view .comments h3 { font-size: 18px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 16px; }
.post-view .comment-form { margin-top: 18px; }
.post-view .comment-form input, .post-view .comment-form textarea { border-radius: 10px; padding: 12px 14px; }
.post-view .comment-form .btn-primary { align-self: flex-end; padding: 11px 30px; border-radius: 99px; }
@media (max-width: 768px) {
  .post-view .post { padding: 22px 18px; border-radius: 14px; }
  .post-view .comments { padding: 20px 18px; }
  .post-view .prev-next { flex-direction: column; }
}

/* Write form */
.post-write { padding: 40px 20px 80px; max-width: 1100px; }
.write-form { display: flex; flex-direction: column; gap: 16px; }
.write-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 500; font-size: 14px; }
.write-form input[type=text],
.write-form input[type=datetime-local],
.write-form textarea {
  padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px;
}
.write-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.write-form fieldset.attachments { border: 1px dashed var(--c-line); padding: 16px; border-radius: var(--radius-sm); }
.write-form .file-row { margin: 6px 0; }
/* 본문 안내 아이콘 */
.cresc-hint { font-size: 13.5px; color: #6c7686; margin: -4px 0 4px; }
.cresc-hint .ico { display: inline-flex; vertical-align: -3px; margin: 0 1px; }
.cresc-hint .ico svg { width: 17px; height: 17px; color: var(--c-primary, #0b3d91); }
/* 글쓰기 액션 바 */
.write-form .form-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 10px; padding-top: 22px; border-top: 1px solid #eef2f8; }
.write-form .form-actions .btn-primary { padding: 13px 38px; border-radius: 99px; font-size: 15px; font-weight: 700; box-shadow: 0 6px 16px rgba(11,61,145,.18); }
.write-form .form-actions .btn-primary:hover { box-shadow: 0 10px 22px rgba(11,61,145,.26); }
.write-form .form-actions .btn { padding: 13px 28px; border-radius: 99px; border: 1px solid #d9e1ee; background: #fff; font-weight: 700; font-size: 15px; color: #33405a; transition: .15s; }
.write-form .form-actions .btn:hover { border-color: var(--c-primary, #0b3d91); color: var(--c-primary, #0b3d91); text-decoration: none; box-shadow: 0 6px 16px rgba(11,61,145,.12); }
.write-form .form-actions .btn-list { margin-left: auto; }

/* 글쓰기 폼 — 섹션 카드화(비밀글·첨부·링크) */
.write-form fieldset.secret-block,
.write-form fieldset.cresc-attach,
.write-form fieldset.attachments { border: 1px solid #e7edf6; border-radius: 14px; padding: 18px 22px 20px; background: #fff; box-shadow: 0 4px 14px rgba(8,22,46,.04); margin: 6px 0; }
.write-form legend { font-weight: 800; color: var(--c-primary, #0b3d91); padding: 0 8px; font-size: 15px; }
.write-form .cresc-attach-hint { display: inline; font-weight: 400; color: #8a93a5; font-size: 12.5px; margin-left: 6px; }
.write-form .file-row, .write-form .link-row { margin: 8px 0; }
.write-form .file-row input[type=file] { width: 100%; padding: 10px 12px; border: 1px dashed #cdd6e6; border-radius: 10px; background: #f8fafd; font-size: 14px; font-family: inherit; }
.write-form .secret-block input[type=password] { display: block; width: 100%; max-width: 360px; margin-top: 6px; padding: 12px 14px; border: 1px solid #e1e7f0; border-radius: 10px; font-size: 15px; font-family: inherit; }
.write-form .secret-block input[type=password]:focus { outline: none; border-color: var(--c-primary, #0b3d91); box-shadow: 0 0 0 3px rgba(11,61,145,.1); }
.write-form .link-row { display: grid; grid-template-columns: 280px 1fr; gap: 10px; }
.write-form .link-row input { padding: 11px 13px; border: 1px solid #e1e7f0; border-radius: 10px; font-size: 14px; font-family: inherit; }
.write-form .link-row input:focus { outline: none; border-color: var(--c-primary, #0b3d91); box-shadow: 0 0 0 3px rgba(11,61,145,.1); }
@media (max-width: 600px) { .write-form .link-row { grid-template-columns: 1fr; } }

/* 관련 링크 표시 (글보기) */
.post-view .related-links { margin: 26px 0 6px; }
.post-view .related-links h3 { font-size: 16px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 12px; }
.post-view .rl-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.post-view .rl-item { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 12px; color: #2a3346; font-weight: 600; transition: .15s; }
.post-view .rl-item:hover { border-color: var(--c-primary, #0b3d91); background: #eef3fb; text-decoration: none; box-shadow: 0 6px 16px rgba(11,61,145,.1); transform: translateY(-1px); }
.post-view .rl-ic { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--c-primary, #0b3d91); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.post-view .rl-ic svg { width: 18px; height: 18px; }
.post-view .rl-text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-view .rl-go { color: #9aa6bb; font-size: 15px; flex: none; }

.alert { padding: 10px 14px; border-radius: var(--radius-sm); margin: 12px 0; font-size: 14px; }
.alert.ok  { background: #e6f7ee; color: #145a36; }
.alert.err { background: #fde6e8; color: #921c25; }

/* ====================================================================
   Webzine (웹진) — magazine-style skin
   ==================================================================== */
.webzine-page { padding: 32px 20px 80px; }

/* Masthead */
.wz-masthead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 3px double var(--c-fg);
}
.wz-masthead-text { flex: 1 1 300px; }
.wz-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px;
}
.wz-title {
  font-size: clamp(28px, 4.2vw, 44px); font-weight: 800;
  letter-spacing: -.025em; margin: 0 0 8px;
  font-family: "Pretendard", "Playfair Display", Georgia, serif;
}
.wz-tagline { color: var(--c-muted); margin: 0; font-size: 15px; max-width: 640px; }
.wz-masthead-tools { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.wz-search input { min-width: 220px; }

/* Hero cover story */
.wz-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 48px; color: var(--c-fg);
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .15s;
}
.wz-hero:hover { box-shadow: var(--shadow-md); text-decoration: none; transform: translateY(-2px); }
.wz-hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  background-color: var(--c-line-2);
}
.wz-hero-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--c-fg); color: #fff;
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.wz-hero-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.wz-hero-title {
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 700;
  margin: 0; line-height: 1.25; letter-spacing: -.02em;
  font-family: "Pretendard", "Playfair Display", Georgia, serif;
}
.wz-hero-excerpt { color: var(--c-muted); font-size: 15px; line-height: 1.7; margin: 0; }
.wz-meta { display: flex; gap: 6px; align-items: center; color: var(--c-muted); font-size: 13px; flex-wrap: wrap; }
.wz-meta strong { color: var(--c-fg); font-weight: 600; }
.wz-meta-small { display: flex; gap: 6px; align-items: center; color: var(--c-muted); font-size: 12px; flex-wrap: wrap; }
.wz-dot { opacity: .5; }

/* Section heading */
.wz-section { margin: 0 0 56px; }
.wz-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.wz-section-title {
  font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-fg); margin: 0;
  white-space: nowrap;
}
.wz-section-rule { flex: 1; height: 1px; background: var(--c-line); }

/* Tags */
.wz-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.wz-tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--c-tag); color: var(--c-primary);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}

/* Editor's picks — horizontal scroller on mobile, grid on desktop */
.wz-picks {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.wz-pick {
  display: flex; flex-direction: column; color: var(--c-fg);
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; transition: all .15s;
}
.wz-pick:hover {
  text-decoration: none; transform: translateY(-2px);
  border-color: var(--c-primary); box-shadow: var(--shadow-md);
}
.wz-pick-thumb {
  width: 100%; aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  background-color: var(--c-line-2);
}
.wz-pick-body { padding: 14px 14px 16px; }
.wz-pick-title {
  font-size: 15px; font-weight: 600; line-height: 1.35;
  margin: 0 0 8px; letter-spacing: -.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article grid */
.wz-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.wz-card {
  position: relative;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; transition: all .18s;
}
.wz-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.wz-card--notice { border-color: var(--c-accent); }
.wz-card-link { display: block; color: var(--c-fg); }
.wz-card-link:hover { text-decoration: none; }
.wz-card-thumb {
  position: relative;
  width: 100%; aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  background-color: var(--c-line-2);
}
.wz-card-flag {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; font-size: 11px; font-weight: 700;
  border-radius: 4px; background: rgba(255,255,255,.95); color: var(--c-fg);
  letter-spacing: .04em;
}
.wz-card-flag--notice { background: var(--c-accent); color: #fff; }
.wz-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.wz-card-title {
  font-size: 17px; font-weight: 700; line-height: 1.3;
  letter-spacing: -.015em; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Pretendard", "Playfair Display", Georgia, serif;
}
.wz-card-excerpt {
  font-size: 13.5px; color: var(--c-muted); line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.wz-check {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: rgba(255,255,255,.95); border-radius: 4px; padding: 2px 6px;
}

.wz-empty {
  text-align: center; color: var(--c-muted);
  padding: 80px 20px; border: 1px dashed var(--c-line); border-radius: var(--radius);
  background: var(--c-line-2);
}

/* Stack hero on tablet & below */
@media (max-width: 860px) {
  .wz-hero { grid-template-columns: 1fr; }
  .wz-hero-image { aspect-ratio: 16 / 9; }
  .wz-hero-body { padding: 24px 22px 26px; }
  .wz-grid { gap: 22px; }
}
@media (max-width: 520px) {
  .wz-masthead { gap: 14px; padding-bottom: 16px; margin-bottom: 22px; }
  .wz-search input { min-width: 0; flex: 1; }
  .wz-section { margin-bottom: 40px; }
  .wz-picks { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .wz-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ 아코디언 (/{lang}/p/faq) ===== */
.faq-accordion { max-width: 860px; margin: 6px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--c-line, #e3e8ef); border-radius: 12px; background: #fff; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: 0 8px 26px rgba(11,61,145,.09); border-color: var(--c-primary, #0b3d91); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 20px; font-weight: 700; font-size: 16px; color: #16233a; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q-mark { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--c-primary, #0b3d91); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.faq-q-txt { flex: 1; }
.faq-chev { flex: none; color: #9aa6b6; transition: transform .25s; font-size: 14px; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 20px 20px 64px; color: #46566b; line-height: 1.8; font-size: 15px; }
.faq-empty-pub { text-align: center; color: #8a96a6; padding: 50px 0; }
@media (max-width: 768px) {
  .faq-q { font-size: 15px; padding: 15px 16px; gap: 11px; }
  .faq-a { padding: 0 16px 18px 16px; }
}

/* paragliding 자격증 관리 규정 탭(3) 표 본문 좌측정렬 (20260616) */
.page-paragliding .pg-panel[data-ptp="3"] tbody td { text-align: left; }
.page-paragliding .pg-panel[data-ptp="3"] table th:nth-child(2),
.page-paragliding .pg-panel[data-ptp="3"] table td:nth-child(2) { width: 16%; min-width: 120px; text-align: center; }
.page-paragliding .pg-panel[data-ptp="3"] table th:nth-child(1),
.page-paragliding .pg-panel[data-ptp="3"] table td:nth-child(1) { white-space: nowrap; width: 1%; }
/* tab3 표를 다른 탭(pg-grade-table) 스타일로 (20260616) */
.page-paragliding .pg-panel[data-ptp="3"] table th { background: var(--c-primary, #0b3d91); color: #fff; font-weight: 700; padding: 14px 12px; border: 1px solid rgba(255,255,255,.22); }
.page-paragliding .pg-panel[data-ptp="3"] table td { padding: 13px 20px; vertical-align: middle; background: #fff; }
.page-paragliding .pg-panel[data-ptp="3"] table { font-size: 16.5px; }


/* ===== 4번 탭(자격 기준·이수 항목) 타임라인 디자인 (안 B, 20260616) ===== */
.page-paragliding .pg-panel[data-ptp="4"] { counter-reset: pgcourse; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course {
  position: relative; border: 1px solid #e7edf6; border-radius: 14px; background: #fff;
  box-shadow: 0 4px 16px rgba(8,22,46,.05); margin: 0 0 26px; padding: 20px 24px 22px 66px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course::before {
  content: ""; position: absolute; left: 27px; top: 34px; height: calc(100% + 26px);
  width: 2px; background: #d3deef; z-index: 0;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course:last-of-type::before { display: none; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course > h3 {
  counter-increment: pgcourse; margin: 0 0 14px; padding: 0; font-size: 18px;
  font-weight: 800; color: var(--c-primary, #0b3d91); border: 0; background: none;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course > h3::before {
  content: counter(pgcourse); position: absolute; left: 12px; top: 18px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--c-primary, #0b3d91);
  color: #fff; font-size: 15px; font-weight: 800; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 0 0 4px #fff, 0 0 0 6px #e7edf6; z-index: 1;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-spec {
  background: #f6f8fc; border-left: 3px solid var(--c-primary, #0b3d91);
  border-radius: 0 8px 8px 0; padding: 11px 15px; margin: 9px 0; line-height: 1.7; font-size: 16.5px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-spec strong {
  display: inline-block; color: #fff; background: var(--c-primary, #0b3d91);
  padding: 2px 12px; border-radius: 20px; font-size: 13px; font-weight: 700;
  margin-right: 6px; vertical-align: 2px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course h4 {
  margin: 20px 0 9px; padding-left: 12px; border-left: 4px solid #ffd233;
  font-size: 16px; font-weight: 800; color: #1a2436;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ol,
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ul { margin: 9px 0; padding-left: 2px; list-style: none; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ol { counter-reset: pgli; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ol > li {
  position: relative; padding: 6px 0 6px 26px; line-height: 1.7; font-size: 16.5px; border-bottom: 1px dashed #eef2f8;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ol > li:last-child { border-bottom: 0; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ol > li::before {
  counter-increment: pgli; content: counter(pgli); position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--c-primary, #0b3d91);
  color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ul { column-count: 2; column-gap: 36px; }
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ul > li {
  position: relative; break-inside: avoid; padding: 5px 0 5px 18px; line-height: 1.7; font-size: 16.5px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-course ul > li::before {
  content: ""; position: absolute; left: 3px; top: 13px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--c-primary, #0b3d91);
}
@media (max-width: 600px) {
  .page-paragliding .pg-panel[data-ptp="4"] .pg-course { padding: 16px 15px 16px 52px; margin-bottom: 22px; }
  .page-paragliding .pg-panel[data-ptp="4"] .pg-course::before { left: 21px; top: 29px; height: calc(100% + 22px); }
  .page-paragliding .pg-panel[data-ptp="4"] .pg-course > h3 { font-size: 16px; }
  .page-paragliding .pg-panel[data-ptp="4"] .pg-course > h3::before { left: 8px; top: 15px; width: 28px; height: 28px; font-size: 14px; }
  .page-paragliding .pg-panel[data-ptp="4"] .pg-spec { font-size: 14.5px; }
  .page-paragliding .pg-panel[data-ptp="4"] .pg-course ul { column-count: 1; }
}

/* 4번 탭: 섹션 헤더 밴드 강화 + 이론 과목 칩 (20260616) */
.page-paragliding .pg-panel[data-ptp="4"] .pg-course h4 {
  margin: 26px 0 12px; padding: 9px 14px; background: #eef3fb;
  border-left: 4px solid #ffd233; border-radius: 0 6px 6px 0;
  font-size: 16px; font-weight: 800; color: var(--c-primary, #0b3d91);
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-subjects {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 10px; margin: 10px 0 4px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-subj {
  position: relative; background: #f6f8fc; border: 1px solid #e3ebf6;
  border-radius: 10px; padding: 13px 14px; display: flex; flex-direction: column; gap: 3px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-subj .ps-n {
  position: absolute; top: 9px; right: 12px; font-size: 13px; font-weight: 800; color: #c5d2e6;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-subj .ps-t {
  font-size: 16.5px; font-weight: 800; color: var(--c-primary, #0b3d91); padding-right: 16px;
}
.page-paragliding .pg-panel[data-ptp="4"] .pg-subj .ps-d {
  font-size: 14px; color: #5f6b7e; line-height: 1.5;
}

/* ===== 모터패러글라이딩 페이지 (20260616) ===== */
.page-motor .mp-hero { display: grid; grid-template-columns: 1fr 1.45fr; gap: 34px; align-items: stretch; margin: 6px 0 38px; }
.page-motor .mp-eyebrow { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 2px; color: #1a56a8; background: #eef3fb; padding: 5px 13px; border-radius: 20px; margin-bottom: 14px; }
.page-motor .mp-hero h2 { font-size: 30px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 16px; border: 0; padding: 0; }
.page-motor .mp-hero p { font-size: 16.5px; line-height: 1.85; color: #2a3346; margin: 0; }
.page-motor .mp-hero-img { margin: 0; height: 100%; position: relative; min-height: 210px; }
.page-motor .mp-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; border-radius: 16px; box-shadow: 0 12px 30px rgba(8,22,46,.14); display: block; }
.page-motor .mp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 42px; }
.page-motor .mp-stat { background: linear-gradient(135deg, var(--c-primary, #0b3d91), #1a56a8); color: #fff; border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 8px 22px rgba(11,61,145,.18); }
.page-motor .mp-stat b { display: block; font-size: 40px; font-weight: 800; line-height: 1; }
.page-motor .mp-stat b small { font-size: 17px; font-weight: 700; margin-left: 3px; opacity: .85; }
.page-motor .mp-stat span { display: block; margin-top: 11px; font-size: 14.5px; color: #cfe0f5; }
.page-motor .mp-sec { margin: 0 0 20px; }
.page-motor .mp-sec h2 { font-size: 25px; font-weight: 800; color: var(--c-primary, #0b3d91); border-bottom: 2px solid #eef2f8; padding-bottom: 10px; margin: 0 0 18px; }
.page-motor .mp-sec p { font-size: 16.5px; line-height: 1.9; color: #2a3346; margin: 0 0 14px; }
.page-motor .mp-feats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.page-motor .mp-feat { position: relative; flex: 1 1 240px; background: #f6f8fc; border-left: 4px solid #ffd233; border-radius: 0 10px 10px 0; padding: 14px 16px 14px 46px; font-size: 15.5px; font-weight: 700; color: #1a2436; line-height: 1.55; }
.page-motor .mp-feat::before { content: "\2713"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 21px; height: 21px; background: var(--c-primary, #0b3d91); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
@media (max-width: 768px) {
  .page-motor .mp-hero { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .page-motor .mp-hero-img { order: -1; }
  .page-motor .mp-hero-img { height: 240px; min-height: 240px; }
  .page-motor .mp-hero h2 { font-size: 24px; }
  .page-motor .mp-stats { grid-template-columns: 1fr; gap: 12px; margin-bottom: 30px; }
  .page-motor .mp-stat { padding: 18px 20px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
  .page-motor .mp-stat b { font-size: 32px; }
  .page-motor .mp-stat span { margin-top: 0; }
  .page-motor .mp-sec h2 { font-size: 21px; }
}

/* 게시판 본문: 구 그누보드 이관글 레거시 인라인 폰트(굴림/9pt) 정규화 (20260616) */
.post-view .post-body { font-size: 16px; line-height: 1.85; color: #2a3346; }
.post-view .post-body, .post-view .post-body * { font-family: var(--font-sans, Pretendard, "Apple SD Gothic Neo", sans-serif) !important; }
.post-view .post-body font, .post-view .post-body span, .post-view .post-body p,
.post-view .post-body div, .post-view .post-body td, .post-view .post-body li {
  font-size: inherit !important; line-height: 1.85 !important;
}
.post-view .post-body table, .post-view .post-body tbody, .post-view .post-body tr,
.post-view .post-body td, .post-view .post-body th, .post-view .post-body font,
.post-view .post-body span, .post-view .post-body p, .post-view .post-body div,
.post-view .post-body li, .post-view .post-body b, .post-view .post-body strong { font-size: 16px !important; }
/* 게시판 목록 메타 컬럼은 본문보다 작게 (20260616) */
.board-table td.meta-col, .board-table td.num-col { font-size: 14px; color: var(--c-muted); }

/* ===== 게시판 목록 인트로 타이틀 + 검색박스 디자인 (20260616) ===== */
.board-head { align-items: center; justify-content: flex-end; border-bottom: none; padding-bottom: 0; margin-bottom: 14px; }
.board-intro { min-width: 0; }
.board-intro-title { font-size: 25px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 7px; position: relative; padding-left: 15px; line-height: 1.2; }
.board-intro-title::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 5px; border-radius: 3px; background: #ffd233; }
.board-intro-desc { margin: 0; font-size: 14.5px; color: #6b7686; }
.board-tools .search { display: flex; align-items: center; gap: 0; background: #fff; border: 1.5px solid #e3e8f0; border-radius: 26px; padding: 4px 5px 4px 14px; transition: border-color .15s, box-shadow .15s; }
.board-tools .search:focus-within { border-color: var(--c-primary, #0b3d91); box-shadow: 0 0 0 3px rgba(11,61,145,.12); }
.board-tools .search input[type="search"] { border: 0; outline: 0; background: transparent 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='%239aa6b6' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat left center; padding: 9px 8px 9px 24px; font-size: 14.5px; width: 190px; color: #1a2436; }
.board-tools .search input[type="search"]::placeholder { color: #9aa6b6; }
.board-tools .search button { background: var(--c-primary, #0b3d91); color: #fff; border: 0; border-radius: 22px; padding: 9px 20px; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .15s; }
.board-tools .search button:hover { background: #14509e; }
@media (max-width: 600px) {
  .board-head { align-items: stretch; }
  .board-tools { width: 100%; }
  .board-tools .search { flex: 1; }
  .board-tools .search input[type="search"] { width: 100%; }
  .board-intro-title { font-size: 21px; }
}
/* 게시판 목록 번호 컬럼 폭/패딩 (20260616) */
.board-table .num-col { width: 5%; }
/* 제목 컬럼만 좌측정렬 (20260616) */
.board-table .subj, .board-table thead th:not([class]) { text-align: left; }
/* 작성자·작성일·조회 컬럼 넓히기 (20260616) */
.board-table .meta-col { width: 8%; }

/* ===== 교육과정(courses) 페이지 (20260616) ===== */
.page-courses .cr-lead { font-size: 16.5px; line-height: 1.8; color: #475067; margin: 0 0 34px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.page-courses .cr-sec { margin: 0 0 42px; }
.page-courses .cr-sec-title { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 2px solid #eef2f8; }
.page-courses .cr-no { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--c-primary, #0b3d91); color: #fff; border-radius: 10px; font-size: 15px; font-weight: 800; }
.page-courses .cr-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
.page-courses .cr-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 680px; background: #fff; }
.page-courses .cr-table thead th { background: var(--c-primary, #0b3d91); color: #fff; padding: 13px 10px; font-weight: 700; font-size: 14px; border: 1px solid rgba(255,255,255,.18); text-align: center; white-space: nowrap; }
.page-courses .cr-table td { border: 1px solid #e6ebf3; padding: 12px 13px; vertical-align: middle; line-height: 1.65; color: #2a3346; }
.page-courses .cr-table .cr-course { font-weight: 800; color: #1a2436; text-align: center; white-space: nowrap; }
.page-courses .cr-table .cr-course b { color: var(--c-primary, #0b3d91); }
.page-courses .cr-table .cr-fee { font-weight: 800; color: var(--c-primary, #0b3d91); text-align: center; white-space: nowrap; }
.page-courses .cr-table .cr-c { text-align: center; }
.page-courses .cr-table b { color: var(--c-primary, #0b3d91); }
.page-courses .cr-note { font-size: 13.5px; color: #6b7686; margin: 12px 0 0; line-height: 1.7; }
@media (max-width: 768px) {
  .page-courses .cr-sec-title { font-size: 19px; }
  .page-courses .cr-table { font-size: 15px; }
  .page-courses .cr-lead { font-size: 15.5px; }
}
/* courses 표: 전역 first-child 강조 무력화(첫 데이터행을 일반행으로) (20260616) */
.page-courses .cr-table tbody tr:first-child td { background: #fff; font-weight: 400; color: #2a3346; }
.page-courses .cr-table tbody tr:first-child td.cr-course { font-weight: 800; color: #1a2436; }
.page-courses .cr-table tbody tr:first-child td.cr-fee { font-weight: 800; color: var(--c-primary, #0b3d91); }
/* courses 1번 표: 교육구분 분리(과정명|Pro) (20260616) */
.page-courses .cr-table .cr-pro { font-weight: 800; color: var(--c-primary, #0b3d91); text-align: center; white-space: nowrap; }
.page-courses .cr-table tbody tr:first-child td.cr-pro { font-weight: 800; color: var(--c-primary, #0b3d91); }
/* courses 1번 표 비고 컬럼 (20260616) */
.page-courses .cr-table.cr-wide { min-width: 920px; }
.page-courses .cr-table .cr-bigo { text-align: left; font-size: 14px; color: #5f6b7e; line-height: 1.6; white-space: normal; vertical-align: middle; }
/* courses 표: 설명 텍스트 컬럼(클래스 없는 셀) 좌측정렬 (20260616) */
.page-courses .cr-table tbody td:not([class]) { text-align: left; }
/* courses 주요내용 점 리스트 (20260616) */
.page-courses .cr-table .cr-ul { margin: 0; padding: 0; list-style: none; text-align: left; }
.page-courses .cr-table .cr-ul li { position: relative; padding-left: 13px; line-height: 1.6; margin: 3px 0; }
.page-courses .cr-table .cr-ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--c-primary, #0b3d91); }
/* courses 5번 표(회원안내) 컬럼 폭 조정 (20260616) */
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(1) { width: 11%; }
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(2) { width: 14%; }
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(3) { width: 9%; }
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(4) { width: 22%; }
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(5) { width: 18%; }
.page-courses .cr-sec:nth-of-type(5) .cr-table th:nth-child(6) { width: 26%; }
/* courses 2·3번 표: 기간 넓히고 비고 줄이기 (20260616) */
.page-courses .cr-sec:nth-of-type(2) .cr-table th:nth-child(3),
.page-courses .cr-sec:nth-of-type(3) .cr-table th:nth-child(3),
.page-courses .cr-sec:nth-of-type(4) .cr-table th:nth-child(3) { width: 10%; }
.page-courses .cr-sec:nth-of-type(2) .cr-table th:nth-child(6),
.page-courses .cr-sec:nth-of-type(3) .cr-table th:nth-child(6),
.page-courses .cr-sec:nth-of-type(4) .cr-table th:nth-child(6) { width: 19%; }

/* ===== 단계별 교육(courses-step) 탭 + 상세 (20260616) ===== */
.page-cstep .cs-intro { font-size: 16.5px; line-height: 1.85; color: #475067; margin: 0 0 26px; }
.page-cstep .pg-tabs { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 2px solid #e7edf6; margin-bottom: 24px; }
.page-cstep .pg-tab { appearance: none; border: 0; background: #f1f5fb; color: #4a5568; font-size: 16px; font-weight: 700; padding: 11px 18px; border-radius: 10px 10px 0 0; cursor: pointer; font-family: inherit; }
.page-cstep .pg-tab.on { background: var(--c-primary, #0b3d91); color: #fff; }
.page-cstep .pg-panel { display: none; }
.page-cstep .pg-panel.on { display: block; }
.page-cstep .pg-panel > h2:first-child { font-size: 24px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 18px; border: 0; padding: 0; }
.page-cstep .cs-spec { background: #f6f8fc; border: 1px solid #e7edf6; border-left: 4px solid var(--c-primary, #0b3d91); border-radius: 0 12px 12px 0; padding: 16px 22px; margin: 0 0 24px; }
.page-cstep .cs-row { display: flex; gap: 14px; padding: 8px 0; border-bottom: 1px dashed #e3e8f0; font-size: 16.5px; line-height: 1.65; }
.page-cstep .cs-row:last-child { border-bottom: 0; }
.page-cstep .cs-k { flex: none; width: 116px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-cstep .cs-v { color: #2a3346; }
.page-cstep .pg-panel h3 { font-size: 18px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 30px 0 12px; padding-left: 13px; border-left: 4px solid #da1c0e; }
.page-cstep .pg-panel h4 { font-size: 16px; font-weight: 800; color: #1a2436; margin: 18px 0 8px; }
.page-cstep .pg-panel > p { font-size: 16.5px; line-height: 1.85; color: #2a3346; margin: 0 0 14px; }
.page-cstep .pg-panel ol, .page-cstep .pg-panel ul { margin: 8px 0 14px; padding-left: 20px; line-height: 1.75; font-size: 16.5px; color: #2a3346; }
.page-cstep .pg-panel li { margin: 3px 0; }
.page-cstep .cs-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 560px; margin: 8px 0 18px; background: #fff; }
.page-cstep .cs-table th { background: var(--c-primary, #0b3d91); color: #fff; padding: 11px 10px; font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,.18); text-align: center; }
.page-cstep .cs-table td { border: 1px solid #e6ebf3; padding: 10px 12px; line-height: 1.6; color: #2a3346; vertical-align: middle; }
.page-cstep .cs-table .cs-sub { font-weight: 800; color: var(--c-primary, #0b3d91); text-align: center; vertical-align: middle; }
.page-cstep .cs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.page-cstep .cs-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 14px; margin: 12px 0 18px; }
.page-cstep .cs-day { background: #fff; border: 1px solid #e7edf6; border-radius: 12px; padding: 16px 18px; box-shadow: 0 3px 12px rgba(8,22,46,.04); }
.page-cstep .cs-day .cs-dh { margin: 0 0 10px; font-size: 15px; font-weight: 800; color: #fff; background: var(--c-primary, #0b3d91); display: inline-block; padding: 4px 14px; border-radius: 20px; }
.page-cstep .cs-day.cs-eval .cs-dh { background: #da1c0e; }
.page-cstep .cs-day ul { margin: 0; padding-left: 16px; font-size: 15.5px; line-height: 1.7; }
.page-cstep .cs-note { background: #fff8e8; border: 1px solid #f0e0b0; border-radius: 10px; padding: 12px 16px; font-size: 15.5px; color: #7a6a3a; margin: 10px 0 0; line-height: 1.7; }
@media (max-width: 600px) { .page-cstep .cs-k { width: 84px; font-size: 15px; } .page-cstep .pg-tab { font-size: 13.5px; padding: 9px 12px; } .page-cstep .pg-panel > h2:first-child { font-size: 20px; } }
/* courses-step 과정 사진 갤러리 (20260616) */
.page-cstep .cs-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 10px 0 6px; }
.page-cstep .cs-gallery figure { margin: 0; }
.page-cstep .cs-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; display: block; box-shadow: 0 4px 14px rgba(8,22,46,.08); }
.page-cstep .cs-gallery figcaption { text-align: center; font-size: 15px; font-weight: 700; color: #2a3346; margin-top: 8px; }
/* courses-step 표 셀 좌측정렬(리스트 불릿 정렬) — cs-sub 라벨은 가운데 유지 (20260616) */
.page-cstep .cs-table td { text-align: left; }
.page-cstep .cs-table td ul { margin: 4px 0; padding-left: 18px; }
.page-cstep .cs-table td b { display: block; margin: 10px 0 4px; color: var(--c-primary, #0b3d91); }
.page-cstep .cs-table td b:first-child { margin-top: 0; }
/* courses-step 하단 액션 버튼 (20260616) */
.page-cstep .cs-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px 0 6px; }
.page-cstep .cs-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 30px; font-size: 16px; font-weight: 700; text-decoration: none; transition: background .15s, color .15s; }
.page-cstep .cs-btn span { font-weight: 800; font-size: 16px; line-height: 1; }
.page-cstep .cs-btn-primary { background: var(--c-primary, #0b3d91); color: #fff; }
.page-cstep .cs-btn-primary:hover { background: #14509e; }
.page-cstep .cs-btn-ghost { background: #fff; color: var(--c-primary, #0b3d91); border: 2px solid var(--c-primary, #0b3d91); }
.page-cstep .cs-btn-ghost:hover { background: #eef3fb; }
/* courses-step 탭1 안C: 이론 칩 + 실습 3단계 (20260616) */
.page-cstep .cs-subjects { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: 8px 0 6px; }
.page-cstep .cs-subj { background: #f6f8fc; border: 1px solid #e3ebf6; border-radius: 10px; padding: 12px 14px; }
.page-cstep .cs-subj .cs-st { display: block; font-size: 16.5px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-cstep .cs-subj .cs-sd { display: block; font-size: 13px; color: #5f6b7e; margin-top: 3px; line-height: 1.45; }
.page-cstep .cs-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0 6px; }
.page-cstep .cs-step { position: relative; background: #fff; border: 1px solid #e7edf6; border-radius: 14px; padding: 20px 18px 16px; box-shadow: 0 4px 14px rgba(8,22,46,.05); }
.page-cstep .cs-step .cs-stepn { position: absolute; top: -14px; left: 18px; width: 30px; height: 30px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px #fff; }
.page-cstep .cs-step h4 { margin: 4px 0 10px; font-size: 16px; color: var(--c-primary, #0b3d91); border: 0; padding: 0; }
.page-cstep .cs-step h4 small { font-weight: 600; color: #6b7686; font-size: 12.5px; }
.page-cstep .cs-step ul { margin: 0; padding-left: 16px; font-size: 15px; line-height: 1.65; color: #2a3346; }
.page-cstep .cs-step li { margin: 3px 0; }
@media (max-width: 760px) { .page-cstep .cs-steps { grid-template-columns: 1fr; gap: 24px; } }

/* ===== 온라인 교육신청 폼 (20260616) ===== */
.apply-wrap { max-width: 760px; margin: 0 auto; }
.apply-form { background: #fff; border: 1px solid #e7edf6; border-radius: 16px; padding: 26px 28px; box-shadow: 0 6px 22px rgba(8,22,46,.05); }
.apply-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.apply-field { display: flex; flex-direction: column; gap: 6px; }
.apply-field.full { grid-column: 1 / -1; }
.apply-field label { font-size: 14px; font-weight: 700; color: #1a2436; }
.apply-field label .req { color: #da1c0e; margin-left: 3px; }
.apply-field input, .apply-field select, .apply-field textarea { font-family: inherit; font-size: 15px; padding: 11px 13px; border: 1.5px solid #e3e8f0; border-radius: 10px; background: #fff; color: #1a2436; transition: border-color .15s, box-shadow .15s; }
.apply-field input:focus, .apply-field select:focus, .apply-field textarea:focus { outline: 0; border-color: var(--c-primary, #0b3d91); box-shadow: 0 0 0 3px rgba(11,61,145,.1); }
.apply-field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.apply-note { font-size: 13px; color: #8a96a6; margin: 14px 0 0; line-height: 1.6; }
.apply-submit { margin-top: 20px; text-align: center; }
.apply-submit button { background: var(--c-primary, #0b3d91); color: #fff; border: 0; border-radius: 30px; padding: 14px 44px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s; }
.apply-submit button:hover { background: #14509e; }
.apply-done { background: #eef5ec; border: 1px solid #cfe3c8; border-radius: 16px; padding: 40px 28px; text-align: center; }
.apply-done .ad-ic { width: 56px; height: 56px; border-radius: 50%; background: #2e9e4f; color: #fff; font-size: 30px; line-height: 56px; margin: 0 auto 16px; }
.apply-done h3 { font-size: 21px; color: #1a2436; margin: 0 0 8px; border: 0; }
.apply-done p { color: #4a5568; font-size: 15px; line-height: 1.7; margin: 0; }
.apply-err { background: #fdeceb; border: 1px solid #f4c7c3; color: #a3271f; border-radius: 10px; padding: 12px 16px; margin: 0 0 18px; font-size: 14.5px; }
@media (max-width: 600px) { .apply-grid { grid-template-columns: 1fr; } .apply-form { padding: 20px 18px; } }
/* courses-step 필수이수 번호 카드 (20260616) */
.page-cstep .cs-reqs { display: grid; gap: 12px; margin: 10px 0 8px; }
.page-cstep .cs-req { display: flex; gap: 14px; background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 12px; padding: 15px 18px; }
.page-cstep .cs-req .cs-reqn { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.page-cstep .cs-req .cs-reqb { flex: 1; min-width: 0; }
.page-cstep .cs-req h5 { margin: 4px 0 7px; font-size: 16.5px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-cstep .cs-req ul { margin: 0; padding-left: 16px; font-size: 15.5px; line-height: 1.7; color: #2a3346; }
.page-cstep .cs-req li { margin: 2px 0; }

/* ===== 교육신청 상세(신청글 본문) 카드 (20260616) ===== */
.post-view .apply-detail { max-width: 100%; border: 1px solid #e7edf6; border-radius: 12px; overflow: hidden; margin: 4px 0 18px; }
.post-view .apply-detail .ad-row { display: flex; border-bottom: 1px solid #eef2f8; }
.post-view .apply-detail .ad-row:last-child { border-bottom: 0; }
.post-view .apply-detail .ad-k { flex: none; width: 128px; background: #f6f8fc; color: var(--c-primary, #0b3d91); font-weight: 700; font-size: 14.5px; padding: 12px 16px; }
.post-view .apply-detail .ad-v { flex: 1; padding: 12px 16px; font-size: 15px; color: #1a2436; word-break: break-word; }
.post-view .ad-memo { max-width: 100%; background: #f9fafc; border: 1px solid #eef2f8; border-radius: 10px; padding: 14px 16px; }
.post-view .ad-memo .ad-mk { display: block; color: var(--c-primary, #0b3d91); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.post-view .ad-memo p { margin: 0; line-height: 1.7; font-size: 15px; }
@media (max-width: 480px) { .post-view .apply-detail .ad-k { width: 90px; font-size: 13.5px; } }
/* 교육신청 상세: 여러 항목 한 줄 (20260616) */
.post-view .apply-detail .ad-multi { display: flex; flex-wrap: wrap; }
.post-view .apply-detail .ad-multi .ad-cell { flex: 1 1 0; min-width: 150px; display: flex; border-right: 1px solid #eef2f8; }
.post-view .apply-detail .ad-multi .ad-cell:last-child { border-right: 0; }
.post-view .apply-detail .ad-multi .ad-k { width: auto; min-width: 68px; flex: none; }
.post-view .apply-detail .ad-multi .ad-v { flex: 1; }
@media (max-width: 520px) { .post-view .apply-detail .ad-multi { flex-direction: column; } .post-view .apply-detail .ad-multi .ad-cell { border-right: 0; border-bottom: 1px solid #eef2f8; } .post-view .apply-detail .ad-multi .ad-cell:last-child { border-bottom: 0; } }
/* courses-step 탭 전체폭 채우기 (20260616) */
.page-cstep .pg-tabs { gap: 8px; }
.page-cstep .pg-tab { flex: 1 1 0; min-width: 110px; text-align: center; padding: 13px 14px; }
@media (max-width: 600px) { .page-cstep .pg-tab { flex: 1 1 40%; min-width: 0; } }
/* courses-step 이론 세부표 1교시/2교시 (20260616) */
.page-cstep .cs-theory { min-width: 720px; }
.page-cstep .cs-table td { background: #fff !important; }
/* courses-step 필수이수 카드 2열 (20260617) */
.page-cstep .cs-reqs { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
@media (max-width: 600px) { .page-cstep .cs-reqs { grid-template-columns: 1fr; } }
/* courses-step 평가 콜아웃 박스 (20260617) */
.page-cstep .cs-evalbox { background: #eff4fb; border: 1px solid #d3e1f2; border-left: 5px solid #ffb400; border-radius: 12px; padding: 18px 22px; margin: 26px 0; }
.page-cstep .cs-evalbox-t { display: inline-flex; align-items: center; gap: 7px; background: var(--c-primary, #0b3d91); color: #fff; font-size: 14px; font-weight: 800; padding: 5px 15px; border-radius: 20px; margin-bottom: 12px; }
.page-cstep .cs-evalbox-t::before { content: "\2713"; font-weight: 800; }
.page-cstep .cs-evalbox p { margin: 0; font-size: 16px; line-height: 1.85; color: #1a2436; }
/* courses-step 일자카드 높이 동일 + 이론표 서브헤더 연한색 (20260617) */
.page-cstep .cs-days { align-items: stretch; }
.page-cstep .cs-theory thead tr:nth-child(2) th { background: #e8eef8; color: var(--c-primary, #0b3d91); border-color: #cfdbef; }

/* ===== 2인승 비행체험(experience) 페이지 (20260617) ===== */
.page-cstep .exp-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0 8px; }
.page-cstep .exp-imgs img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.page-cstep .exp-img { width: 100%; border-radius: 12px; display: block; margin: 12px 0; }
.page-cstep .exp-map { display: block; width: 100%; max-width: 440px; margin: 12px auto; border-radius: 12px; }
.page-cstep .exp-safety { background: #fdf3f2; border: 1px solid #f2d2cf; border-left: 4px solid #da1c0e; border-radius: 0 10px 10px 0; padding: 12px 18px; margin: 14px 0; }
.page-cstep .exp-safety ul { margin: 0; padding-left: 18px; }
.page-cstep .exp-safety li { color: #a3271f; font-weight: 700; font-size: 15.5px; margin: 3px 0; }
.page-cstep ol.exp-time { background: #f6f8fc; border: 1px solid #e7edf6; border-radius: 12px; padding: 6px 8px; margin: 12px 0; counter-reset: et; list-style: none; }
.page-cstep ol.exp-time li { position: relative; padding: 12px 16px 12px 54px; border-bottom: 1px dashed #e3e8f0; font-size: 15.5px; line-height: 1.6; color: #2a3346; }
.page-cstep ol.exp-time li:last-child { border-bottom: 0; }
.page-cstep ol.exp-time li::before { counter-increment: et; content: counter(et); position: absolute; left: 14px; top: 11px; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.page-cstep .exp-equip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 14px 0; align-items: stretch; }
.page-cstep .exp-eq { background: #fff; border: 1px solid #e7edf6; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 14px rgba(8,22,46,.05); }
.page-cstep .exp-eq img { max-width: 100%; max-height: 240px; width: auto; height: auto; display: block; margin: 0 auto; background: #f3f6fb; }
.page-cstep .exp-eq .eqb { padding: 15px 17px; }
.page-cstep .exp-eq h4 { margin: 0 0 7px; font-size: 16px; color: var(--c-primary, #0b3d91); border: 0; padding: 0; }
.page-cstep .exp-eq p { margin: 0; font-size: 14.5px; line-height: 1.65; color: #2a3346; }
@media (max-width: 600px) { .page-cstep .exp-imgs { grid-template-columns: 1fr; } }
/* 오시는 길: PC 가로(지도+사진) / 모바일 세로 (20260617) */
.page-cstep .exp-loc { display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px; align-items: start; margin: 14px 0; }
.page-cstep .exp-loc img { width: 100%; border-radius: 12px; display: block; }
.page-cstep .exp-loc-ph { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 768px) { .page-cstep .exp-loc { grid-template-columns: 1fr; } }
/* 오시는 길 PC 가로 단일이미지 / 모바일 세로 (20260617) */
.page-cstep .exp-loc-pc, .page-cstep .exp-loc-mo { width: 100%; border-radius: 12px; display: block; margin: 14px 0; }
.page-cstep .exp-loc-mo { display: none; }
@media (max-width: 768px) { .page-cstep .exp-loc-pc { display: none; } .page-cstep .exp-loc-mo { display: block; } }
@media (max-width: 600px) { .page-cstep .exp-equip { grid-template-columns: 1fr; } }

/* ===== 자격증 과정(license) 카드 디자인 (20260617) ===== */
.page-cstep .lic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; margin: 8px 0; }
.page-cstep .lic-card { background: #fff; border: 1px solid #e7edf6; border-radius: 16px; padding: 22px 24px; box-shadow: 0 5px 18px rgba(8,22,46,.05); }
.page-cstep .lic-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 2px solid #eef2f8; }
.page-cstep .lic-head h3 { margin: 0; padding: 0; border: 0; font-size: 19px; font-weight: 800; color: var(--c-primary, #0b3d91); }
.page-cstep .lic-head h3 b { color: #da1c0e; margin-left: 4px; }
.page-cstep .lic-fee { flex: none; background: var(--c-primary, #0b3d91); color: #fff; font-weight: 800; font-size: 14px; padding: 6px 15px; border-radius: 20px; white-space: nowrap; }
.page-cstep .lic-card .cs-spec { background: transparent; border: 0; border-radius: 0; padding: 0; margin: 0 0 12px; }
.page-cstep .lic-card .cs-row { padding: 7px 0; }
.page-cstep .lic-card .cs-k { width: 92px; }
.page-cstep .lic-note { margin: 0; font-size: 14.5px; line-height: 1.7; color: #475067; background: #f6f8fc; border-left: 3px solid #da1c0e; border-radius: 0 10px 10px 0; padding: 12px 15px; }
@media (max-width: 768px) { .page-cstep .lic-grid { grid-template-columns: 1fr; } }


/* ===== 정회원 과정(membership) (20260617) ===== */
.page-cstep .mbr-h2 { font-size: 24px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 44px 0 18px; padding-bottom: 10px; border-bottom: 2px solid #eef2f8; }
.page-cstep .mbr-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 6px 0 6px; align-items: stretch; }
.page-cstep .mbr-plan { position: relative; background: #fff; border: 1px solid #e7edf6; border-radius: 16px; padding: 28px 22px 22px; text-align: center; box-shadow: 0 5px 18px rgba(8,22,46,.05); display: flex; flex-direction: column; }
.page-cstep .mbr-plan.feat { border: 2px solid var(--c-primary, #0b3d91); box-shadow: 0 10px 26px rgba(11,61,145,.13); }
.page-cstep .mbr-plan .mp-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #da1c0e; color: #fff; font-size: 14px; font-weight: 800; padding: 6px 18px; border-radius: 20px; white-space: nowrap; box-shadow: 0 3px 10px rgba(218,28,14,.3); }
.page-cstep .mbr-plan .mp-name { font-size: 22px; font-weight: 800; color: var(--c-primary, #0b3d91); margin: 0 0 14px; }
.page-cstep .mbr-plan .mp-fee { font-size: 38px; font-weight: 800; color: #1a2436; line-height: 1; }
.page-cstep .mbr-plan .mp-fee small { font-size: 18px; font-weight: 700; color: #6b7686; margin-left: 3px; }
.page-cstep .mbr-plan .mp-sub { font-size: 15.5px; color: #8a96a6; margin: 9px 0 0; min-height: 20px; }
.page-cstep .mbr-plan.feat .mp-sub { color: #da1c0e; font-weight: 700; }
.page-cstep .mbr-plan .mp-meta { margin: 18px 0 0; padding-top: 15px; border-top: 1px dashed #e3e8f0; font-size: 16.5px; color: #475067; line-height: 1.8; }
.page-cstep .mbr-vat { font-size: 13.5px; color: #8a96a6; text-align: right; margin: 6px 2px 0; }
.page-cstep .mbr-terms { margin-top: 6px; }
.page-cstep .mbr-terms h3 { font-size: 16px; margin: 22px 0 8px; }
.page-cstep .mbr-terms p { font-size: 14.5px; line-height: 1.8; color: #475067; }
@media (max-width: 768px) { .page-cstep .mbr-plans { grid-template-columns: 1fr; } .page-cstep .mbr-h2 { font-size: 20px; margin: 34px 0 14px; } }


/* 정회원 약관 조항 리스트 (20260617) */
.page-cstep .mbr-terms h4 { font-size: 15.5px; font-weight: 800; color: #1a2436; margin: 16px 0 5px; }
.page-cstep .mbr-terms ol, .page-cstep .mbr-terms ul { margin: 4px 0 12px; padding-left: 22px; font-size: 14.5px; line-height: 1.8; color: #475067; }
.page-cstep .mbr-terms li { margin: 3px 0; }
.page-cstep .mbr-terms ul.term-sub { list-style: none; padding-left: 6px; margin: 6px 0 4px; }
.page-cstep .mbr-terms ul.term-sub li { color: #5a6577; }


/* 정회원 약관 아코디언 토글 (20260617) */
.page-cstep .mbr-acc { margin-top: 40px; border-top: 2px solid #eef2f8; }
.page-cstep .mbr-acc-sum { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 2px 8px; user-select: none; }
.page-cstep .mbr-acc-sum::-webkit-details-marker { display: none; }
.page-cstep .mbr-acc-t { font-size: 23px; font-weight: 800; color: var(--c-primary, #0b3d91); line-height: 1.3; }
.page-cstep .mbr-acc-ic { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--c-primary, #0b3d91); color: #fff; font-size: 26px; font-weight: 300; line-height: 1; display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .15s; }
.page-cstep .mbr-acc-sum:hover .mbr-acc-ic { background: #14509e; }
.page-cstep .mbr-acc[open] .mbr-acc-ic { transform: rotate(45deg); }
.page-cstep .mbr-acc .mbr-terms { margin-top: 4px; padding-top: 4px; }
@media (max-width: 768px) { .page-cstep .mbr-acc-t { font-size: 19px; } .page-cstep .mbr-acc-ic { width: 30px; height: 30px; font-size: 23px; } }


/* 정회원 약관 확인 알림 (20260617) */
.page-cstep .mbr-tnotice { display: flex; align-items: center; gap: 12px; background: #fff4f3; border: 1px solid #f6c9c4; border-left: 5px solid #da1c0e; border-radius: 12px; padding: 15px 18px; margin: 40px 0 0; font-size: 16.5px; font-weight: 700; color: #b3271d; line-height: 1.5; }
.page-cstep .mbr-tnotice-ic { flex: none; width: 27px; height: 27px; border-radius: 50%; background: #da1c0e; color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.page-cstep .mbr-tnotice + .mbr-acc { margin-top: 14px; border-top: 0; }
@media (max-width: 768px) { .page-cstep .mbr-tnotice { font-size: 14.5px; padding: 12px 14px; gap: 10px; } }


/* 약관 전체 보더 박스 (20260617) */
.page-cstep .mbr-acc .mbr-terms { border: 1px solid #e3e8f0; border-radius: 14px; padding: 6px 24px 20px; background: #fcfdfe; margin-top: 14px; }
.page-cstep .mbr-acc .mbr-terms > h3:first-child { margin-top: 16px; }
@media (max-width: 600px) { .page-cstep .mbr-acc .mbr-terms { padding: 4px 16px 16px; } }


/* 약관 박스 바탕 연한 컬러 (20260617) */
.page-cstep .mbr-acc .mbr-terms { background: #f5f8fd; border-color: #dce6f4; }


/* 약관 토글: +를 제목 옆에 붙이고 원형 배경 제거 (20260617) */
.page-cstep .mbr-acc-sum { justify-content: flex-start; gap: 10px; }
.page-cstep .mbr-acc-ic { width: auto; height: auto; border-radius: 0; background: transparent; color: var(--c-primary, #0b3d91); font-size: 30px; font-weight: 400; box-shadow: none; }
.page-cstep .mbr-acc-sum:hover .mbr-acc-ic { background: transparent; color: #14509e; }


/* 언어별 본문 폰트 변수 — post-body(번역글)가 언어에 맞는 폰트로 렌더되도록 (20260617) */
body.lang-kr { --font-sans: "Pretendard", "Poppins", system-ui, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif; }
body.lang-en { --font-sans: "Pretendard", "Poppins", system-ui, -apple-system, "Apple SD Gothic Neo", "Segoe UI", Roboto, sans-serif; }
body.lang-jp { --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif; }
body.lang-cn { --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", system-ui, sans-serif; }
