/* ==========================================================
   시안 A (Modern Minimal) — type2 공통 스타일
   ========================================================== */

:root {
  --green-900: #0d3d34;
  --green-700: #1f7a5f;
  --green-500: #2fa37a;
  --green-100: #e6f4ee;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --line: #ececec;
  --text: #1a1a1a;
  --text-2: #555;
  --text-3: #8a8a8a;
  --radius: 10px;
  --max: 1240px;
}

/* RESET (운영 코드 호환) */
.v2 *, .v2 *::before, .v2 *::after { box-sizing: border-box; }
.v2 ul, .v2 li { list-style: none; margin: 0; padding: 0; }
.v2 a { color: inherit; text-decoration: none; }
.v2 img { max-width: 100%; display: block; }

body.v2 {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.5;
  margin: 0; padding: 0;
}

/* ============= TOP UTIL ============= */
.v2 .top-util { border-bottom: 1px solid var(--line); }
.v2 .top-util-inner { max-width: var(--max); margin: 0 auto; padding: 8px 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-3); }
.v2 .top-util .sns { display: flex; gap: 8px; align-items: center; }
.v2 .top-util .sns a { width: 28px; height: 28px; display: grid; place-items: center; color: var(--text-3); border-radius: 6px; transition: all .2s; }
.v2 .top-util .sns a:hover { color: var(--green-700); background: var(--green-100); transform: scale(1.08); }
.v2 .top-util .sns a svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.v2 .top-util .links a { margin-left: 18px; transition: color .2s; }
.v2 .top-util .links a:hover { color: var(--green-700); }

/* ============= HEADER / NAV ============= */
.v2 header.site { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 100; }
.v2 .header-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 84px; position: relative; }
.v2 .logo { display: flex; align-items: center; }
.v2 .logo img { height: 48px; width: auto; display: block; }
.v2 nav.gnb { position: static; }
.v2 nav.gnb > ul { display: flex; gap: 44px; }
.v2 nav.gnb > ul > li { position: static; }
.v2 nav.gnb > ul > li > a { font-size: 16px; font-weight: 600; color: var(--text); padding: 30px 0; position: relative; transition: color .2s; display: block; }
.v2 nav.gnb > ul > li > a:hover { color: var(--green-700); }
.v2 nav.gnb > ul > li > a::after { content: ''; position: absolute; left: 0; bottom: 22px; width: 0; height: 2px; background: var(--green-700); transition: width .25s ease; }
.v2 nav.gnb > ul > li.has-sub:hover > a::after,
.v2 nav.gnb > ul > li > a:hover::after { width: 100%; }

