@charset "utf-8";
@import url(../../../css/common/fonts/pretendard.css);
@import url(../../../css/common/fonts/SUIT.css);

:root {
  --kwu-purple: #24947c;
  --kwu-purple-hover: #1a7562;
  --kwu-primary: #24947c;
  --kwu-primary-hover: #1a7562;
  --side-nav-bg: #ff9900;
  --kwu-bg: #ffffff;
  --kwu-border: #e5e5e5;
  --kwu-text: #222;
  --kwu-muted: #777;
  --layout-max: 1920px;
  --content-max: 1680px;
  --section-width: 1245px;
  --sidebar-w: 220px;
  --sidebar-w-folded: 72px;
  --inner-pad-x: 24px;
  --top-banner-h: 0px;
  --font-sans: "Pretendard", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body {
  overflow: visible;
  background: #fff;
  color: var(--kwu-text);
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1.45;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.cke_editable img { width: auto; }

h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

/* ----- 레이아웃 ----- */
.page-container {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding-left: var(--sidebar-w);
  min-height: 100vh;
  position: relative;
  transition: padding-left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-container.is-sidebar-folded {
  padding-left: var(--sidebar-w-folded);
}

.side-nav {
  position: fixed;
  top: var(--top-banner-h);
  bottom: 0;
  left: max(0px, calc((100vw - min(100vw, var(--layout-max))) / 2));
  width: var(--sidebar-w);
  z-index: 200;
  background: var(--side-nav-bg);
  color: #fff;
  overflow: hidden;
  transition:
    top 0.35s ease,
    width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.side-nav.is-folded {
  width: var(--sidebar-w-folded);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.1);
}

.side-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 20px 24px;
  transition: padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.is-folded .side-nav__inner {
  position: relative;
  align-items: center;
  padding: 24px 10px;
}

.side-nav__logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  max-height: 240px;
  height: auto;
  margin-bottom: 50px;
  opacity: 1;
  transition:
          opacity 0.32s ease,
          max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
          margin 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.is-folded .side-nav__logo {
  max-height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.side-nav__logo img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 10px;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav__dept {
  display: block;
  margin: 0;
  font-family: "SUIT", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: keep-all;
}

.side-nav__fold-bg,
.side-nav__fold-mark,
.side-nav__scroll-hint {
  display: none !important;
}

.side-nav__fold-bg {
  display: none;
  flex-shrink: 0;
  width: 52px;
  height: auto;
  margin: 4px auto 0;
  object-fit: contain;
  pointer-events: none;
}

.side-nav.is-folded .side-nav__fold-bg {
  display: block;
}

.side-nav__fold-mark {
  display: none;
  margin: 4px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.side-nav__fold-mark span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.side-nav.is-folded .side-nav__fold-mark {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.side-nav__scroll-hint {
  display: none;
  flex-shrink: 0;
  margin: auto 0 0;
  padding: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
  user-select: none;
}

.side-nav.is-folded .side-nav__scroll-hint {
  display: block;
}

.side-nav__nav,
.side-nav__util {
  flex-shrink: 0;
  max-height: 720px;
  opacity: 1;
  transform: translateX(0);
  transition:
          opacity 0.35s ease 0.04s,
          transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
          max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
          margin 0.4s ease,
          padding 0.4s ease;
}

.side-nav.is-folded .side-nav__nav,
.side-nav.is-folded .side-nav__util {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  transform: translateX(-16px);
  pointer-events: none;
  overflow: hidden;
  transition:
          opacity 0.28s ease,
          transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
          max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
          margin 0.35s ease,
          padding 0.35s ease;
}

.side-nav__nav {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}

.side-nav__nav::-webkit-scrollbar {
  width: 12px;
}

.side-nav__nav::-webkit-scrollbar-track {
  background: transparent;
}

.side-nav__nav::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.35);
  border: 3px solid transparent;
  border-radius: 10px;
  background-clip: padding-box;
}

.side-nav__nav::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

.side-nav__nav::-webkit-scrollbar-corner {
  background: transparent;
}

.gnb__panel-inner {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}

.gnb__panel-inner::-webkit-scrollbar {
  width: 12px;
}

.gnb__panel-inner::-webkit-scrollbar-track {
  background: transparent;
}

.gnb__panel-inner::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.35);
  border: 3px solid transparent;
  border-radius: 10px;
  background-clip: padding-box;
}

.gnb__panel-inner::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

.gnb__panel-inner::-webkit-scrollbar-corner {
  background: transparent;
}

.side-nav__util {
  margin-top: 60px;
  padding-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.side-nav__util::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 78px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.side-nav__util a {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.side-nav__util a i {
  width: 1.1em;
  text-align: center;
  opacity: 0.9;
}

.lang-box {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.lang-box__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-box__trigger:hover {
  background: #f8f8f8;
  color: #000;
}

.lang-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.lang-box__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.lang-box__label {
  letter-spacing: -0.01em;
}

.lang-box__arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lang-box__trigger:hover .lang-box__arrow {
  color: #000;
}

.lang-box.is-open .lang-box__arrow {
  transform: rotate(180deg);
}

.lang-box__menu {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: calc(100% + 8px);
  right: auto;
  z-index: 20;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

body.has-top-banner-open .lang-box__menu {
  top: auto;
  bottom: 0;
  transform: none;
}

.lang-box__menu[hidden] {
  display: none;
}

.lang-box__menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: #222;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lang-box__menu button:hover {
  background: #f5f5f5;
}

.side-nav:has(.lang-box.is-open) {
  overflow: visible;
}

.side-nav:has(.lang-box.is-open) .side-nav__inner {
  overflow: visible;
}

.dn {
  display: none !important;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.45);
}

.main-content {
  background: var(--kwu-bg);
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: var(--top-banner-h);
  transition: margin-top 0.35s ease;
}

.mobile-topbar {
  display: none;
}

.mobile-topbar__logo-picture {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.side-nav__close {
  display: none;
}

/* ----- GNB ----- */
.gnb {
  position: relative;
  width: 100%;
}

.gnb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnb__item + .gnb__item {
  margin-top: 30px;
}

.gnb__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
  padding: 2px 0;
  text-align: center;
  transition: opacity 0.2s ease;
}

.gnb__link:hover,
.gnb__item.is-open > .gnb__link {
  opacity: 1;
  font-weight: 700;
  text-decoration: none;
}

.gnb__link-icon--toggle {
  display: none;
}

.gnb__link-icon--external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1;
  opacity: 0.88;
}

.gnb__link:has(.gnb__link-icon--external) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.gnb__depth-link-text {
  min-width: 0;
  flex: 0 1 auto;
}

.gnb__depth2-link:has(.gnb__link-icon--external),
.gnb__depth3-link:has(.gnb__link-icon--external) {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.gnb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}

.gnb-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnb-panel-root {
  position: relative;
  z-index: 210;
  pointer-events: none;
}

.gnb__panel {
  position: fixed;
  top: var(--top-banner-h);
  bottom: 0;
  left: calc(max(0px, calc((100vw - min(100vw, var(--layout-max))) / 2)) + var(--sidebar-w) - 1px);
  right: auto;
  width: calc(min(100vw, var(--layout-max)) * 0.6 + 1px);
  z-index: 210;
  height: calc(100vh - var(--top-banner-h));
  max-height: none;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    top 0.35s ease,
    opacity 0.28s ease,
    visibility 0.28s ease;
  pointer-events: none;
}

.gnb__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnb__panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 40px 40px 40px 36px;
  overflow-y: auto;
  box-sizing: border-box;
}

.gnb__panel-title {
  display: none;
}

.gnb__depth2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  align-content: center;
  column-gap: 40px;
  row-gap: 0;
  width: 100%;
}

.gnb__depth2-item {
  min-width: 0;
}

.gnb__depth2-item:nth-child(2n) {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dotted rgba(255, 255, 255, 0.45);
}

.gnb__depth2-link {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.gnb__depth2-link::before {
  content: "\f105";
  display: inline-block;
  margin-right: 6px;
  font-weight: 400;
  opacity: 0.85;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
}

.gnb__depth2-link:hover {
  opacity: 0.8;
  color: #fff;
}

.gnb__depth3 {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
}

.gnb__depth3-item + .gnb__depth3-item {
  margin-top: 8px;
}

.gnb__depth3-link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  transition: color 0.2s ease, opacity 0.2s ease;
  word-break: keep-all;
}

.gnb__depth3-link:hover {
  color: #fff;
  opacity: 1;
}

.page-container.is-sidebar-folded .gnb__panel {
  left: calc(max(0px, calc((100vw - min(100vw, var(--layout-max))) / 2)) + var(--sidebar-w-folded) - 1px);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  z-index: 2;
  height: 700px;
  background: #111;
  --hero-caption-bottom: 48px;
  overflow: hidden;
  isolation: isolate;
}

.hero-swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 700px !important;
  max-height: 700px;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
          to top,
          rgba(5, 5, 5, 0.4) 0%,
          rgba(5, 5, 5, 0.3) 55%,
          rgba(5, 5, 5, 0) 100%
  );
  z-index: 7;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-swiper__pagination {
  position: absolute;
  bottom: 24px;
  z-index: 10;
  width: auto !important;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  margin: 0 3px;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-swiper__progress {
  position: absolute;
  left: var(--inner-pad-x);
  bottom: 24px;
  z-index: 10;
  width: 250px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.hero-swiper__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.hero__caption {
  position: absolute;
  left: var(--inner-pad-x);
  bottom: var(--hero-caption-bottom);
  max-width: 760px;
  padding: 0;
  color: #fff;
  z-index: 9;
  text-shadow:
          0 0px 5px rgba(0, 0, 0, 0.2),
          0 0px 5px rgba(0, 0, 0, 0.2);
}

.hero__caption-line {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
}

.hero__caption-main {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__caption-line,
.hero__caption-main {
  opacity: 0;
  transform: translateY(26px);
  transition:
          opacity 0.55s ease,
          transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-swiper .swiper-slide-active .hero__caption-line,
.hero-swiper .swiper-slide-duplicate-active .hero__caption-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-swiper .swiper-slide-active .hero__caption-main,
.hero-swiper .swiper-slide-duplicate-active .hero__caption-main {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

/* ----- Notice Board (kwu_2026 동일 구조 · board-section 타이틀/탭) ----- */
.section--notice-board {
  background: #f5f5f5;
  padding: 72px 0 80px;
  width: 100%;
}

.notice-board {
  width: 100%;
  max-width: min(var(--section-width), 100%);
  margin: 0 auto;
  padding: 0 var(--inner-pad-x);
}

.notice-board__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.notice-board__grid[hidden] {
  display: none !important;
}

.notice-board__grid:has(.notice-board__empty) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
}

.notice-board__empty {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: clamp(16px, 2.8vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  color: #555;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding: 15px 0;
}

.notice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  padding: 20px 16px 18px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.notice-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.notice-card__title {
  margin: 0 0 16px;
  font-family: "SUIT", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.notice-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.notice-card__badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.3125rem 1rem;
  border-radius: 999px;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.notice-card__badge--green {
  background: #e8f7f1;
  color: #00796b;
}

.notice-card__badge--blue {
  background: #e8f2fc;
  color: #0d47a1;
}

.notice-card__badge--orange {
  background: #fff2e3;
  color: #e65100;
}

.notice-card__badge--purple {
  background: #f3ebf8;
  color: #6a1b9a;
}

.notice-card__badge--brown {
  background: #f5ebe0;
  color: #8d5524;
}

.notice-card__badge--pink {
  background: #fceef3;
  color: #c2185b;
}

.notice-card__date {
  flex-shrink: 0;
  margin-left: auto;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #9a9a9a;
  white-space: nowrap;
}

/* ----- Section 01 · Board ----- */
.section--01 {
  padding: 72px 0 80px;
  background: #fff;
}

.section01__inner,
.section02__inner,
.section03__inner {
  width: 100%;
  max-width: min(var(--section-width), 100%);
  margin: 0 auto;
  padding: 0 var(--inner-pad-x);
}

.board-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.board-section__title {
  font-family: "SUIT", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111;
}

.board-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.board-tabs__btn {
  min-width: 72px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-tabs__btn {
  background: #f2f2f2;
}

.board-tabs__btn:hover {
  color: #111;
}

.board-tabs__btn.is-active {
  background: #2b2b2b;
  color: #fff;
}

.board-tabs__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 4px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 16px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.board-tabs__more:hover {
  background: #e8e8e8;
}

.board-panels > [id^="board-tab-content"] {
  display: none;
}

.board-panels > [id^="board-tab-content"].is-active {
  display: block;
}

.board-layout {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.board-layout--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 360px;
  padding: 32px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  background: #fafafa;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #999;
}

.board-feature {
  position: relative;
  display: block;
  width: 100%;
  max-width: 580px;
  height: 533px;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
}

.board-feature__media {
  position: relative;
  width: 100%;
  height: 100%;
}

.board-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-feature__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 190px;
  padding: 50px 40px ;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.board-feature__title {
  margin: 0 0 10px;
  font-family: "SUIT", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.board-feature__date {
  display: block;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.board-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 533px;
  gap: 23px;
}

.board-list li:first-child a{
  padding-top: 0;
}

.board-list li:last-child a{
  padding-bottom: 0;
}

.board-list__item + .board-list__item {
}

.board-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 23px;
  transition: opacity 0.2s ease;
}

.board-list__link:hover {
  opacity: 0.82;
}

.board-list__thumb {
  flex: 0 0 148px;
  width: 148px;
  height: 148px;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f0f0;
}

.board-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-list__text {
  flex: 1;
  min-width: 0;
}

.board-list__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 12px;
  font-family: "SUIT", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #111;
}

.board-list__desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #777;
}

/* ----- Section 02 · Intro ----- */
.section--02 {
  padding: 0 0 80px;
  background: #fff;
}

.intro-section__title {
  margin-bottom: 36px;
  font-family: "SUIT", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 820px);
  grid-template-rows: repeat(2, calc((489px - 28px) / 2));
  gap: 28px;
  height: 489px;
}

.intro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 36px 32px 32px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.intro-card--light {
  background: #f3f3f8;
  color: #111;
}

.intro-card--visual {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  max-width: 820px;
  height: 489px;
  padding: 0;
  color: #fff;
}

.intro-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.62) 0%,
          rgba(0, 0, 0, 0.18) 42%,
          rgba(0, 0, 0, 0) 72%
  );
}

.intro-card__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 36px 32px 32px;
}

