@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* Reset */
* {margin: 0; padding: 0; line-height: 1.4em; -webkit-overflow-scrolling: touch; box-sizing: border-box; -webkit-hyphens: auto; hyphens: auto; letter-spacing: -0.05em; vertical-align: middle; font-family: inherit; color: inherit; font-weight: inherit;}
html, body {height: 100%; font-size: 12px; font-family: 'Pretendard', sans-serif;}
body {color: #333; -webkit-text-size-adjust: none; word-break: keep-all; word-wrap: break-word;}
legend, caption, figcaption {display: none;}
ul,ol {list-style-image: none; list-style-position: outside; list-style-type: none; border: 0px;}
img,fieldset, frameset, frameborder, frame {border: 0;}
a, img, span, b, input, select, em, textarea, label, strong {vertical-align: middle; outline-style: none; color: inherit; font-family: inherit;}
a {color: inherit; text-decoration: none; cursor: pointer; color: inherit; font-family: inherit;}
a:hover {text-decoration: none;}
i, em {font-style: normal;}
textarea {resize: none;}
button {border: none; background: none; outline: none; cursor: pointer;}
input[type="text"],input[type="password"], textarea {-webkit-appearance: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-radius: 0;}
select {border-radius: 0; background: #fff;}
label {cursor: pointer;}

/* Responsive Font */
@media screen and (max-width: 1200px) {
  html {font-size: 16px;}
}

@media screen and (max-width: 768px) {
  html {font-size: 15px;}
}

@media screen and (max-width: 540px) {
  html {font-size: 14px;}
}

@media screen and (max-width: 420px) {
  html {font-size: 13px;}
}

img {max-width: 100%;}

@media all and (min-width: 1201px) {
  .pc-hidden {display: none !important;}
}

@media all and (max-width: 1200px) {
  .mobile-hidden {display: none !important;}
}

/* Layout */
.wrap,
#wrap {width: 100%; margin: 0 auto;}
.wrapper {width: 1200px; margin: 0 auto;}

/* Header (해돋는마을) */
.header {position: fixed; top: 0; left: 0; width: 100%; z-index: 20; background: #fff;}
.header-util-bar {background: #a9180d; color: #fff; font-size: 13px; line-height: 1;}
.header-util-bar .wrapper {display: flex; justify-content: flex-end; align-items: center; height: 32px;}
.util-links {display: flex; gap: 0; list-style: none; margin: 0; padding: 0;}
.util-links li {position: relative;}
.util-links li + li {margin-left: 16px; padding-left: 16px;}
.util-links li + li:before {content: '|'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); font-size: 11px;}
.util-links li a {color: #fff; font-size: 13px; font-weight: 400; transition: opacity 0.2s;}
.util-links li a:hover {opacity: 0.8;}
.header-main {border-bottom: 5px solid #a9180d;}
.header-main .wrapper {position: relative; display: flex; align-items: center; height: 70px;}
.header .logo {line-height: 1; flex-shrink: 0;}
.header .logo a {display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: bold; vertical-align: top; text-decoration: none;}
.header .logo a * {vertical-align: baseline;}
.logo-img {height: 46px; width: auto; display: block;}
.header-nav {position: absolute; left: 50%; transform: translateX(-50%);}
.header-right {margin-left: auto; flex-shrink: 0; display: flex; align-items: center; gap: 8px;}
.profile {display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; border-radius: 50%; padding: 0; transition: opacity 0.2s;}
.profile:hover {opacity: 0.7;}
.profile svg {border-radius: 50%;}
.header-nav ul {display: flex; gap: 36px; list-style: none; margin: 0; padding: 0;}
.header-nav ul li a {font-size: 16px; font-weight: 600; color: #242b3f; text-decoration: none; position: relative; transition: color 0.2s; padding: 4px 0;}
.header-nav ul li a:hover {color: #a9180d;}
.header-nav ul li a:after {content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #a9180d; transition: width 0.3s;}
.header-nav ul li a:hover:after {width: 100%;}
.header-nav ul li.on a {color: #a9180d;}
.header-nav ul li.on a:after {width: 100%;}
.hamburger {display: flex; flex-direction: row; align-items: center; gap: 8px; height: 40px; padding: 8px; margin-left: auto; margin-right: -8px; background: none; border: none; cursor: pointer; z-index: 25;}
.hamburger-label {display: none; font-size: 13px; font-weight: 600; color: #242b3f; white-space: nowrap; line-height: 1;}
.hamburger-lines {display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 22px;}
.hamburger-lines span {display: block; width: 22px; height: 2px; background: #242b3f; border-radius: 2px; transition: all 0.3s;}
@media all and (min-width: 769px) {
  .hamburger-label {display: inline;}
}
.hamburger:hover .hamburger-lines span {background: #a9180d;}
.side-menu {position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; pointer-events: none; visibility: hidden;}
.side-menu.on {pointer-events: auto; visibility: visible;}
.side-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0); transition: background 0.3s;}
.side-menu.on .side-overlay {background: rgba(0,0,0,0.5);}
.side-panel {position: fixed; top: 0; right: 0; width: 300px; height: 100%; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,0.15); padding: 30px 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column;}
.side-menu.on .side-panel {transform: translateX(0);}
.side-close {position: absolute; top: 16px; right: 0; width: 36px; height: 36px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s;}
.side-close:hover {background: #f5f5f5; color: #242b3f;}
.side-title {display: block; font-size: 20px; font-weight: 700; color: #333; margin-top: 0; padding-bottom: 20px; border-bottom: 2px solid #a9180d;}
.side-nav {margin-top: 16px;}
.side-nav ul {list-style: none; margin: 0; padding: 0;}
.side-nav ul li {border-bottom: 1px solid #f0f0f0;}
.side-nav ul li a {display: block; padding: 16px 0; font-size: 17px; font-weight: 500; color: #333; text-decoration: none; transition: color 0.2s;}
.side-nav ul li a:hover {color: #a9180d;}
.side-nav ul li.has-sub {position: relative;}
.side-nav ul li a.side-nav-toggle {display: flex; align-items: center; justify-content: space-between; padding-right: 0;}
.side-toggle-icon {font-size: 13px; color: #999; flex-shrink: 0; transition: transform 0.3s;}
.has-sub.on > a.side-nav-toggle {color: #a9180d; font-weight: 700;}
.side-sub {list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease;}
.has-sub.on > .side-sub {max-height: 500px;}
.side-sub li {border-bottom: none;}
.side-nav .side-sub li a {padding: 10px 0 10px 24px; font-size: 15px; font-weight: 400; color: #666; position: relative;}
.side-nav .side-sub li a:before {content: '-'; position: absolute; left: 10px; color: #999;}
.side-nav .side-sub li a:hover {color: #a9180d;}
.side-nav .side-sub li a.side-on {color: #a9180d; font-weight: 600;}
.side-copyright {margin-top: auto; padding-top: 30px; font-size: 12px; color: #bbb; line-height: 1.6;}

/* PC 풀스크린 메뉴 */
.full-menu {display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(255,255,255,0.97); overflow-y: auto;}
.full-menu.on {display: flex; align-items: center; justify-content: center; animation: fullMenuIn 0.3s ease-out;}
@keyframes fullMenuIn {from {opacity: 0;} to {opacity: 1;}}
  .full-menu-inner {width: 100%; max-width: 1200px; padding: 60px 30px;}
  .full-menu-close {position: fixed; top: 24px; right: 32px; background: none; border: none; font-size: 36px; color: #333; cursor: pointer; transition: color 0.2s; z-index: 1;}
  .full-menu-close:hover {color: #a9180d;}
  .full-menu-grid {display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px;}
  .full-menu-col ul {list-style: none; margin: 0; padding: 0;}
  .full-menu-title {font-size: 18px; font-weight: 700; color: #242b3f; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 2px solid #a9180d;}
  .full-menu-col ul li a {display: block; padding: 8px 0; font-size: 15px; color: #555; text-decoration: none; transition: color 0.2s;}
  .full-menu-col ul li a:hover {color: #a9180d; padding-left: 4px;}
  .full-menu-footer {margin-top: 48px; padding-top: 24px; border-top: 1px solid #e0e0e0; text-align: center; font-size: 14px; color: #888;}

@media all and (max-width: 768px) {
    .full-menu {display: none !important;}
  }

@media all and (max-width: 1200px) {
    .header-util-bar {display: none;}
    .header-main .wrapper {height: 56px;}
    .wrapper {width: 100%; padding: 0 15px;}
    #wrap,
    .wrap {padding-top: 56px;}
    .logo-img {height: 38px;}
  }

@media all and (min-width: 1201px) {
    .wrap {padding-top: 102px;}
  }

@media screen and (max-width: 768px) {
    .header-nav {display: none;}
    .header-main .wrapper {height: 50px;}
    .side-panel {width: 260px; padding: 24px 20px;}
    .side-title {font-size: 18px;}
    .side-nav ul li a {font-size: 16px; padding: 14px 0;}
    #wrap,
    .wrap {padding-top: 50px;}
  }

  /* Content Area */
  #content {overflow: hidden; padding-bottom: 70px;}

@media all and (max-width: 1200px) {
    #content {padding-bottom: 50px;}
    #content .sub-content {box-sizing: border-box;}
  }

  .container {width: 1200px; max-width: 100%; margin: 0 auto; padding: 45px 0 30px 0; display: flex; flex-wrap: wrap;}
  .container #content {flex: 1;}

@media all and (max-width: 1200px) {
    .container {padding: 1.5rem 0 1.8rem;}
  }
@media all and (max-width: 768px) {
    .container {display: block;}
    .container #content {padding-left: 16px; padding-right: 16px;}
  }

  /* LNB (좌측 네비게이션) */
  .lnb {width: 220px; flex-shrink: 0; margin-right: 40px;}
  .lnb-title {font-size: 22px; font-weight: 800; color: #fff; background: #555; padding: 20px 24px; line-height: 1.3; letter-spacing: -0.02em;}
  .lnb-menu {list-style: none; margin: 0; padding: 0; border: 1px solid #e0e0e0; border-top: none;}
  .lnb-menu li {}
  .lnb-menu li a {display: block; padding: 14px 24px; font-size: 15px; font-weight: 500; color: #555; border-bottom: 1px solid #f0f0f0; transition: all 0.2s; text-decoration: none; position: relative;}
  .lnb-menu li:last-child a {border-bottom: none;}
  .lnb-menu li a:hover {color: #a9180d; background: #fef5f4; padding-left: 28px;}
  .lnb-menu li.on a {color: #009241; font-weight: 700; background: #e6f5ed; padding-left: 28px;}
  .lnb-menu li.on a:before {content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: #555;}

  /* LNB 하단 배너 */
  .lnb-banners {margin-top: 16px; display: flex; flex-direction: column; gap: 10px;}
  .lnb-banner {display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #f8f9fa; border: 1px solid #e8e8e8; border-radius: 8px; text-decoration: none; transition: all 0.2s;}
  .lnb-banner:hover {background: #eef5ed; border-color: #009241; box-shadow: 0 2px 8px rgba(0,146,65,0.08);}
  .lnb-banner-icon {display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #009241; border-radius: 50%; color: #fff; font-size: 15px; flex-shrink: 0;}
  .lnb-banner-text {flex: 1; min-width: 0;}
  .lnb-banner-text strong {display: block; font-size: 14px; font-weight: 700; color: #333; line-height: 1.3;}
  .lnb-banner-text em {display: block; font-size: 12px; font-style: normal; color: #888; margin-top: 2px;}
  .lnb-banner-arrow {font-size: 11px; color: #bbb; flex-shrink: 0; transition: color 0.2s;}
  .lnb-banner:hover .lnb-banner-arrow {color: #009241;}

@media all and (max-width: 768px) {
    .lnb-banners {display: none;}
  }

  .lnb ~ #content {flex: 1; min-width: 0;}
  .lnb ~ #content .sub-content .content-title {margin-top: 0;}
  .lnb ~ #content .sub-content.wrapper {width: auto;}
  .lnb ~ #content .content-title {margin-top: 0;}

@media all and (max-width: 1200px) {
    .lnb {width: 180px; margin-right: 24px;}
    .lnb-title {font-size: 18px; padding: 16px 18px;}
    .lnb-menu li a {padding: 12px 18px; font-size: 14px;}
    .lnb-menu li a:hover,
    .lnb-menu li.on a {padding-left: 22px;}
  }

@media all and (max-width: 768px) {
    .lnb {width: 100%; margin-right: 0; margin-bottom: 24px; position: relative; margin-top: -1.5rem;}
    .lnb-title {padding: 14px 16px; font-size: 17px; text-align: center;}
    .lnb-menu {display: flex; flex-wrap: nowrap; border: 1px solid #e0e0e0; border-top: none; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;}
    .lnb-menu::-webkit-scrollbar {display: none;}
    .lnb-menu:not(.is-overflow) li {flex: 1; min-width: 0;}
    .lnb-menu.is-overflow {padding-right: 28px;}
    .lnb-menu.is-overflow li {flex-shrink: 0;}
    .lnb-menu li a {padding: 12px 16px; font-size: 13px; text-align: center; border-bottom: none; border-right: 1px solid #f0f0f0; white-space: nowrap;}
    .lnb-menu li:last-child a {border-right: none;}
    .lnb-menu li a:hover,
    .lnb-menu li.on a {padding-left: 16px;}
    .lnb-menu li.on a:before {width: 100%; height: 3px; top: auto; bottom: 0; left: 0;}
    .lnb.has-overflow:after {content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 0; bottom: 0; width: 28px; height: calc(100% - 52px); display: flex; align-items: center; justify-content: center; font-size: 11px; color: #999; background: linear-gradient(90deg, transparent 0%, #fff 40%); pointer-events: none;}
  }

  .content-title {position: relative; margin-bottom: 50px; margin-top: 95px;}
  .content-title h2 {display: inline-block; line-height: 36px; font-size: 25px; border-bottom: 2px solid #242b3f; padding-bottom: 20px;}
  .content-title .breadcrumb {position: absolute; top: 15px; right: 0; line-height: 36px;}
  .content-title .breadcrumb ul {overflow: hidden;}
  .content-title .breadcrumb ul li {float: left; font-size: 14px; color: #999;}
  .content-title .breadcrumb ul li img {vertical-align: middle;}
  .content-title .breadcrumb ul li + li:before {content: '>'; margin: 0 8px; color: #ccc; font-size: 12px;}
  .content-title .breadcrumb ul li a {color: #999; text-decoration: none;}
  .content-title .breadcrumb ul li a:hover {color: #333;}
  .content-title .breadcrumb ul li:last-child {color: #333; font-weight: 600;}
  .content-title h2.gal-title {display: block; text-align: center; border-bottom: none; padding-bottom: 0;}
  .content-title h2.gal-title .gal-name {display: inline-block; padding-bottom: 10px; border-bottom: 2px solid #242b3f;}
  .content-title h2.gal-title .gal-rep {display: block; margin-top: 10px;}
  .content-title h2 .gal-rep {font-size: 16px; font-weight: 400; color: #888;}

@media all and (max-width: 1200px) {
    .content-title {display: block; margin-bottom: 35px; margin-top: 30px; padding-top: 10px;}
    .content-title h2 {line-height: 27px; font-size: 1.6rem; border-bottom: 2px solid #242b3f; padding-bottom: 15px;}
    .content-title .breadcrumb {display: none;}
  }

  .content-detail h2 {font-size: 25px; line-height: 120%; margin-bottom: 20px; color: #242b3f;}
  .content-detail .theme-2 {font-size: 18px; line-height: 1.6em;}
  .lnb ~ #content .content-title h2 {margin-top: 0;}
  .header + .sub-visual-wrap {min-height: 35px; margin-top: 45px;}
  .container > .sub-visual-wrap {margin-bottom: 40px;}
  .sub-visual-wrap {position: relative; z-index: 0; display: flex; justify-content: center; align-items: center; width: calc(100% + 40px); margin-left: -20px; min-height: 200px; text-align: left; background: #a9180d url("/public/storage/2_pattern_4.jpg") no-repeat 50% 50%; background-size: cover; flex-direction: column; color: #fff;}
  .sub-visual-wrap.small {display: none;}
  .sub-visual-wrap h2 {font-size: 47px;}
  .sub-visual-wrap.type2 {width: 1200px; margin-left: auto; margin-right: auto;}

@media all and (max-width: 1200px) {
    .sub-visual-wrap {display: none;}
    .sub-visual-wrap {min-height: 10rem;}
    .sub-visual-wrap h2 {font-size: 2.5rem;}
    .header + .sub-visual-wrap {height: 0; margin-top: 0;}
  }

  /* 메인 - 히어로 섹션 */
  .main-hero {position: relative; background: url('/public/storage/hero-main.jpg') center/cover no-repeat; color: #fff; text-align: center; overflow: hidden;}
  .main-hero:before {content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(169,24,13,0.5) 0%, rgba(0,146,65,0.3) 50%, rgba(169,24,13,0.45) 100%); z-index: 0;}
  .main-hero-inner {position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 30px 70px;}
  .main-hero-sub {font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 12px; letter-spacing: 0.05em; text-shadow: 0 1px 6px rgba(0,0,0,0.5); opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s ease-out 0.2s forwards;}
  .main-hero-title {font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3); opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s ease-out 0.5s forwards;}
  .main-hero-desc {font-size: 17px; font-weight: 400; color: #fff; line-height: 1.7; margin-bottom: 32px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s ease-out 0.8s forwards;}
  .main-hero-btns {display: flex; gap: 12px; justify-content: center; opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s ease-out 1.1s forwards;}
@keyframes heroFadeUp {to {opacity: 1; transform: translateY(0);}}
@keyframes heroZoom {from {transform: scale(1);} to {transform: scale(1.08);}}
      .main-hero::after {content: ''; position: absolute; inset: 0; background: inherit; background-size: cover; background-position: center; z-index: -1; animation: heroZoom 12s ease-out forwards;}
      .btn-hero {display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 32px; border-radius: 24px; font-size: 16px; font-weight: 600; transition: all 0.3s; cursor: pointer; text-decoration: none;}
      .btn-hero-primary {background: #fff; color: #a9180d;}
      .btn-hero-primary:hover {background: #fef5f4; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15);}
      .btn-hero-outline {background: #fff; color: #a9180d;}
      .btn-hero-outline:hover {background: #fef5f4; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15);}

@media screen and (max-width: 768px) {
        .main-hero-inner {padding: 30px 20px 0;}
        .main-hero-title {font-size: 30px;}
        .main-hero-sub {font-size: 14px;}
        .main-hero-desc {font-size: 15px;}
        .main-hero-desc br {display: none;}
        .btn-hero {height: 42px; padding: 0 24px; font-size: 14px;}
        .main-hero-btns {display: none;}
      }

@media screen and (max-width: 480px) {
        .main-hero {display: flex; align-items: center; min-height: 280px; background-size: 120% auto; background-position: center;}
        .main-hero-inner {padding: 30px 16px 0; display: flex; flex-direction: column; justify-content: center; width: 100%;}
        .main-hero-title {font-size: 26px;}
        .main-hero-btns {display: none;}
      }

      /* 메인 - 빠른 링크 */
      .main-quick {background: #f8f9fa; padding: 0; border-bottom: 1px solid #e8e8e8;}
      .quick-list {display: flex; list-style: none; margin: 0; padding: 0;}
      .quick-list li {flex: 1; border-right: 1px solid #e8e8e8;}
      .quick-list li:last-child {border-right: none;}
      .quick-list li a {display: flex; align-items: center; gap: 16px; padding: 24px 28px; transition: background 0.2s; text-decoration: none;}
      .quick-list li a:hover {background: #fce8e7;}
      .quick-icon {display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: #009241; border-radius: 50%; color: #fff; font-size: 22px; flex-shrink: 0;}
      .quick-icon i {color: #fff;}
      .quick-title {display: block; font-size: 17px; font-weight: 700; color: #333; margin-bottom: 4px;}
      .quick-desc {display: block; font-size: 13px; color: #888; line-height: 1.4;}

@media screen and (max-width: 1024px) {
        .quick-list li a {padding: 18px 16px; gap: 12px;}
        .quick-icon {width: 44px; height: 44px; font-size: 18px;}
        .quick-title {font-size: 15px;}
        .quick-desc {font-size: 12px;}
      }

@media screen and (max-width: 768px) {
        .quick-list li a {padding: 16px 12px; gap: 10px;}
        .quick-icon {width: 38px; height: 38px; font-size: 16px;}
        .quick-title {font-size: 14px;}
        .quick-desc {display: none;}
      }

@media screen and (max-width: 420px) {
        .quick-list {flex-direction: column;}
        .quick-list li {border-right: none; border-bottom: 1px solid #e8e8e8;}
        .quick-list li:last-child {border-bottom: none;}
      }

      /* 메인 - 콘텐츠 그리드 (공지사항 + 연락처) */
      .main-content-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;}
      .main-content-grid > * {min-width: 0;}
      .section-header {display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #242b3f;}
      .section-header h3 {font-size: 20px; font-weight: 700; color: #242b3f;}
      .section-header h3 i {margin-right: 8px; color: #009241; font-size: 18px;}
      .more-link {font-size: 13px; color: #999; font-weight: 500; transition: color 0.2s; text-decoration: none;}
      .more-link i {margin-left: 4px; font-size: 11px;}
      .more-link:hover {color: #a9180d;}
      .notice-list {list-style: none; margin: 0; padding: 0;}
      .notice-list li {border-bottom: 1px solid #f0f0f0;}
      .notice-list li a {display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; transition: background 0.2s; text-decoration: none; min-width: 0;}
      .notice-list li a:hover {background: #fafafa; padding-left: 4px; padding-right: 4px;}
      .notice-title {flex: 1; min-width: 0; font-size: 15px; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 1.4;}
      .notice-date {flex-shrink: 0; font-size: 13px; color: #999;}
      .contact-box {background: #f8f9fa; border-radius: 12px; padding: 28px 24px; text-align: center;}
      .contact-phone {font-size: 36px; font-weight: 800; color: #333; letter-spacing: 1px; margin-bottom: 16px; line-height: 1;}
      .contact-accounts {border-top: 1px solid #e0e0e0; padding-top: 16px;}
      .contact-accounts p {display: flex; align-items: center; font-size: 16px; color: #555; line-height: 2;}
      .contact-accounts .bank {display: inline-block; color: #fff; padding: 2px 10px; border-radius: 4px; font-size: 13px; font-weight: 600; margin-right: 8px;}
      .contact-accounts .bank-gray {background: #888;}

@media screen and (max-width: 1024px) {
        .main-content-grid {grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;}
        .main-contact-info {grid-column: 1 / -1;}
        .contact-phone {font-size: 28px;}
      }

@media screen and (max-width: 768px) {
        .main-content-grid {grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;}
        .main-contact-info {grid-column: 1 / -1;}
        .section-header h3 {font-size: 18px;}
        .contact-box {padding: 24px 20px;}
        .contact-phone {font-size: 28px;}
        .contact-accounts p {font-size: 15px;}
      }

@media screen and (max-width: 540px) and (min-width: 421px) {
        .main-content-grid {grid-template-columns: 1fr 1fr; gap: 16px;}
        .main-contact-info {grid-column: 1 / -1;}
      }

@media screen and (max-width: 420px) {
        .main-content-grid {grid-template-columns: 1fr; gap: 24px;}
        .main-contact-info {grid-column: auto;}
        .contact-phone {font-size: 24px;}
        .contact-accounts p {font-size: 14px;}
        .notice-title {font-size: 14px;}
      }

      /* 메인 - 갤러리 */
      .main-gallery {margin-top: 50px;}
      .gallery-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
      .gallery-card {border: 1px solid #e8e8e8; border-radius: 12px; padding: 10px; transition: all 0.2s;}
      .gallery-card:hover {border-color: #a9180d; box-shadow: 0 4px 12px rgba(169,24,13,0.1);}
      .gallery-card a {display: block; text-decoration: none; transition: transform 0.2s;}
      .gallery-card a:hover {transform: translateY(-2px);}
      .gallery-card:hover .gallery-title {color: #a9180d;}
      .gallery-thumb {width: 100%; height: 200px; border-radius: 8px; overflow: hidden; background: #f0f0f0;}
      .gallery-placeholder {width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e8f0de, #d5e4c8); color: #999; font-size: 40px;}
      .gallery-placeholder i {color: #bbb;}
      .gallery-title {font-size: 14px; color: #555; margin-top: 12px; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}

@media screen and (max-width: 768px) {
        .main-gallery {margin-top: 40px;}
        .gallery-grid {grid-template-columns: repeat(3, 1fr); gap: 16px;}
        .gallery-thumb {height: 150px;}
      }

@media screen and (max-width: 540px) and (min-width: 421px) {
        .gallery-grid {grid-template-columns: repeat(2, 1fr); gap: 12px;}
        .gallery-card:nth-child(n+3) {display: none;}
        .gallery-thumb {height: 160px;}
      }

@media screen and (max-width: 420px) {
        .gallery-grid {grid-template-columns: 1fr;}
        .gallery-thumb {height: 180px;}
        .gallery-title {font-size: 13px;}
      }

      /* 메인 - 아이콘 바로가기 */
      .main-icon-links {display: flex; gap: 24px; margin-top: 50px; padding-top: 40px; border-top: 1px solid #e8e8e8;}
      .icon-link-grid {display: flex; gap: 16px;}
      .icon-link-grid-5 {display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;}
      .icon-link-grid-3 {display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;}
      .icon-link-card {flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 16px; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; transition: all 0.2s; text-decoration: none; cursor: pointer;}
      .icon-link-card:hover {border-color: #009241; background: #e6f5ed; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,146,65,0.1);}
      .icon-link-icon {display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: #e6f5ed; border-radius: 50%; font-size: 24px; color: #009241; transition: all 0.2s;}
      .icon-link-card:hover .icon-link-icon {background: #009241; color: #fff;}
      .icon-link-card:hover .icon-link-icon i {color: #fff;}
      .icon-link-icon i {color: #009241;}
      .icon-link-name {font-size: 16px; font-weight: 600; color: #333;}

@media screen and (max-width: 1024px) {
        .icon-link-grid-5 {grid-template-columns: repeat(3, 1fr);}
        .icon-link-grid-3 {grid-template-columns: repeat(2, 1fr);}
      }

@media screen and (max-width: 768px) {
        .main-icon-links {gap: 12px; margin-top: 32px; padding-top: 32px;}
        .icon-link-card {padding: 20px 12px;}
        .icon-link-icon {width: 48px; height: 48px; font-size: 20px;}
        .icon-link-name {font-size: 14px;}
        .icon-link-grid-5 {grid-template-columns: repeat(2, 1fr);}
      }

@media screen and (max-width: 480px) {
        .main-icon-links {flex-direction: column; gap: 10px;}
        .icon-link-card {flex-direction: row; padding: 16px 20px; gap: 16px;}
        .icon-link-icon {width: 44px; height: 44px; font-size: 18px;}
        .icon-link-grid-5 {grid-template-columns: 1fr;}
      }

      /* 게시판 카드 (썸네일 없는) */
      .post-card-list {list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px;}
      .post-card {display: block; padding: 20px 24px; background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; transition: all 0.2s; text-decoration: none; cursor: pointer;}
      .post-card:hover {border-color: #a9180d; box-shadow: 0 3px 12px rgba(169,24,13,0.08); transform: translateY(-1px);}
      .post-card-top {display: flex; align-items: center; gap: 12px; margin-bottom: 8px;}
      .post-card-num {display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: #e6f5ed; color: #009241; font-size: 13px; font-weight: 700; flex-shrink: 0;}
      .post-card-date {font-size: 13px; color: #999; margin-left: auto; flex-shrink: 0;}
      .post-card-title {font-size: 16px; font-weight: 600; color: #333; line-height: 1.5;}
      .post-card:hover .post-card-title {color: #a9180d;}
      .post-card-desc {font-size: 14px; color: #888; margin-top: 6px; line-height: 1.5;}
      .post-card-badge {display: inline-block; font-size: 11px; font-weight: 600; color: #009241; background: #e6f5ed; padding: 2px 8px; border-radius: 4px;}
      .post-card-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 16px;}
      .thumb-card-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; margin: 0; padding: 0;}
      .thumb-card {display: block; border-radius: 10px; overflow: hidden; border: 1px solid #e8e8e8; background: #fff; transition: all 0.2s; text-decoration: none;}
      .thumb-card:hover {border-color: #a9180d; box-shadow: 0 4px 16px rgba(169,24,13,0.1); transform: translateY(-3px);}
      .thumb-card-img {width: 100%; height: 180px; overflow: hidden; background: linear-gradient(135deg, #e8f0de, #d5e4c8); display: flex; align-items: center; justify-content: center; color: #9ab88a; font-size: 36px;}
      .thumb-card-img img {width: 100%; height: 100%; object-fit: cover;}
      .thumb-card-body {padding: 16px 18px;}
      .thumb-card-date {font-size: 12px; color: #999; margin-bottom: 6px;}
      .thumb-card-title {font-size: 15px; font-weight: 600; color: #333; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
      .thumb-card:hover .thumb-card-title {color: #a9180d;}

@media screen and (max-width: 1024px) {
        .thumb-card-grid {grid-template-columns: repeat(2, 1fr); gap: 16px;}
        .thumb-card-img {height: 150px;}
      }

@media screen and (max-width: 480px) {
        .thumb-card-grid {grid-template-columns: 1fr;}
        .thumb-card-img {height: 180px;}
      }

@media screen and (max-width: 768px) {
        .post-card {padding: 16px 18px;}
        .post-card-title {font-size: 15px;}
        .post-card-desc {font-size: 13px;}
        .post-card-grid {grid-template-columns: 1fr;}
      }

      /* 임원진 프로필 카드 */
      .exec-featured {display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px;}
      .exec-card {display: flex; gap: 20px; padding: 28px 24px; border-radius: 12px; border: 1px solid #e8e8e8; background: #fff; transition: box-shadow 0.2s;}
      .exec-card:hover {box-shadow: 0 4px 16px rgba(0,0,0,0.06);}
      .exec-card.featured {background: linear-gradient(135deg, #fef5f4, #fce8e7); border-color: #c8dbb8;}
      .exec-avatar {flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: #e8e8e8; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #888;}
      .exec-card.featured .exec-avatar {width: 80px; height: 80px; background: #e8e8e8; color: #888; font-size: 30px;}
      .exec-card.featured .exec-avatar i {color: #888;}
      .exec-info {flex: 1; min-width: 0;}
      .exec-role {display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: #a9180d; padding: 2px 10px; border-radius: 4px; margin-bottom: 6px; letter-spacing: 0;}
      .exec-role.bank-badge {background: #009241;}
      .exec-card:not(.featured) .exec-role {background: #8aa87a; font-weight: 600;}
      .exec-name {font-size: 20px; font-weight: 800; color: #242b3f; margin-bottom: 6px; line-height: 1.3;}
      .exec-card:not(.featured) .exec-name {font-size: 17px; font-weight: 700;}
      .exec-desc {font-size: 14px; color: #777; line-height: 1.5;}
      .exec-desc span {display: inline-block; position: relative; padding-left: 8px; margin-right: 4px;}
      .exec-desc span:before {content: '·'; position: absolute; left: 0; top: 0; color: #aaa;}
      .exec-desc span:first-child {padding-left: 0;}
      .exec-desc span:first-child:before {display: none;}
      .exec-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;}
      .exec-section-title {font-size: 14px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0;}

@media screen and (max-width: 1024px) {
        .exec-featured {grid-template-columns: 1fr;}
        .exec-grid {grid-template-columns: repeat(2, 1fr);}
      }

@media screen and (max-width: 768px) {
        .exec-card {padding: 20px 16px; gap: 14px;}
        .exec-avatar {width: 56px; height: 56px; font-size: 22px;}
        .exec-card.featured .exec-avatar {width: 64px; height: 64px; font-size: 26px;}
        .exec-name {font-size: 17px;}
        .exec-card:not(.featured) .exec-name {font-size: 15px;}
        .exec-desc {font-size: 13px;}
        .exec-grid {grid-template-columns: 1fr 1fr;}
      }

@media screen and (max-width: 480px) {
        .exec-grid {grid-template-columns: 1fr;}
        .exec-card {flex-direction: column; align-items: center; text-align: center;}
        .exec-desc span {display: block; padding-left: 0;}
        .exec-desc span:before {display: none;}
      }

      /* 타임라인 */
      .timeline {position: relative; padding: 0 0 0 0;}
      .timeline:before {content: ''; position: absolute; top: 0; left: 28px; width: 2px; height: 100%; background: #e0e0e0;}
      .tl-year {position: relative; padding: 0 0 8px 0; margin-top: 32px;}
      .tl-year:first-child {margin-top: 0;}
      .tl-year-badge {position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: #009241; color: #fff; font-size: 16px; font-weight: 800; line-height: 1; letter-spacing: -0.02em;}
      .tl-items {padding: 0; margin: 0; list-style: none;}
      .tl-item {position: relative; padding: 12px 0 12px 72px; min-height: 0;}
      .tl-item:before {content: ''; position: absolute; top: 20px; left: 23px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid #009241; z-index: 1;}
      .tl-item:after {content: ''; position: absolute; top: 25px; left: 35px; width: 24px; height: 1px; background: #e0e0e0;}
      .tl-item + .tl-item {border-top: 1px solid #f5f5f5;}
      .tl-date {display: inline-block; font-size: 13px; font-weight: 600; color: #009241; background: #e6f5ed; padding: 2px 10px; border-radius: 4px; margin-bottom: 4px; letter-spacing: 0;}
      .tl-text {font-size: 15px; color: #333; line-height: 1.6;}
      .tl-image {margin-top: 10px; border-radius: 8px; overflow: hidden; max-width: 400px;}
      .tl-image img {width: 100%; height: auto; display: block; border-radius: 8px;}
      .tl-image-placeholder {width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #e8f0de 0%, #d5e4c8 50%, #c8dbb8 100%); color: #9ab88a; font-size: 14px; border-radius: 8px;}
      .tl-image-placeholder i {font-size: 24px;}
      .tl-images {display: flex; gap: 10px; margin-top: 10px; max-width: 100%;}
      .tl-images .tl-image {margin-top: 0; flex: 1; min-width: 0;}
      .tl-images .tl-image-placeholder {height: 140px;}
      .tl-images-3col {display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;}
      .tl-images-3col .tl-image {margin-top: 0; max-width: none; aspect-ratio: 4/3;}
      .tl-images-3col .tl-image-placeholder {width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;}

@media screen and (max-width: 768px) {
        .timeline:before {left: 20px;}
        .tl-year-badge {width: 42px; height: 42px; font-size: 13px;}
        .tl-item {padding-left: 52px;}
        .tl-item:before {left: 15px; width: 10px; height: 10px; top: 18px;}
        .tl-item:after {left: 25px; width: 16px; top: 22px;}
        .tl-date {font-size: 12px;}
        .tl-text {font-size: 14px;}
        .tl-image {max-width: 100%;}
        .tl-image-placeholder {height: 140px; font-size: 12px;}
        .tl-images {flex-direction: column;}
        .tl-images .tl-image-placeholder {height: 120px;}
      }

      /* 탭 Ui */
      .tab-nav {display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #009241;}
      .tab-nav button {flex: 1; padding: 14px 20px; font-size: 15px; font-weight: 600; color: #888; background: #f5f5f5; border: 1px solid #e0e0e0; border-bottom: none; cursor: pointer; transition: all 0.2s; font-family: 'Pretendard', sans-serif;}
      .tab-nav button + button {border-left: none;}
      .tab-nav button:hover {color: #333; background: #eee;}
      .tab-nav button.on {color: #fff; background: #009241; border-color: #009241;}
      .tab-panel {display: none; padding-top: 0;}
      .tab-panel.on {display: block;}

@media screen and (max-width: 768px) {
        .tab-nav button {padding: 10px 8px; font-size: 13px;}
      }

@media screen and (max-width: 480px) {
        .tab-nav {flex-direction: column;}
        .tab-nav button + button {border-left: 1px solid #e0e0e0; border-top: none;}
      }

      /* 통합 반응형 푸터 */
      .footer-new {background: #242b3f; color: #ccc; font-size: 15px; line-height: 1.6; margin-top: 0;}
      .footer-inner {max-width: 1200px; margin: 0 auto; padding: 40px 30px 30px;}
      .footer-top {display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.15);}
      .footer-nav ul {display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;}
      .footer-nav ul li a {color: #fff; font-size: 15px; font-weight: 500; text-decoration: none; transition: color 0.2s;}
      .footer-nav ul li a.footer-privacy {color: #0092df; font-weight: 700;}
      .footer-nav ul li a:hover {color: #8bc34a;}
      .footer-sns {display: flex; gap: 12px; align-items: center;}
      .footer-sns a {display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: background 0.2s;}
      .footer-sns a:hover {background: rgba(255,255,255,0.25);}
      .footer-sns a img {height: 20px; width: auto;}
      .footer-body {display: flex; justify-content: space-between; gap: 40px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08);}
      .footer-info {flex: 1;}
      .footer-logo {font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 14px;}
      .footer-addr p {font-size: 14px; color: #999; line-height: 1.8; margin: 0;}
      .footer-highlight {color: #ccc; font-weight: 700; text-decoration: none;}
      .footer-highlight:hover {color: #fff;}
      .footer-contact {flex-shrink: 0; text-align: right;}
      .footer-hours {font-size: 13px; color: #888; margin: 0 0 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);}
      .footer-tel {font-size: 20px; font-weight: 700; color: #0092df; margin: 0; letter-spacing: 1px;}
      .footer-fax {font-size: 15px; color: #bbb; margin: 4px 0 0;}
      .footer-email {font-size: 14px; color: #999; margin: 10px 0 0;}
      .footer-partners {display: flex; gap: 12px; align-items: center; margin-left: auto;}
      .partner-link {display: inline-flex; align-items: center; padding: 8px 16px; background: rgba(255,255,255,0.08); border-radius: 6px; transition: all 0.2s; text-decoration: none;}
      .partner-link:hover {background: rgba(255,255,255,0.15);}
      .partner-logo {height: 24px; width: auto; opacity: 0.7; filter: brightness(0) invert(1); transition: opacity 0.2s;}
      .partner-link:hover .partner-logo {opacity: 1;}
      .footer-bottom {padding-top: 20px;}
      .footer-copyright {font-size: 13px; color: #666; margin: 0; text-align: center;}

@media screen and (max-width: 1024px) {
        .footer-inner {padding: 32px 24px 24px;}
        .footer-body {flex-direction: column; gap: 24px;}
        .footer-contact {text-align: left;}
      }

@media screen and (max-width: 768px) {
        .footer-inner {padding: 28px 20px 20px;}
        .footer-top {flex-direction: column; gap: 16px; align-items: flex-start;}
        .footer-nav ul {flex-wrap: wrap; gap: 16px;}
        .footer-logo {font-size: 16px;}
        .footer-tel {font-size: 18px;}
        .footer-partners {margin-left: 0; gap: 8px;}
      }

@media screen and (max-width: 480px) {
        .footer-inner {padding: 24px 16px 16px;}
        .footer-nav ul {gap: 12px;}
        .footer-nav ul li a {font-size: 14px;}
        .footer-addr p {font-size: 13px;}
        .footer-tel {font-size: 17px;}
        .footer-fax {font-size: 14px;}
      }

      /* Main (기존 서브페이지 호환) */
      .main-key-slider {position: relative; max-width: 1200px; margin: 75px auto 0; overflow: hidden; padding-top: 50px;}
      .main-key-slider img {width: 100%;}
      #content .major-content {overflow: hidden; margin-top: 75px; display: flex; flex-wrap: wrap;}
      #content .major-content .board {flex: 1; overflow: hidden;}
      #content .major-content .board ~ .board {margin-left: 45px;}
      #content .major-content .board.event-day {margin-right: 0;}
      #content .major-content .board h2 {position: relative; font-size: 2rem; color: #242b3f; font-weight: 700; margin-bottom: 30px; padding-bottom: 5px; border-bottom: 2px solid #242b3f;}
      #content .major-content .board h2 span {color: #999; position: absolute; top: 50%; right: 0; transform: translateY(-50%); -webkit-transform: translateY(-50%);}
      #content .major-content .board h2 span i {float: left;}
      #content .major-content .board .title,
      #content .major-content .board .tit {font-size: 20px; margin: 25px 0 15px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
      #content .major-content .board .desc,
      #content .major-content .board .desc a {color: #555; font-size: 18px; line-height: 1.8; text-align: justify;}
      #content .major-content .board .desc {overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; word-wrap: break-word; line-height: 1.5em; height: 7.8em;}
      #content .major-content .list-wrap-slide {position: relative;}

@media all and (max-width: 1200px) {
        #content .major-content {margin-top: 3.5rem;}
        #content .major-content .board.event-day {flex: initial; clear: both; width: 100% !important; margin-left: 0 !important; margin-top: 1.875em; width: 100%;}
        #content .major-content .board ~ .board {margin-left: 2.813rem;}
        #content .major-content .board {margin-right: 0; box-sizing: border-box;}
        #content .major-content .board h2 {font-size: 1.5rem; margin-bottom: 1.875rem; padding-bottom: 0.313rem;}
        #content .major-content .board .title {font-size: 18px; margin: 1.563rem 0 0.938rem;}
        #content .major-content .board .desc,
        #content .major-content .board .desc a {font-size: 16px;}
        #content .major-content .board img {width: 100%;}
        #content .major-content .board.mobile-hidden {display: none;}
      }

@media all and (max-width: 1023px) and (min-width: 481px) {
        #content .major-content .list-wrap-slide .swiper-pagging {position: relative; bottom: 0 !important; margin-top: 0.938em;}
        #content .major-content .list-wrap-slide .swiper-pagging .swiper-pagination-bullet {border-color: #a9180d;}
      }

@media all and (max-width: 480px) {
        #content .major-content {display: block; margin-top: 2rem;}
        #content .major-content .board {width: 100%; margin-left: 0 !important;}
        #content .major-content .board:nth-child(2) {padding-left: 0; margin-top: 1.875em;}
      }

      .list-wrap-slide {overflow: hidden; position: relative;}
      .list-wrap-slide img {width: 100%;}
      #content .complex-content {overflow: hidden; margin-top: 75px;}
      #content .complex-content > ul, #content .complex-content p {width: 370px; float: left; margin-right: 45px; border-bottom: 1px solid #242b3f;}
      #content .complex-content > ul:last-child {margin-right: 0;}
      #content .complex-content p {width: 370px; margin-right: 0; border: 0;}
      #content .complex-content > ul >li {display: flex; height: 150px; border-top: 1px solid #242b3f; align-items: center;}
      #content .complex-content > ul >li a {display: block;}
      #content .complex-content > ul >li dl {display: table; table-layout: fixed; width: 100%;}
      #content .complex-content > ul >li dl dt, #content .complex-content ul li dl dd {display: table-cell; vertical-align: middle;}
      #content .complex-content > ul >li dl dt {width: 100px;}
      #content .complex-content > ul >li dl dd {padding-left: 25px;}
      #content .complex-content > ul >li dl dd span {display: block;}
      #content .complex-content > ul >li dl dd span.subject {font-size: 18px; color: #222; margin-bottom: 10px; letter-spacing: -1px; line-height: 1.6;}
      #content .complex-content > ul >li dl dd span.sns {font-size: 16px; color: #666; letter-spacing: -1px; font-weight: bold; margin-top: -3px; margin-bottom: 5px}
      #content .complex-content > ul >li dl dd span.name {font-size: 16px; color: #999; letter-spacing: -1px;}
      #content .complex-content > ul >li dl dd .list li {font-size: 1.3rem; padding-left: 10px; position: relative; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
      #content .complex-content > ul >li dl dd .list li ~ li {margin-top: 5px;}
      #content .complex-content > ul >li dl dd .list li:before {content: ''; display: block; width: 3px; height: 3px; border-radius: 100%; background: #333; position: absolute; top: 8px; left: 0;}
      #content .complex-content.list > ul {width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 0 45px; border-bottom: none; padding-top: 1px;}
      #content .complex-content.list > ul > li {border-bottom: 1px solid #242b3f; margin-top: -1px;}

@media all and (max-width: 1200px) {
        #content .complex-content {margin: 50px 0;}
        #content .complex-content > ul {width: calc(50% - 20px); margin-right: 0;}
        #content .complex-content > ul ~ ul {margin-left: 40px;}
        #content .complex-content .banner {margin-top: 20px;}
        #content .complex-content .banner img {width: 100%; height: auto}
        #content .complex-content > ul >li {height: 130px;}
        #content .complex-content > ul >li dl dt {width: 90px;}
        #content .complex-content > ul >li dl dd {padding-left: 23px;}
        #content .complex-content > ul >li dl dd span.subject {font-size: 16px; margin-bottom: 9px; letter-spacing: -1px;}
        #content .complex-content > ul >li dl dd span.name {font-size: 14px; letter-spacing: -1px;}
        #content .complex-content > ul >li dl dd span.sns {font-size: 14px; letter-spacing: -1px; margin-top: -3px; margin-bottom: 5px}
        #content .complex-content > ul >li dl dd .list li {padding-left: 9px; font-size: 0.875rem;}
        #content .complex-content > ul >li dl dd .list li ~ li {margin-top: 5px;}
        #content .complex-content > ul >li dl dd .list li:before {width: 3px; height: 3px; top: 7px;}
        .banner {text-align: center; width: 100% !important;}
      }

@media all and (max-width: 768px) {
        #content .complex-content > ul {width: 100%; margin-left: 0 !important;}
      }

      .category-menu {overflow:hidden;}
      .category-menu li {float:left;width:25%;text-align:center;padding:30px 0;}
      .category-menu li span {display:block;}
      .category-menu li span.ico {padding-bottom:30px;}
      .category-menu li span.title,
      .category-menu li span.tit {padding-bottom:20px;font-size:28px;color:#fff;}
      .category-menu li span.desc {padding-bottom:30px;font-size:16px;color:#fff;line-height:1.6;}
      .category-menu li span.more {display:block;width:45px;height:45px;border-radius:100%;border:4px solid #fff;margin:0 auto;background:url("data:image/svg+xml,%3Csvg width='41' height='41' viewBox='0 0 41 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6568 0.355686C19.6836 -0.127853 21.1513 0.0939489 21.9037 0.84631C22.7901 1.73274 22.7674 1.51525 22.821 9.62173L22.8707 17.1425L30.4007 17.1796C35.5686 17.2049 38.0681 17.2741 38.3689 17.4002C38.9327 17.6366 39.6872 18.3924 39.92 18.9543C40.4697 20.2806 39.8372 21.8103 38.4157 22.5925C37.7886 22.9376 37.706 22.9409 30.3375 22.9168L22.8931 22.8923L22.9175 30.2506C22.9312 34.2976 22.8849 37.7823 22.8146 37.9942C22.4891 38.9781 21.3973 39.8949 20.3591 40.0563C19.5886 40.1762 18.6188 39.8339 18.017 39.23C17.1291 38.3391 17.1151 38.2018 17.0888 30.1986L17.0648 22.8644L9.82964 22.822C5.85014 22.7987 2.40814 22.717 2.18059 22.6407C1.58865 22.4421 0.894245 21.8591 0.572736 21.2908C0.231923 20.688 0.139424 19.5182 0.381201 18.8671C0.605538 18.2632 1.35952 17.4818 1.95396 17.237C2.25331 17.1137 4.70646 17.0665 9.7539 17.0869L17.1174 17.1166L17.0971 9.67633C17.0789 2.99771 17.1048 2.18015 17.3489 1.69103C17.6764 1.03476 18.0715 0.63131 18.6568 0.355686Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat 50% 50%;background-size:auto 60%;}
      .category-menu li:nth-child(1) {background:#a9180d;}
      .category-menu li:nth-child(2) {background:#242b3f;}
      .category-menu li:nth-child(3) {background:#3d6989;}
      .category-menu li:nth-child(4) {background:#515a61;}
@media all and (max-width:1024px) {
        .category-menu li {width:50%;}
        .category-menu li span.tit {font-size:1.5rem;}
        .category-menu li span.desc {font-size:0.8rem;}
      }

@media all and (max-width:500px) {
        .category-menu li {width:100%;}
      }

      /* Templates - 갤러리 상세 */
      .gal-detail {max-width: 900px; margin: 0 auto;}
      .gal-section {margin-top: 32px;}
      .gal-section:first-child {margin-top: 0;}
      .gal-heading {font-size: 20px; font-weight: 700; color: #242b3f; padding-bottom: 10px; margin-bottom: 14px; border-bottom: 2px solid #a9180d; display: inline-block;}
      .gal-section p {font-size: 18px; line-height: 1.8; color: #555;}
      .gal-section p + p {margin-top: 10px;}
      .gal-images {display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px;}
      .gal-images img {width: 100%; border-radius: 12px; display: block;}
      .gal-images img:only-child {grid-column: 1 / -1;}
      .gal-images img:nth-child(3) {grid-column: 1 / -1;}
      .gal-detail .btn-area {margin-top: 40px; width: 1200px; max-width: 100vw; margin-left: 50%; transform: translateX(-50%);}

@media screen and (max-width: 768px) {
        .gal-heading {font-size: 18px;}
        .gal-section p {font-size: 16px;}
        .gal-images {grid-template-columns: 1fr; gap: 12px; margin-top: 30px;}
        .gal-images img:nth-child(3) {grid-column: auto;}
        .gal-section {margin-top: 24px;}
      }

@media screen and (max-width: 480px) {
        .gal-heading {font-size: 17px;}
        .gal-section p {font-size: 15px;}
        .gal-detail .btn-area {margin-top: 30px;}
      }

      /* Board - 목록 */
      .list-type {clear: both; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 30px;}
      .list-type:after {content: ""; display: block; clear: both;}
      .list-type li .img {position: relative; width: 100%; height:220px;display:flex;justify-content:center;align-items:center; overflow: hidden; background-position: 50% 50%; background-size: cover; background-repeat: no-repeat; border-radius: 8px;}
      .list-type li .img a {display: block;width:100%; height: 100%;display:flex;justify-content:center;align-items:center; overflow: hidden;}
      .list-type li .img img {width: 100%;height:100%; object-fit: cover;}
      .list-type li .text {margin-top: 15px;}
      .list-type li .text > a > .tit {display: block; font-size: 18px; color: #242b3f; font-weight: 600; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; line-height: 1.4;}
      .list-type li .text > a > .txt {display: block; margin-top: 12px; font-size: 16px; color: #555; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-wrap: break-word; line-height: 1.6; word-break: break-all;}
      .list-type li .text .sale {display: block;}
      .list-type li .text .sale:after {content: ""; display: block; clear: both;}
      .list-type li .text .sale > .tit {float: left; color: #ff3b3b; font-weight: bold; font-size: 24px;}
      .list-type li .text .sale > .account {float: right; font-size: 24px; color: #222222;}
      .list-type li .info {margin-top: 15px; display: flex; flex-direction: row; align-items: center; font-size: 14px;}
      .list-type li .info .right {margin-left: auto;}
      .list-type li.mask .img:after {content: ''; display: flex; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5);}
      .list-type li.ready .img:after {content: '비공개'; align-items: center; justify-content: center; color: #fff; font-size: 25px; font-family: 'Pretendard', sans-serif; font-weight: 700;}
@media screen and (max-width: 1024px) {
        .list-type {gap: 20px; box-sizing: border-box; max-width: 100%;}
        .list-type li .img {height:180px;}
        .list-type li .img img {width: 100%;}
        .list-type li .text {margin-top: 10px;}
        .list-type li .text > a > .tit {font-size: 1.4rem; text-align: center;}
        .list-type li .text > a > .txt {margin-top: 10px; font-size: 0.875rem;}
        .list-type li .text .sale > .tit {font-size: 1.375rem;}
        .list-type li .text .sale > .account {padding-top: 6px; font-size: 0.938rem;}
      }

@media screen and (max-width: 768px) {
        .list-type {grid-template-columns: repeat(3, 1fr) !important;}
      }

@media screen and (max-width: 540px) {
        .list-type {grid-template-columns: repeat(2, 1fr) !important;}
      }

@media screen and (max-width: 420px) {
        .list-type {grid-template-columns: repeat(1, 1fr) !important;}
        .list-type li .img {height:auto;}
      }

      /* Board - 버튼 */

      /* Etc */
      .swiper-pagination {display: flex; align-items: center; justify-content: center; bottom: 20px !important;}
      .swiper-pagination .swiper-pagination-bullet {border: 2px solid #fff; text-indent: -9999px; display: block; width: 12px; height: 12px; margin: 0 5px; border-radius: 12px; opacity: 1; background: transparent !important;}
      .swiper-pagination .swiper-pagination-bullet-active {border: 2px solid #a9180d; background: #a9180d !important;}
      .ico-up {display: inline-block; width: 10px; height: 12px; background: url("data:image/svg+xml,%3Csvg width='38' height='45' viewBox='0 0 38 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.4932 4.83901L4 20.1535L7.07997 23.1057L17.3465 12.9575V45H21.6398V12.9575L31.9064 23.1057L34.9863 20.1535L19.4932 4.83901Z' fill='%23333333'/%3E%3Cpath d='M0 0H38V5H0V0Z' fill='%23333333'/%3E%3C/svg%3E") no-repeat 0 0; background-size: auto 100%;}
      .align-left {text-align: left !important;}
      .align-center {text-align: center !important;}
      .align-right {text-align: right !important;}
      .margin-top50 {margin-top: 50px !important;}

      /* Program (프로그램) */
      .pgm-card {display: flex; gap: 40px; align-items: flex-start;}
      .pgm-card + .pgm-card {margin-top: 60px; padding-top: 60px; border-top: 1px solid #f0f0f0;}
      .pgm-card.pgm-reverse {flex-direction: row-reverse;}
      .pgm-img {flex: 0 0 45%; overflow: hidden; border-radius: 12px;}
      .pgm-img img {width: 100%; display: block; border-radius: 12px;}
      .pgm-body {flex: 1; min-width: 0;}
      .pgm-num {display: inline-block; font-size: 40px; font-weight: 800; color: #e8e8e8; line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px;}
      .pgm-title {font-size: 22px; font-weight: 700; color: #242b3f; margin-bottom: 8px;}
      .pgm-subtitle {font-size: 18px; font-weight: 500; color: #a9180d; margin-bottom: 12px; line-height: 1.4;}
      .pgm-date {font-size: 14px; color: #999; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0;}
      .pgm-text {font-size: 18px; line-height: 1.7; color: #555;}
      .pgm-text p + p {margin-top: 12px;}

@media screen and (max-width: 1024px) {
        .pgm-card {gap: 30px;}
        .pgm-img {flex: 0 0 40%;}
        .pgm-title {font-size: 20px;}
        .pgm-subtitle {font-size: 17px;}
        .pgm-text {font-size: 16px;}
      }

@media screen and (max-width: 768px) {
        .pgm-card,
        .pgm-card.pgm-reverse {flex-direction: column; gap: 20px;}
        .pgm-card + .pgm-card {margin-top: 40px; padding-top: 40px;}
        .pgm-img {flex: none; width: 100%;}
        .pgm-num {font-size: 32px;}
        .pgm-title {font-size: 19px;}
        .pgm-subtitle {font-size: 16px;}
        .pgm-text {font-size: 16px;}
      }

@media screen and (max-width: 480px) {
        .pgm-card + .pgm-card {margin-top: 30px; padding-top: 30px;}
        .pgm-title {font-size: 17px;}
        .pgm-subtitle {font-size: 15px;}
        .pgm-text {font-size: 15px;}
        .pgm-date {font-size: 13px;}
      }

      .intro-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px;}
      .intro-col .tl-image {aspect-ratio: 4/3; width: 100%; max-width: none;}
      .intro-col .tl-image-placeholder {width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;}
@media screen and (max-width: 768px) {
        .intro-grid {grid-template-columns: 1fr; gap: 24px;}
      }

      /* Business (사업소개) */
      .biz-section {margin-top: 40px;}
      .biz-section:first-child {margin-top: 0;}
      .biz-heading {font-size: 22px; font-weight: 700; color: #242b3f; padding-bottom: 12px; border-bottom: 2px solid #ccc; margin-bottom: 16px;}
      .community-main-title {text-align: center; font-family: 'Nanum Myeongjo', serif; font-size: 26px; border-bottom: none; padding-bottom: 0; margin-bottom: 32px;}
      .biz-text {font-size: 18px; line-height: 1.7; color: #555; text-align: justify;}
      .biz-text + .biz-text {margin-top: 14px;}
      .biz-text-accent {color: #a9180d; font-weight: 600;}
      .biz-list {list-style: none; padding: 0; margin: 0;}
      .biz-list li {position: relative; font-size: 18px; line-height: 1.7; color: #555; padding-left: 20px;}
      .biz-list li:before {content: ''; position: absolute; top: 12px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #555;}
      .biz-table-wrap {margin-top: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch;}
      .biz-table {width: 100%; border-collapse: collapse; min-width: 400px; table-layout: fixed;}
      .biz-table th {padding: 12px 16px; background: #242b3f; color: #fff; font-size: 15px; font-weight: 500; text-align: left; white-space: nowrap;}
      .biz-table td {padding: 12px 16px; border-bottom: 1px solid #e8e8e8; font-size: 15px; color: #555; line-height: 1.5;}
      .biz-table tbody tr:hover {background: #f9f9f9;}
      .biz-table th,
      .biz-table td {width: 25%; text-align: center;}
      .biz-track-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px;}
      .biz-track-card {background: #f7f8fa; border-radius: 12px; padding: 28px 24px; text-align: center; border: 1px solid #e8e8e8; transition: box-shadow 0.2s;}
      .biz-track-card:hover {box-shadow: 0 4px 16px rgba(0,0,0,0.08);}
      .biz-track-card h4 {font-size: 18px; font-weight: 700; color: #242b3f; margin-bottom: 16px;}
      .biz-track-card h4 span {display: block; font-size: 14px; font-weight: 400; color: #999; margin-top: 4px;}
      .biz-track-card ul {list-style: none; padding: 0; margin: 0;}
      .biz-track-card li {font-size: 15px; color: #555; line-height: 2; position: relative;}
      .biz-track-card li + li {border-top: 1px solid #e8e8e8;}
      .biz-detail-list {list-style: none; padding: 0; margin: 24px 0 0;}
      .biz-detail-list li {font-size: 16px; line-height: 1.7; color: #555; padding: 10px 0; border-bottom: 1px solid #f0f0f0;}
      .biz-detail-list li:last-child {border-bottom: none;}
      .biz-detail-list li strong {display: inline-block; color: #242b3f; font-weight: 600; margin-right: 8px; min-width: 100px;}
      .biz-split {display: flex; gap: 32px; align-items: flex-start;}
      .biz-split > div {flex: 1; min-width: 0;}

@media screen and (max-width: 768px) {
        .biz-split {flex-direction: column; gap: 0;}
        .biz-section[style*="display:flex"] {flex-direction: column !important; gap: 0 !important;}
        .biz-heading {font-size: 19px;}
        .biz-text {font-size: 16px;}
        .biz-list li {font-size: 16px;}
        .biz-track-grid {grid-template-columns: 1fr; gap: 12px;}
        .biz-track-card {padding: 20px 16px;}
        .biz-detail-list li {font-size: 15px;}
        .biz-detail-list li strong {display: block; margin-bottom: 4px; min-width: auto;}
        .biz-table th,
        .biz-table td {font-size: 14px; padding: 10px 12px;}
      }

@media screen and (max-width: 480px) {
        .biz-heading {font-size: 17px;}
        .biz-text {font-size: 15px;}
        .biz-list li {font-size: 15px;}
        .biz-detail-list li {font-size: 14px;}
      }

      /* 오시는 길 - 카카오맵 약도 폰트 오버라이드 */
      .root_daum_roughmap_landing {font-family: 'Pretendard', sans-serif !important;}
      .root_daum_roughmap_landing .cont {font-size: 18px !important;}
      .root_daum_roughmap_landing .section .tit {font-size: 18px !important; font-weight: 700 !important;}
      .root_daum_roughmap_landing .section .title {font-size: 18px !important; font-weight: 700 !important;}
      .root_daum_roughmap_landing .section .address .txt {font-size: 18px !important;}
      .root_daum_roughmap_landing .section .phone .txt {font-size: 18px !important;}
      .root_daum_roughmap_landing .section .wrap_list {font-size: 17px !important;}
      .root_daum_roughmap_landing .section .wrap_list a {font-size: 17px !important;}
      .root_daum_roughmap_landing .section .wrap_list li {font-size: 17px !important;}

      /* 모달 */
      .modal-overlay {display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); align-items: center; justify-content: center;}
      .modal-overlay.on {display: flex;}
      .modal-content {position: relative; background: #fff; border-radius: 12px; padding: 36px 32px; width: 90%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 40px rgba(0,0,0,0.2); animation: modalIn 0.25s ease-out;}
@keyframes modalIn {from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);}}
        .modal-close {position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; transition: color 0.2s;}
        .modal-close:hover {color: #333;}
        .modal-title {font-size: 22px; font-weight: 700; color: #242b3f; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid #ccc;}
        .modal-form-row {margin-bottom: 16px;}
        .modal-form-row label {display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px;}
        .modal-form-row .required {color: #a9180d; font-size: 12px;}
        .modal-form-row input,
        .modal-form-row textarea {width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; font-family: 'Pretendard', sans-serif; transition: border-color 0.2s; box-sizing: border-box;}
        .modal-form-row input:focus,
        .modal-form-row textarea:focus {outline: none; border-color: #a9180d;}
        .modal-form-row textarea {resize: vertical;}
        .modal-form-actions {display: flex; gap: 10px; margin-top: 24px;}
        .modal-btn-submit {flex: 1; padding: 12px; background: #a9180d; color: #fff; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: 'Pretendard', sans-serif;}
        .modal-btn-submit:hover {background: #8a1209;}
        .modal-btn-cancel {flex: 1; padding: 12px; background: #f5f5f5; color: #555; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: 'Pretendard', sans-serif;}
        .modal-btn-cancel:hover {background: #eee;}
        .modal-privacy {margin-top: 20px;}
        .modal-privacy-box {background: #f9f9f9; border: 1px solid #eee; border-radius: 6px; padding: 12px 14px; font-size: 13px; line-height: 1.7; color: #666; margin-bottom: 10px;}
        .modal-privacy-box p {margin: 0;}
        .modal-privacy-box strong {color: #333; font-size: 13px;}
        .modal-privacy-check {display: flex; align-items: center; gap: 6px; font-size: 14px; color: #333; cursor: pointer;}
        .modal-privacy-check input[type="checkbox"] {width: 16px; height: 16px; accent-color: #a9180d; cursor: pointer;}

@media screen and (max-width: 768px) {
          .modal-content {padding: 24px 20px; width: 95%;}
          .modal-title {font-size: 19px;}
        }
        .root_daum_roughmap_landing .section .txt_item {font-size: 17px !important;}