/* SUBMENU dropdown */
.v2 nav.gnb > ul > li.has-sub { position: relative; }
.v2 .submenu {
  position: absolute; left: 50%; top: calc(100% - 8px);
  transform: translate(-50%, 4px);
  min-width: 260px; background: #fff;
  border: 1px solid rgba(13,61,52,.06); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(13,61,52,.08), 0 2px 6px rgba(13,61,52,.04);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1), visibility .2s;
  z-index: 1000;
}
.v2 .submenu::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.v2 nav.gnb > ul > li.has-sub:hover .submenu,
.v2 nav.gnb > ul > li.has-sub.is-open .submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.v2 .submenu-inner { padding: 4px; }
.v2 .submenu-group-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8a9994; padding: 8px 12px 4px; line-height: 1.3; }
.v2 .submenu-group-label .ko { display: block; font-size: .68rem; font-weight: 600; letter-spacing: 0; color: #b3bfba; text-transform: none; margin-top: 2px; }
.v2 .submenu-grid { display: flex; flex-direction: column; gap: 0; }
.v2 .submenu-grid a { position: relative; display: block; padding: 11px 16px 11px 18px; font-size: 14px; font-weight: 500; color: var(--green-900); border-radius: 8px; letter-spacing: -.01em; transition: background-color .15s, color .15s; }
.v2 .submenu-grid a::before { content: ''; position: absolute; left: 6px; top: 50%; width: 3px; height: 0; background: var(--green-700); border-radius: 2px; transform: translateY(-50%); transition: height .18s cubic-bezier(.4,0,.2,1); }
.v2 .submenu-grid a:hover { background: rgba(31,122,95,.06); color: var(--green-700); }
.v2 .submenu-grid a:hover::before { height: 16px; }

/* MEGA */
.v2 .submenu.mega { min-width: 580px; padding: 12px; }
.v2 .submenu.mega .submenu-grid { display: grid; grid-template-columns: 220px 1fr; gap: 0; }
.v2 .submenu.mega .submenu-col-left { border-right: 1px solid rgba(13,61,52,.06); padding-right: 12px; }
.v2 .submenu.mega .submenu-col-right { padding-left: 16px; }
.v2 .submenu.mega .submenu-col-left a { display: block; position: relative; padding: 11px 12px 11px 16px; font-size: 14px; font-weight: 600; color: var(--green-900); border-radius: 8px; transition: background-color .15s, color .15s; }
.v2 .submenu.mega .submenu-col-left a::before { content: ''; position: absolute; left: 4px; top: 50%; width: 3px; height: 0; background: var(--green-700); border-radius: 2px; transform: translateY(-50%); transition: height .18s; }
.v2 .submenu.mega .submenu-col-left a:hover { background: rgba(31,122,95,.06); color: var(--green-700); }
.v2 .submenu.mega .submenu-col-left a:hover::before { height: 16px; }
.v2 .submenu.mega .submenu-col-right ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px; }
.v2 .submenu.mega .submenu-col-right ul a { display: block; position: relative; padding: 9px 12px 9px 16px; font-size: 13.5px; font-weight: 500; color: var(--text-2); border-radius: 8px; transition: background-color .15s, color .15s; }
.v2 .submenu.mega .submenu-col-right ul a::before { content: ''; position: absolute; left: 6px; top: 50%; width: 3px; height: 0; background: var(--green-700); border-radius: 2px; transform: translateY(-50%); transition: height .18s; }
.v2 .submenu.mega .submenu-col-right ul a:hover { background: rgba(31,122,95,.06); color: var(--green-700); }
.v2 .submenu.mega .submenu-col-right ul a:hover::before { height: 14px; }

.v2 .header-cta { display: flex; gap: 10px; align-items: center; }
.v2 .btn-ghost { padding: 9px 16px; font-size: 13px; font-weight: 600; border: 1px solid var(--line); border-radius: var(--radius); transition: all .2s; }
.v2 .btn-ghost:hover { border-color: var(--green-700); color: var(--green-700); }
.v2 .btn-primary { padding: 9px 20px; font-size: 13px; font-weight: 600; background: var(--green-700); color: #fff; border-radius: var(--radius); transition: background .2s; }
.v2 .btn-primary:hover { background: var(--green-900); }
.v2 .menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.v2 .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }

/* ============= MAIN HERO (FULL-BLEED) ============= */
.v2 .hero { position: relative; height: 560px; overflow: hidden; background: #0d3d34; }
.v2 .hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80'); background-size: cover; background-position: center; }
.v2 .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,61,52,0.35) 0%, rgba(13,61,52,0.55) 60%, rgba(0,0,0,0.65) 100%); }
.v2 .hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; height: 100%; padding: 0 32px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.v2 .hero-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 2px; color: #fff; font-weight: 700; margin-bottom: 24px; opacity: .9; }
.v2 .hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: #fff; vertical-align: middle; margin-right: 12px; opacity: .7; }
.v2 .hero-title { font-size: 54px; line-height: 1.2; letter-spacing: -1.5px; font-weight: 800; margin-bottom: 24px; max-width: 880px; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.v2 .hero-title em { font-style: normal; color: #5cf28a; }
.v2 .hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.92); margin-bottom: 36px; max-width: 640px; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.v2 .hero-actions { display: flex; gap: 12px; }
.v2 .btn-lg { padding: 16px 32px; font-size: 15px; font-weight: 600; border-radius: 10px; transition: all .2s; }
.v2 .btn-lg.primary { background: #fff; color: var(--green-900); }
.v2 .btn-lg.primary:hover { background: var(--green-700); color: #fff; }
.v2 .btn-lg.outline { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.v2 .btn-lg.outline:hover { background: #fff; color: var(--green-900); border-color: #fff; }

/* ============= MAIN HERO SLIDER ============= */
.v2 .hero.hero-slider { position: relative; }
.v2 .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease; pointer-events: none; }
.v2 .hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 1; }
.v2 .hero-slider .hero-slide:first-child:last-child { position: relative; opacity: 1; visibility: visible; }
.v2 .hero-eyebrow-fixed {
  position: absolute;
  top: 50px; left: 0; right: 0;
  z-index: 4;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  opacity: .9;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.v2 .hero-eyebrow-fixed::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: #fff;
  vertical-align: middle;
  margin-right: 12px;
  opacity: .7;
}
.v2 .hero-dots { position: absolute; left: 0; right: 0; bottom: 28px; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.v2 .hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: all .2s; }
.v2 .hero-dot:hover { background: rgba(255,255,255,.75); }
.v2 .hero-dot.is-active { background: #fff; width: 28px; border-radius: 5px; }
.v2 .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(0,0,0,.25); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transition: background .2s; display: grid; place-items: center; }
.v2 .hero-arrow:hover { background: rgba(0,0,0,.5); }
.v2 .hero-prev { left: 24px; }
.v2 .hero-next { right: 24px; }
.v2 .hero-eyebrow { color: inherit; }
.v2 .hero-title { color: inherit; }
.v2 .hero-desc { color: inherit; opacity: .92; }
@media (max-width: 768px) {
  .v2 .hero-arrow { width: 36px; height: 36px; font-size: 22px; }
  .v2 .hero-prev { left: 8px; }
  .v2 .hero-next { right: 8px; }
  .v2 .hero-dots { bottom: 16px; }
}

/* ============= SUB HERO ============= */
.v2 .sub-hero { position: relative; height: 280px; overflow: hidden; background: #0d3d34; }
.v2 .sub-hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80'); background-size: cover; background-position: center; }
.v2 .sub-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,61,52,.45), rgba(13,61,52,.7)); }
.v2 .sub-hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; height: 100%; padding: 0 32px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.v2 .sub-hero-eyebrow { font-size: 12px; letter-spacing: 2px; font-weight: 700; opacity: .85; margin-bottom: 14px; }
.v2 .sub-hero-title { font-size: 42px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; }

/* ============= BREADCRUMB ============= */
.v2 .breadcrumb { border-bottom: 1px solid var(--line); background: #fff; }
.v2 .breadcrumb-inner { max-width: var(--max); margin: 0 auto; padding: 14px 32px; font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.v2 .breadcrumb-inner a { color: var(--text-3); transition: color .2s; }
.v2 .breadcrumb-inner a:hover { color: var(--green-700); }
.v2 .breadcrumb-inner .sep { color: #ccc; }
.v2 .breadcrumb-inner .now { color: var(--text); font-weight: 600; }

/* ============= SECTION COMMON (메인 블록) ============= */
.v2 section.block { padding: 96px 32px; }
.v2 section.block.alt { background: var(--bg-soft); }
.v2 .block-inner { max-width: var(--max); margin: 0 auto; }
.v2 .block-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.v2 .block-eyebrow { font-size: 12px; letter-spacing: 2px; color: var(--green-700); font-weight: 700; margin-bottom: 12px; }
.v2 .block-title { font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; }
.v2 .block-more { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.v2 .block-more:hover { color: var(--green-700); }

/* ABOUT */
.v2 .about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.v2 .about-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.v2 .stat-item { padding: 24px 0; border-top: 1px solid var(--text); }
.v2 .stat-num { font-size: 44px; font-weight: 800; letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.v2 .stat-label { font-size: 13px; color: var(--text-2); }
.v2 .about-desc { font-size: 17px; line-height: 1.8; color: var(--text-2); }
.v2 .about-desc strong { color: var(--text); font-weight: 700; }

/* NOTICE */
.v2 .notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v2 .notice-card { background: #fff; border: 1px solid var(--line); padding: 0; transition: border-color .25s, transform .25s, box-shadow .25s; overflow: hidden; border-radius: 12px; display: block; }
.v2 .notice-card:hover { border-color: var(--green-700); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.07); }
.v2 .notice-thumb { aspect-ratio: 16/9; background: var(--green-100); background-size: cover; background-position: center; }
.v2 .notice-body { padding: 28px 28px 32px; }
.v2 .notice-tag { display: inline-block; font-size: 11px; letter-spacing: 1.5px; color: var(--green-700); font-weight: 700; margin-bottom: 12px; }
.v2 .notice-title { font-size: 18px; font-weight: 700; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.v2 .notice-date { font-size: 12px; color: var(--text-3); }

/* ACTIVITY */
.v2 .activity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.v2 .activity-card { transition: transform .25s; display: block; }
.v2 .activity-card:hover { transform: translateY(-4px); }
.v2 .activity-thumb { aspect-ratio: 4/3; background: #d8d8d8; background-size: cover; background-position: center; margin-bottom: 16px; overflow: hidden; border-radius: 10px; }
.v2 .activity-cat { font-size: 11px; color: var(--green-700); font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.v2 .activity-title { font-size: 15px; font-weight: 600; line-height: 1.5; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* PARTNERS */
.v2 .partners { padding: 64px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v2 .partners-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.v2 .partners-label { font-size: 12px; letter-spacing: 2px; color: var(--text-3); font-weight: 700; flex-shrink: 0; }
.v2 .partners-list { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.v2 .partners-list a { font-size: 14px; color: var(--text-2); transition: all .2s; font-weight: 500; padding: 10px 18px; border: 1px solid var(--line); border-radius: 8px; }
.v2 .partners-list a:hover { color: var(--green-700); border-color: var(--green-700); background: var(--green-100); }

/* ============= SUB PAGE LAYOUT ============= */
.v2 .page-wrap { max-width: var(--max); margin: 0 auto; padding: 64px 32px 96px; display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.v2 .side-nav { position: sticky; top: 100px; }
.v2 .side-nav-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8a9994; margin-bottom: 6px; }
.v2 .side-nav-label .ko { display: block; font-size: .68rem; font-weight: 600; letter-spacing: 0; color: #b3bfba; text-transform: none; margin-top: 2px; }
.v2 .side-nav h2 { font-size: 22px; font-weight: 800; color: var(--green-900); letter-spacing: -.5px; line-height: 1.2; margin: 4px 0 24px; }
.v2 .side-nav ul { border-top: 1px solid var(--line); }
.v2 .side-nav ul li { border-bottom: 1px solid var(--line); }
.v2 .side-nav ul a { display: block; position: relative; padding: 13px 16px 13px 18px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: background-color .15s, color .15s; }
.v2 .side-nav ul a::before { content: ''; position: absolute; left: 4px; top: 50%; width: 3px; height: 0; background: var(--green-700); border-radius: 2px; transform: translateY(-50%); transition: height .18s; }
.v2 .side-nav ul a:hover { background: rgba(31,122,95,.06); color: var(--green-700); }
.v2 .side-nav ul a:hover::before { height: 18px; }
.v2 .side-nav ul a.active { color: var(--green-700); font-weight: 700; background: rgba(31,122,95,.04); }
.v2 .side-nav ul a.active::before { height: 22px; }

/* CONTENT */
.v2 .content { min-width: 0; }
.v2 .content-head { padding-bottom: 28px; border-bottom: 2px solid var(--green-900); margin-bottom: 48px; }
.v2 .content-eyebrow { font-size: 12px; letter-spacing: 2px; color: var(--green-700); font-weight: 700; margin-bottom: 12px; }
.v2 .content-title { font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; }
.v2 .content-lead { margin-top: 14px; font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 720px; }
.v2 .content-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.v2 .content-body p { margin-bottom: 22px; }
.v2 .content-body strong { color: var(--green-900); font-weight: 700; }
.v2 .content-body h3 { font-size: 22px; font-weight: 800; color: var(--green-900); margin: 56px 0 20px; line-height: 1.3; letter-spacing: -.5px; }
.v2 .content-body h3::before { content: ''; display: inline-block; width: 22px; height: 3px; background: var(--green-700); vertical-align: middle; margin-right: 12px; border-radius: 2px; }
.v2 .content-body img { max-width: 100%; border-radius: 12px; margin: 20px 0; }
.v2 .content-body table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.v2 .content-body table th, .v2 .content-body table td { padding: 10px 14px; border: 1px solid var(--line); font-size: 14px; }
.v2 .content-body table th { background: var(--bg-soft); font-weight: 700; color: var(--green-900); }

/* ============= LIST TABLE (board) ============= */
.v2 .search-bar { display: flex; gap: 12px; margin-bottom: 28px; align-items: center; }
.v2 .search-select { padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 500; background: #fff; color: var(--text); cursor: pointer; min-width: 120px; font-family: inherit; }
.v2 .search-input { flex: 1; display: flex; border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; transition: border-color .2s; }
.v2 .search-input:focus-within { border-color: var(--green-700); }
.v2 .search-input input { flex: 1; padding: 11px 16px; border: 0; outline: 0; font-size: 14px; font-family: inherit; background: transparent; color: var(--text); }
.v2 .search-input button { padding: 0 18px; background: var(--green-700); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.v2 .search-input button:hover { background: var(--green-900); }
.v2 .search-input button svg { width: 16px; height: 16px; fill: currentColor; }

.v2 .list-table { width: 100%; border-top: 2px solid var(--green-900); border-bottom: 1px solid var(--line); border-collapse: collapse; }
.v2 .list-table thead { background: var(--bg-soft); }
.v2 .list-table th { padding: 14px 12px; font-size: 13px; font-weight: 700; color: var(--green-900); letter-spacing: -.3px; text-align: center; border-bottom: 1px solid var(--line); }
.v2 .list-table th:nth-child(2) { text-align: left; }
.v2 .list-table td { padding: 18px 12px; font-size: 14px; border-bottom: 1px solid var(--line); text-align: center; color: var(--text-2); }
.v2 .list-table td:nth-child(2) { text-align: left; }
.v2 .list-table tbody tr { transition: background-color .15s; }
.v2 .list-table tbody tr:hover { background: rgba(31,122,95,.03); }
.v2 .list-table tbody tr:hover td:nth-child(2) a { color: var(--green-700); }
.v2 .list-table tbody tr.notice { background: var(--green-100); }
.v2 .list-table tbody tr.notice td { border-bottom-color: rgba(31,122,95,.12); }
.v2 .list-table .col-no { width: 88px; color: var(--text-3); font-weight: 500; white-space: nowrap; }
.v2 .list-table .col-author { width: 140px; }
.v2 .list-table .col-date { width: 120px; color: var(--text-3); }
.v2 .list-table .col-views { width: 90px; color: var(--text-3); }
.v2 .list-table .tag { display: inline-block; padding: 3px 10px; font-size: 11px; font-weight: 700; letter-spacing: .5px; border-radius: 4px; margin-right: 8px; background: var(--green-100); color: var(--green-700); vertical-align: middle; white-space: nowrap; line-height: 1.4; }
.v2 .list-table .tag.notice { background: var(--green-700); color: #fff; }
.v2 .list-table .post-title { font-size: 14.5px; font-weight: 600; color: var(--text); transition: color .15s; display: inline-block; vertical-align: middle; }

.v2 .pager { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.v2 .pager a, .v2 .pager strong { width: 38px; height: 38px; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: var(--text-2); border-radius: 8px; transition: all .15s; }
.v2 .pager a:hover { background: var(--green-100); color: var(--green-700); }
.v2 .pager strong, .v2 .pager .active { background: var(--green-900); color: #fff; }

.v2 .list-actions { display: flex; justify-content: flex-end; margin-top: 16px; gap: 8px; }
.v2 .btn-write { padding: 10px 18px; font-size: 13px; font-weight: 600; background: var(--green-700); color: #fff; border-radius: 10px; display: inline-flex; align-items: center; gap: 6px; transition: background .2s; border: 0; cursor: pointer; font-family: inherit; }
.v2 .btn-write:hover { background: var(--green-900); }

/* GALLERY */
.v2 .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.v2 .g-card { transition: transform .25s; display: block; }
.v2 .g-card:hover { transform: translateY(-4px); }
.v2 .g-thumb { aspect-ratio: 4/3; background-size: cover; background-position: center; margin-bottom: 16px; overflow: hidden; border-radius: 12px; background-color: var(--bg-soft); }
.v2 .g-cat { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green-700); letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase; }
.v2 .g-title { font-size: 16px; font-weight: 700; line-height: 1.5; color: var(--text); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; }
.v2 .g-card:hover .g-title { color: var(--green-700); }
.v2 .g-meta { font-size: 12px; color: var(--text-3); display: flex; gap: 12px; align-items: center; }
.v2 .g-meta .dot { width: 3px; height: 3px; background: var(--text-3); border-radius: 50%; }

/* VIEW (게시물 상세) */
.v2 .view-head { padding-bottom: 32px; border-bottom: 2px solid var(--green-900); margin-bottom: 48px; }
.v2 .view-tag { display: inline-block; padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; background: var(--green-100); color: var(--green-700); border-radius: 6px; margin-bottom: 18px; }
.v2 .view-title { font-size: 32px; font-weight: 800; letter-spacing: -.8px; line-height: 1.35; color: var(--green-900); }
.v2 .view-meta { display: flex; gap: 24px; margin-top: 20px; font-size: 13px; color: var(--text-3); align-items: center; flex-wrap: wrap; }
.v2 .view-meta .dot { width: 3px; height: 3px; background: var(--text-3); border-radius: 50%; }
.v2 .view-meta strong { color: var(--text-2); font-weight: 600; }
.v2 .view-body { font-size: 16px; line-height: 1.85; color: var(--text); padding-bottom: 48px; border-bottom: 1px solid var(--line); margin-bottom: 32px; min-height: 200px; }
.v2 .view-body p { margin: 0 0 22px; }
.v2 .view-body img { max-width: 100%; border-radius: 12px; margin: 16px 0; }

.v2 .view-attach { padding: 20px 24px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 32px; }
.v2 .view-attach h4 { font-size: 12px; font-weight: 700; color: var(--text-3); letter-spacing: 1px; margin: 0 0 12px; text-transform: uppercase; }
.v2 .view-attach ul li { padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.v2 .view-attach ul li:last-child { border-bottom: 0; }
.v2 .view-attach ul li svg { width: 16px; height: 16px; fill: var(--green-700); flex-shrink: 0; }
.v2 .view-attach ul li .name { flex: 1; color: var(--text); font-weight: 500; }
.v2 .view-attach ul li .download { color: var(--green-700); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }

.v2 .view-actions { display: flex; justify-content: center; gap: 10px; padding-top: 32px; }
.v2 .view-actions a, .v2 .view-actions button { padding: 12px 28px; font-size: 14px; font-weight: 600; border-radius: 10px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 0; font-family: inherit; }
.v2 .view-actions .list-btn { background: var(--green-900); color: #fff; }
.v2 .view-actions .list-btn:hover { background: var(--green-700); }
.v2 .view-actions .edit-btn { background: var(--bg-soft); color: var(--text); border: 1px solid var(--line); }
.v2 .view-actions .edit-btn:hover { border-color: var(--green-700); color: var(--green-700); }

/* WRITE FORM */
.v2 .write-form { display: flex; flex-direction: column; gap: 18px; }
.v2 .write-row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.v2 .write-row label.lbl { font-size: 13px; font-weight: 700; color: var(--green-900); padding-top: 12px; }
.v2 .write-row .req { color: #e25555; }
.v2 .write-input { width: 100%; padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; }
.v2 .write-input:focus { outline: 0; border-color: var(--green-700); }
.v2 textarea.write-input { min-height: 200px; resize: vertical; line-height: 1.7; }

/* ============= FOOTER ============= */
.v2 footer.site { background: #0d0d0d; color: rgba(255,255,255,.7); padding: 80px 32px 40px; }
.v2 .footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.v2 .footer-brand h3 { color: #fff; font-size: 18px; margin: 0 0 16px; }
.v2 .footer-brand p { font-size: 13px; line-height: 1.8; margin: 0; }
.v2 .footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 18px; letter-spacing: .5px; }
.v2 .footer-col ul li { margin-bottom: 10px; }
.v2 .footer-col a { font-size: 13px; transition: color .2s; }
.v2 .footer-col a:hover { color: #fff; }
.v2 .footer-sns { display: flex; gap: 10px; margin-top: 4px; }
.v2 .footer-sns a { width: 38px; height: 38px; display: grid; place-items: center; background: rgba(255,255,255,.08); border-radius: 10px; color: rgba(255,255,255,.75); transition: all .25s; }
.v2 .footer-sns a:hover { background: var(--green-700); color: #fff; transform: translateY(-2px) scale(1.05); }
.v2 .footer-sns a svg { width: 18px; height: 18px; fill: currentColor; }
.v2 .footer-bottom { max-width: var(--max); margin: 60px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .v2 .hero { height: 480px; }
  .v2 .hero-title { font-size: 42px; }
  .v2 .activity-grid { grid-template-columns: repeat(3,1fr); }
  .v2 .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .v2 .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .v2 .sub-hero { height: 220px; }
  .v2 .sub-hero-title { font-size: 32px; }
  .v2 .page-wrap { grid-template-columns: 200px 1fr; gap: 40px; padding: 48px 24px 64px; }
}
@media (max-width: 768px) {
  .v2 .header-cta { display: none; }
  .v2 .menu-toggle { display: block; }
  .v2 .header-inner { height: 64px; padding: 0 20px; }
  .v2 .logo img { height: 38px; }

  .v2 nav.gnb { position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: #fff; padding: 8px 0 24px; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; z-index: 200; display: block; }
  .v2 nav.gnb.is-open { transform: translateX(0); }
  .v2 nav.gnb > ul { flex-direction: column; gap: 0; }
  .v2 nav.gnb > ul > li { border-bottom: 1px solid var(--line); }
  .v2 nav.gnb > ul > li > a { padding: 16px 20px; font-size: 15px; }
  .v2 nav.gnb > ul > li > a::after { display: none; }
  .v2 nav.gnb > ul > li.has-sub > a::before { content: '+'; float: right; font-weight: 400; font-size: 20px; line-height: 1; color: var(--text-3); transition: transform .25s; }
  .v2 nav.gnb > ul > li.has-sub.is-open > a::before { content: '-'; }

  .v2 .submenu { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none !important; min-width: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease; border: 0; border-radius: 0; box-shadow: none; background: var(--bg-soft); padding: 0; left: auto; right: auto; top: auto; }
  .v2 .submenu::before { display: none; }
  .v2 nav.gnb > ul > li.has-sub.is-open .submenu { max-height: 1500px; }
  .v2 .submenu-inner { padding: 8px 20px 16px; }
  .v2 .submenu-grid a { padding: 12px 12px 12px 16px; font-size: 14px; border-radius: 6px; }
  .v2 .submenu.mega { min-width: 0; padding: 0; }
  .v2 .submenu.mega .submenu-grid { display: block; }
  .v2 .submenu.mega .submenu-col-left, .v2 .submenu.mega .submenu-col-right { padding: 0; border: 0; }
  .v2 .submenu.mega .submenu-col-right ul { display: flex; flex-direction: column; gap: 0; }

  .v2 .hero { height: 400px; }
  .v2 .hero-inner { padding: 0 20px; }
  .v2 .hero-title { font-size: 28px; }
  .v2 .hero-desc { font-size: 14px; }
  .v2 section.block { padding: 56px 20px; }
  .v2 .block-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .v2 .block-title { font-size: 28px; }
  .v2 .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .v2 .notice-grid { grid-template-columns: 1fr; }
  .v2 .activity-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .v2 .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .v2 .partners { padding: 40px 20px; }
  .v2 .partners-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .v2 .partners-list { gap: 28px; }

  .v2 .sub-hero { height: 180px; }
  .v2 .sub-hero-inner { padding: 0 20px; }
  .v2 .sub-hero-title { font-size: 24px; }
  .v2 .breadcrumb-inner { padding: 12px 20px; font-size: 11px; }

  .v2 .page-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px 56px; }
  .v2 .side-nav { position: static; }
  .v2 .content-title { font-size: 28px; }
  .v2 .content-body { font-size: 15px; }
  .v2 .view-title { font-size: 22px; }
  .v2 .list-table .col-no, .v2 .list-table .col-views, .v2 .list-table .col-author { display: none; }
  .v2 .list-table th:nth-child(1), .v2 .list-table td:nth-child(1), .v2 .list-table th:nth-child(3), .v2 .list-table td:nth-child(3), .v2 .list-table th:nth-child(5), .v2 .list-table td:nth-child(5) { display: none; }
  .v2 .write-row { grid-template-columns: 1fr; gap: 8px; }
  .v2 .write-row label.lbl { padding-top: 0; }

  .v2 .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .v2 .footer-bottom { flex-direction: column; gap: 8px; padding: 20px; }
}