.intro-card__label {
  display: block;
  margin-bottom: 10px;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
  opacity: 0.72;
}

.intro-card--light .intro-card__label {
  color: #666;
  opacity: 1;
}

.intro-card__title {
  display: block;
  font-family: "SUIT", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: inherit;
}

.intro-card__icon {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: auto;
  height: 68px;
  object-fit: contain;
  opacity: 0.2;
}

.intro-card__action {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.intro-card__action-text {
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: inherit;
}

.intro-card__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.intro-card:hover .intro-card__action-btn {
  transform: translateX(3px);
}

.intro-card--light .intro-card__action-btn {
  background: #111;
  color: #fff;
}

.intro-card--visual .intro-card__action {
  right: 32px;
  bottom: 32px;
}

.intro-card--visual .intro-card__action-btn {
  background: #fff;
  color: #111;
}

/* ----- Section 03 · SNS ----- */
.section--03 {
  padding: 0 0 80px;
  background: #fff;
}

.sns-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.sns-section__title {
  font-family: "SUIT", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111;
}

.sns-section__channels {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sns-section__channels--empty {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fafafa;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.sns-section__channel {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sns-section__channel:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.sns-section__channel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-section__feed {
  position: relative;
  overflow: visible;
}

.sns-feed-swiper {
  width: 100%;
  overflow: hidden;
}

.sns-feed-swiper .swiper-slide {
  height: auto;
}

.sns-feed-swiper .swiper-wrapper:has(.sns-card--empty) {
  width: 100% !important;
  transform: none !important;
}

.sns-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100%;
  min-height: 280px;
  margin: 0 !important;
  padding: 32px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: #fafafa;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #999;
}

.sns-section__feed:has(.sns-card--empty) .sns-section__nav {
  display: none;
}

.sns-card {
  display: flex;
  flex-direction: column;
}

.sns-card__thumb-wrap {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  line-height: 0;
}

.sns-card__thumb {
  width: 100%;
  aspect-ratio: 399 / 280;
  object-fit: cover;
}

.sns-card__tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "SUIT", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-transform: capitalize;
}

.sns-card__tag--facebook {
  background: #00499a;
}

.sns-card__tag--youtube {
  background: #cc2020;
}

.sns-card__tag--instagram {
  background: linear-gradient(90deg, #f79300 0%, #f70e5a, #e0019d, #9f1cdf);
}

.sns-card__tag--kakao {
  background: #fee500;
  color: #3b1e1e;
}

.sns-card__title {
  margin: 12px 0 0;
  font-family: "SUIT", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #111;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.sns-section__nav {
  position: absolute;
  top: 140px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sns-section__nav--prev {
  left: -22px;
}

.sns-section__nav--next {
  right: -22px;
}

.sns-section__nav:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.sns-section__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ----- Footer ----- */
.site-footer {
  background: #fff;
}

.footer-quick {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.footer-quick__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-drop {
  min-width: 0;
  border-left: 1px solid #e5e5e5;
  background: #fff;
}

.footer-drop:last-child {
  border-right: 1px solid #e5e5e5;
}

.footer-drop__control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 36px 0 16px;
}

.footer-drop__plus {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #111;
  pointer-events: none;
}

.footer-select {
  flex: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 14px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: #111;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
}

.footer-select:hover {
  color: #000;
}

.footer-select:focus {
  outline: none;
}

.footer-drop__control:focus-within {
  outline: 2px solid rgba(36, 148, 124, 0.22);
  outline-offset: -2px;
}

.footer-main {
  padding: 28px var(--inner-pad-x) 36px;
  margin-top: 20px;
  text-align: center;
}

.footer-main__logo img {
  width: auto;
  max-width: 220px;
  height: auto;
  margin: 0 auto 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-links li {
  display: inline-flex;
  align-items: center;
}

.footer-links li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  margin-right: 12px;
  background: #cfcfcf;
  flex-shrink: 0;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address {
  font-size: 16px;
  color: var(--kwu-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-copy {
  font-size: 15px;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* ----- 반응형 ----- */
@media (max-width: 1590px) {
  .gnb__panel {
    width: calc(min(100vw, var(--layout-max)) - var(--sidebar-w) + 1px);
  }

  .page-container.is-sidebar-folded .gnb__panel {
    width: calc(min(100vw, var(--layout-max)) - var(--sidebar-w-folded) + 1px);
  }

  .gnb__panel-inner {
    padding: 44px clamp(20px, 2.5vw, 36px) 40px;
  }
}

@media (max-width: 1280px) {
  .gnb__panel {
    width: calc(min(100vw, var(--layout-max)) - var(--sidebar-w) + 1px);
  }

  .page-container.is-sidebar-folded .gnb__panel {
    width: calc(min(100vw, var(--layout-max)) - var(--sidebar-w-folded) + 1px);
  }

  .gnb__panel-inner {
    padding: 40px 28px 36px;
  }
}

@media (max-width: 1480px) {
  .board-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .board-feature {
    max-width: none;
    height: auto;
    aspect-ratio: 580 / 300;
  }

  .board-list {
    min-height: 0;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    height: auto;
    gap: 20px;
  }

  .intro-card--visual {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: none;
    height: auto;
    aspect-ratio: 820 / 489;
  }

  .intro-card--light {
    min-height: 220px;
  }
}

@media (max-width: 1200px) {
  :root {
    --sidebar-w: 200px;
    --inner-pad-x: 20px;
  }

  .notice-board__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .board-list__title {
    font-size: 18px;
  }

  .sns-section__nav--prev {
    left: -12px;
  }

  .sns-section__nav--next {
    right: -12px;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .side-nav__inner {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .side-nav__logo img {
    margin-bottom: 6px;
  }

  .side-nav__dept {
    font-size: 16px;
  }

  .side-nav__logo {
    margin-bottom: 28px;
  }

  .gnb__item + .gnb__item {
    margin-top: 16px;
  }

  .gnb__link {
    font-size: 16px;
  }

  .side-nav__util {
    margin-top: 24px;
    padding-top: 24px;
    gap: 8px;
  }

  .side-nav__util a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .footer-quick__inner {
    grid-template-columns: 1fr;
  }

  .footer-drop {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .footer-drop:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .page-container,
  .page-container.is-sidebar-folded {
    padding-left: 0;
    transition: none;
  }

  .side-nav,
  .side-nav.is-folded {
    left: 0;
    width: min(300px, 86vw);
    height: calc(100dvh - var(--top-banner-h));
    transform: translateX(-100%);
    transition: transform 0.28s ease, top 0.35s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  .side-nav.is-open {
    transform: translateX(0);
    overflow: visible;
  }

  .side-nav__close {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 210;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: var(--side-nav-bg);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .side-nav.is-open .side-nav__close {
    display: inline-flex;
  }

  .side-nav__inner {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .side-nav__logo {
    max-height: none;
    margin-bottom: 24px;
  }

  .side-nav__logo img {
    width: 120px;
    max-width: 120px;
    margin-bottom: 8px;
  }

  .side-nav__dept {
    font-size: 17px;
  }

  .side-nav__nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 8px 0;
  }

  .side-nav__util {
    flex-shrink: 0;
    margin-top: 18px;
    padding: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    align-items: stretch;
    justify-items: stretch;
  }

  .side-nav__util::before {
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .side-nav__util a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    gap: 0;
    color: #fff;
  }

  .side-nav__util a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  .side-nav__util a span {
    text-align: center;
    line-height: 1.35;
    word-break: keep-all;
  }

  .side-nav__util .lang-box {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .side-nav__util .lang-box__trigger {
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
  }

  .side-nav__util .lang-box__trigger:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  .side-nav__util .lang-box__trigger:hover .lang-box__arrow {
    color: #fff;
  }

  .side-nav__util .lang-box__menu {
    top: auto;
    bottom: calc(100% + 8px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .side-nav.is-folded .side-nav__logo {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
  }

  .side-nav.is-folded .side-nav__fold-mark,
  .side-nav.is-folded .side-nav__fold-bg,
  .side-nav.is-folded .side-nav__scroll-hint {
    display: none !important;
  }

  .side-nav.is-folded .side-nav__nav,
  .side-nav.is-folded .side-nav__util {
    max-height: 720px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-backdrop[hidden] {
    display: none;
  }

  .gnb-backdrop {
    display: none !important;
  }

  .gnb-panel-root {
    display: none !important;
  }

  .gnb__link {
    text-align: left;
    font-size: 17px;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .gnb__link-text {
    flex: 0 1 auto;
    min-width: 0;
  }

  .gnb__link-icon--toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    font-size: 16px;
    opacity: 0.9;
  }

  .gnb__link-icon--toggle .fa-angle-up {
    display: none;
  }

  .gnb__link:has(.gnb__link-icon--external) {
    justify-content: flex-start;
  }

  .gnb__item.is-open > .gnb__link .gnb__link-icon--toggle .fa-angle-down {
    display: none;
  }

  .gnb__item.is-open > .gnb__link .gnb__link-icon--toggle .fa-angle-up {
    display: inline-block;
  }

  .gnb__item + .gnb__item {
    margin-top: 18px;
  }

  .gnb__panel {
    position: static;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
    max-height: none;
    margin-top: 10px;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
            max-height 0.32s ease,
            visibility 0.28s ease,
            margin 0.28s ease;
  }

  .gnb__item.is-open > .gnb__panel,
  .gnb__panel.is-open {
    visibility: visible;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
  }

  .gnb__panel-inner {
    display: block;
    justify-content: flex-start;
    min-height: 0;
    height: auto;
    padding: 20px 12px 18px;
    max-height: none;
    overflow: visible;
  }

  .gnb__panel-title {
    display: none;
  }

  .gnb__depth2 {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 14px;
  }

  .gnb__depth2-item:nth-child(2n) {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .gnb__depth2-link {
    color: #fff;
    font-size: 15px;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .gnb__depth2-link:hover {
    color: #fff;
    opacity: 0.85;
  }

  .gnb__depth3-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    padding-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .gnb__depth3-link:hover {
    color: #fff;
  }

  .gnb__depth-link-text {
    flex: 0 1 auto;
    min-width: 0;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--inner-pad-x);
    background: var(--side-nav-bg);
    color: #fff;
  }

  .mobile-topbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #fff;
  }

  .mobile-topbar__logo {
    flex-shrink: 0;
    width: auto;
    height: 32px;
    object-fit: contain;
  }

  .mobile-topbar__divider {
    flex-shrink: 0;
    width: 1px;
    height: 18px;
    background: #fff;
  }

  .mobile-topbar__dept {
    font-family: "SUIT", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-topbar__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    font-size: 18px;
  }

  .hero,
  .hero-swiper {
    height: clamp(280px, 52vw, 450px) !important;
    max-height: none;
  }

  .hero__caption {
    max-width: calc(100% - var(--inner-pad-x) * 2);
    bottom: 32px;
  }

  .hero__caption-line {
    font-size: 14px;
  }

  .hero-swiper__progress {
    width: min(250px, 55vw);
  }

  .section--01 {
    padding: 56px 0 64px;
  }

  .section--notice-board {
    padding: 56px 0 64px;
  }

  .notice-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--02,
  .section--03 {
    padding-bottom: 64px;
  }

  .board-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .board-tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .board-layout {
    gap: 24px;
  }

  .board-layout--empty {
    min-height: 240px;
    font-size: 15px;
  }

  .board-feature__body {
    min-height: 140px;
    padding: 28px 24px;
  }

  .board-list__link {
    align-items: flex-start;
    padding: 18px 0;
  }

  .intro-card {
    padding: 28px 24px 24px;
  }

  .intro-card__icon {
    left: 24px;
    bottom: 24px;
    height: 56px;
  }

  .intro-card__action {
    right: 24px;
    bottom: 24px;
  }

  .intro-card__content {
    padding: 28px 24px 24px;
  }

  .sns-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sns-section__feed {
    padding: 0 8px;
  }

  .sns-card--empty {
    min-height: 220px;
    font-size: 15px;
  }

  .sns-section__nav {
    width: 38px;
    height: 38px;
    font-size: 14px;
    top: 120px;
  }

  .sns-section__nav--prev {
    left: 0;
  }

  .sns-section__nav--next {
    right: 0;
  }

  .footer-main {
    padding-bottom: 32px;
  }
}

@media (max-width: 600px) {
  :root {
    --inner-pad-x: 16px;
  }

  .mobile-topbar__logo {
    height: 28px;
  }

  .mobile-topbar__divider {
    height: 16px;
  }

  .mobile-topbar__dept {
    font-size: 15px;
  }

  .hero__caption-main {
    font-size: 22px;
  }

  .board-section__title {
    font-size: 26px;
  }

  .section--notice-board {
    padding: 48px 0 56px;
  }

  .notice-board__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notice-card {
    min-height: 120px;
    padding: 20px 18px 18px;
  }

  .notice-card__title {
    font-size: 16px;
  }

  .board-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .board-tabs::-webkit-scrollbar {
    display: none;
  }

  .board-tabs__btn {
    flex-shrink: 0;
    min-width: 64px;
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .board-tabs__more {
    flex-shrink: 0;
  }

  .board-feature__body {
    min-height: 80px;
    padding: 16px;
  }

  .board-feature__title {
    font-size: 18px;
  }

  .board-list__thumb {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .board-list__link {
    gap: 16px;
  }

  .board-list__title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .board-list__desc {
    font-size: 14px;
  }

  .intro-section__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .intro-card--light,
  .intro-card--visual {
    grid-column: auto;
    width: 100%;
  }

  .intro-card--light {
    min-height: 200px;
  }

  .intro-card--visual {
    height: auto;
    aspect-ratio: 820 / 489;
  }

  .intro-card__title {
    font-size: 26px;
  }

  .intro-card__icon {
    height: 64px;
  }

  .sns-section__title {
    font-size: 26px;
  }

  .sns-section__channels {
    gap: 8px;
  }

  .sns-section__channel {
    width: 42px;
    height: 42px;
  }

  .sns-section__nav {
    display: none;
  }

  .sns-card__title {
    font-size: 16px;
  }

  .footer-links {
    font-size: 14px;
  }

  .footer-address,
  .footer-copy {
    font-size: 13px;
  }
}

/* AOS */
html body [data-aos^="fade"][data-aos]:not(.aos-animate) {
  opacity: 0;
  transform: translate3d(0, 0, 0) !important;
}

html body [data-aos^="fade"][data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) !important;
}

/* Google Translate */
body {
  top: 0 !important;
}

iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
}

body > .skiptranslate {
  display: none !important;
}

/* ----- Top Banner (상단 공지) ----- */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 260;
  width: 100%;
  background: #dfdfdf;
  color: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-banner[hidden] {
  display: none !important;
}

.top-banner.is-closing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-banner__inner {
  position: relative;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 10px 52px 30px;
  box-sizing: border-box;
  height: 130px;
}

.top-banner__swiper {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.top-banner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 0 0 6px;
  box-sizing: border-box;
  height: 100%;
}

.top-banner__content {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  height: 100%;
}

.top-banner__content a {
  color: #fff;
}

.top-banner__content p { width: 100%; height: 100%;}

.top-banner__content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.top-banner__pagination {
  position: static !important;
  margin-top: 6px;
}

.top-banner__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.top-banner__pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.top-banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.top-banner__nav--prev {
  left: 12px;
}

.top-banner__nav--next {
  right: 12px;
}

.top-banner__actions {
  position: absolute;
  right: 16px;
  bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  z-index: 9;
}

.top-banner__today {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
  color: #000;
}

.top-banner__today input {
  margin: 0;
}

.top-banner__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.top-banner__close img {
  display: block;
  width: 17px;
  height: 17px;
  filter: brightness(0);
}

.top-banner.is-single .top-banner__nav,
.top-banner.is-single .top-banner__pagination {
  display: none;
}

@media (max-width: 900px) {
  .top-banner__inner {
    padding: 0 40px 32px;
  }

  .top-banner__slide {
    min-height: 104px;
    padding-top: 12px;
  }

  .top-banner__nav {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .top-banner__nav--prev {
    left: 8px;
  }

  .top-banner__nav--next {
    right: 8px;
  }

  .top-banner__actions {
    right: 10px;
    bottom: 6px;
    font-size: 12px;
  }
}

/* 레이어팝업 */
.layerPopupBox .popup_close label {
  color: #fff;
}

@media (max-width: 900px) {
  .layerPopupBox {
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    width: 580px !important;
    max-width: 100%;
    height: auto !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 600px) {
  .layerPopupBox {
    width: 80% !important;
  }
}

@media (max-width: 430px) {
  .layerPopupBox {
    width: 90% !important;
  }
}