@charset "utf-8";
@import url(fonts/pretendard.css);
@import url(font.awesome.css);


@font-face {
  font-family: "Arita Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/AritaBuriKR-Bold.woff) format("woff");
}


:root {
  --side-padding: 60px;
  --primary: #116e37;
  --font-title: "Arita Bold", serif;
  --font-body: "Pretendard", sans-serif;
  --gnb-mega-panel-height: 400px;
  --gnb-mega-intro-width: 380px;
  --gnb-mega-col-min: 220px;
  --gnb-bar-height: 90px;
  --z-gnb-panel: 0;
  --z-gnb-submenu: 1;
  --z-header-nav: 200;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-width: 0;
  overflow-x: hidden;
  overflow-y: visible;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Titles: Arita Bold / Content: Pretendard (body default) */
.hero__slogan-sub,
.hero__slogan-main,
.section-title__kwu,
.section-title__main,
.news-feature__title,
.news-list__title,
.resources__title,
.info-box__title,
.inquiry__title {
  font-family: var(--font-title);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ----- Header / GNB ----- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header-nav);
  color: #ffffff;
  overflow: visible;
  background: rgba(0, 0, 0, 0.6);
}

.header__inner.gnb-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: var(--gnb-bar-height);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background-color 0.26s ease, border-color 0.26s ease;
}

.header__logo {
  margin: 0;
  margin-right: auto;
  flex-shrink: 0;
  align-self: center;
}

.header__logo a {
  display: block;
}

.header__logo img {
  width: auto;
  height: 34px;
  transition: filter 0.22s ease;
}

.header__gnb.gnb {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: min(100%, 980px);
  min-width: 0;
  min-height: var(--gnb-bar-height);
  margin: 0;
  padding: 0;
}

.gnb-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  overflow: visible;
}

.gnb-item--wide {
  flex: 1.7 1 0;
}

.gnb-item--wide .gnb-link i {
  margin-left: 6px;
  font-size: 0.75em;
}

.gnb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: var(--gnb-bar-height);
  height: 100%;
  padding: 0 8px;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.04em;
  text-align: center;
  transition: color 0.22s ease;
}

.gnb-item:first-child  .gnb-submenu {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.gnb-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: var(--z-gnb-submenu);
  width: 100%;
  min-width: 0;
  height: var(--gnb-mega-panel-height);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  text-align: center;
  transform: none;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}



.gnb-submenu > li {
  display: block;
}

.gnb-submenu > li:first-child {
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gnb-submenu > li > a {
  display: block;
  padding: 8px 14px;
  text-align: center;
  color: #111;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-all;
}

.gnb-submenu > li > a:hover {
  color: var(--primary);
}

/* GNB desktop mega menu interactions */
@media (min-width: 1241px) {
  .gnb-mobile-util {
    display: none !important;
  }

  .gnb-wrap::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: var(--z-gnb-panel);
    width: 100vw;
    height: 0;
    box-sizing: border-box;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: height 0.24s ease, opacity 0.24s ease, visibility 0s linear 0.24s;
  }

  .gnb-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: calc(var(--z-gnb-submenu) + 1);
  }

  .gnb-item:hover .gnb-link,
  .gnb-item:focus-within .gnb-link {
    color: var(--primary);
  }

  .gnb-item:hover .gnb-submenu,
  .gnb-item:focus-within .gnb-submenu,
  .gnb-item:has(.gnb-submenu a:hover) .gnb-submenu,
  .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-submenu {
    background: transparent;
  }

  .gnb-wrap:has(.gnb-item:hover > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:focus-within > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu > li)::after {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }

  .gnb-wrap:has(.gnb:hover) .gnb-item:not(:hover):not(:focus-within):not(:has(.gnb-submenu a:hover)):not(:has(.gnb-submenu a:focus-visible)) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:not(:hover):not(:focus-within):not(:has(.gnb-submenu a:hover)):not(:has(.gnb-submenu a:focus-visible)) > .gnb-submenu {
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .gnb-wrap:has(.gnb:hover) .gnb-item:hover > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:focus-within > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:hover > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:focus-within > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu {
    position: fixed;
    top: var(--gnb-bar-height);
    left: 0;
    right: 0;
    z-index: calc(var(--z-gnb-submenu) + 2);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    width: 100vw;
    max-width: none;
    min-width: 0;
    min-height: auto;
    height: auto;
    margin: 0;
    padding: 0 max(var(--side-padding)) 0 var(--gnb-mega-intro-width);
    box-sizing: border-box;
    border: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    background: #ffffff;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease, visibility 0s linear 0s;
    transition-delay: 0s, 0s;
  }

  .gnb-item:not(:has(.gnb-submenu > li)):hover > .gnb-submenu,
  .gnb-item:not(:has(.gnb-submenu > li)):focus-within > .gnb-submenu {
    display: none;
  }

  .gnb-item:first-child .gnb-submenu {
    border-left: 0;
  }

  .gnb-submenu__title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: var(--gnb-mega-intro-width);
    min-width: var(--gnb-mega-intro-width);
    max-width: var(--gnb-mega-intro-width);
    margin: 0;
    padding: 32px 28px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 0;
    background: #f7f7f7;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: #1a1a1a;
    word-break: keep-all;
    pointer-events: none;
    box-sizing: border-box;
    overflow: hidden;
  }

  .gnb-submenu__title-text {
    position: relative;
    z-index: 1;
  }

  .gnb-submenu__symbol {
    position: absolute;
    left: 20%;
    top: 20%;
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.14;
    pointer-events: none;
    user-select: none;
  }

  .gnb-submenu > li:not(.gnb-submenu__title) {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-width: var(--gnb-mega-col-min);
    max-width: 100%;
    width: max-content;
    padding: 28px 15px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* 애매한 데스크톱 구간: 2뎁스 컬럼 동일 너비 */
  @media (max-width: 1679px) {
    .gnb-submenu > li:not(.gnb-submenu__title) {
      flex: 1 1 var(--gnb-mega-col-min);
      width: auto;
      min-width: var(--gnb-mega-col-min);
      max-width: 100%;
    }

    .gnb-item:nth-child(4) .gnb-submenu > li:nth-child(2) {
      flex: 2 1 420px;
    }

    .gnb-item:nth-child(4) .gnb-submenu > li:nth-child(3) {
      flex: 1 1 var(--gnb-mega-col-min);
    }
    .gnb-submenu__symbol { top: auto; bottom: -50px;}
  }

  .gnb-submenu > li:not(.gnb-submenu__title) > a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 14px;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    color: #1a1a1a;
    word-break: keep-all;
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .gnb-submenu > li:not(.gnb-submenu__title):hover > a,
  .gnb-submenu > li:not(.gnb-submenu__title):focus-within > a {
    color: #ffffff;
    background: var(--primary);
  }

  .gnb-submenu > li:not(.gnb-submenu__title):hover > a::after,
  .gnb-submenu > li:not(.gnb-submenu__title):focus-within > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 14px 14px;
    border-color: transparent transparent #ffffff transparent;
    pointer-events: none;
  }

  .gnb-submenu-depth3 {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .gnb-submenu-depth3 a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 3px 0;
    margin: 0px 15px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    color: #555555;
    word-break: keep-all;
    letter-spacing: -0.04em;
    transition: color 0.2s ease;
  }

  .gnb-submenu-depth3 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
  }

  .gnb-submenu-depth3 a:hover {
    color: var(--primary);
  }

  .gnb-submenu-depth3 a:hover::after {
    width: 100%;
  }

  /* Education: many department links */
  .gnb-item:nth-child(4) .gnb-submenu > li:nth-child(2) {
    flex: 2 1 420px;
    min-width: 420px;
    max-width: 100%;
    max-height: 478px;
    overflow-y: auto;
  }

  .gnb-item:nth-child(4) .gnb-submenu > li:nth-child(3) {
    flex: 1 1 var(--gnb-mega-col-min);
  }

  .gnb-item:nth-child(4) .gnb-submenu-depth3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
  }

  .gnb-item:nth-child(4) .gnb-submenu-depth3 > li {
    flex: 0 1 calc(50% - 6px);
    min-width: 0;
    max-width: 100%;
  }

  .gnb-item:nth-child(4) .gnb-submenu-depth3 a {
    white-space: normal;
  }

  .gnb-item:nth-child(4):hover > .gnb-submenu,
  .gnb-item:nth-child(4):focus-within > .gnb-submenu,
  .gnb-item:nth-child(4):has(.gnb-submenu a:hover) > .gnb-submenu,
  .gnb-item:nth-child(4):has(.gnb-submenu a:focus-visible) > .gnb-submenu {
    min-height: 480px;
  }

  .gnb-wrap:has(.gnb-item:nth-child(4):hover > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:nth-child(4):focus-within > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:nth-child(4):has(.gnb-submenu a:hover) > .gnb-submenu > li)::after,
  .gnb-wrap:has(.gnb-item:nth-child(4):has(.gnb-submenu a:focus-visible) > .gnb-submenu > li)::after {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }

  .gnb-item:hover::after,
  .gnb-item:focus-within::after,
  .gnb-item:has(.gnb-submenu a:hover)::after,
  .gnb-item:has(.gnb-submenu a:focus-visible)::after {
    opacity: 1;
  }

  .header:has(.gnb:hover) .gnb-wrap,
  .header:has(.gnb:focus-within) .gnb-wrap {
    background: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.12);
  }

  .header:has(.gnb:hover) .gnb-link,
  .header:has(.gnb:focus-within) .gnb-link,
  .header:has(.gnb:hover) .header__search,
  .header:has(.gnb:focus-within) .header__search,
  .header:has(.gnb:hover) .header__util-btn,
  .header:has(.gnb:focus-within) .header__util-btn {
    color: #000;
  }

  .header:has(.gnb:hover) .header__util-btn--login,
  .header:has(.gnb:focus-within) .header__util-btn--login {
    background: rgba(0, 0, 0, 0.08);
  }

  .header:has(.gnb:hover) .header__util-btn--home,
  .header:has(.gnb:focus-within) .header__util-btn--home {
    border-color: rgba(0, 0, 0, 0.35);
  }

  .header:has(.gnb:hover) .gnb-item:hover .gnb-link,
  .header:has(.gnb:focus-within) .gnb-item:focus-within .gnb-link,
  .header:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
  .header:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
  .header:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
  .header:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
    color: var(--primary);
  }

  .header:has(.gnb:hover) .header__logo img,
  .header:has(.gnb:focus-within) .header__logo img {
    filter: brightness(0);
  }

  .header:has(.gnb:hover) .menu-btn__line,
  .header:has(.gnb:focus-within) .menu-btn__line {
    background: #000;
  }
}

.header.is-nav-open .gnb-wrap {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.header.is-nav-open .gnb-link,
.header.is-nav-open .header__search,
.header.is-nav-open .header__util-btn {
  color: #000;
}

.header.is-nav-open .header__util-btn--login {
  background: rgba(0, 0, 0, 0.08);
}

.header.is-nav-open .header__util-btn--home {
  border-color: rgba(0, 0, 0, 0.35);
}

.header.is-nav-open .gnb-item:hover .gnb-link,
.header.is-nav-open .gnb-item:focus-within .gnb-link {
  color: var(--primary);
}

.header.is-nav-open .header__logo img {
  filter: brightness(0);
}

.header.is-nav-open .menu-btn__line,
.header.is-gnb-scrolled .menu-btn__line {
  background: #000;
}

.header__util {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

.header__util-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.22s ease;
}

.header__util-btn i {
  font-size: 12px;
}

.header__util-btn--login {
  background: rgba(0, 0, 0, 0.35);
}

.header__util-btn--login:hover {
  background: rgba(0, 0, 0, 0.5);
}

.header__util-btn--home {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.header__util-btn--home:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gnb-mobile-util {
  display: none;
}

.gnb-mobile-util__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gnb-mobile-util__list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 0;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease;
}

.gnb-mobile-util__list li:last-child a {
  border-bottom: none;
}

.gnb-mobile-util__list a:hover {
  color: var(--primary);
}

.gnb-mobile-util__list a i {
  width: 1rem;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #ffffff;
  transition: color 0.22s ease, opacity 0.2s ease;
}

.header__search:hover {
  opacity: 0.75;
}

.header__menu.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.menu-btn__line {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: background-color 0.22s ease, transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

.menu-btn__line:nth-child(2) {
  width: 14px;
}

.gnb-backdrop {
  display: none;
}

body.is-nav-open,
html.is-nav-open {
  overflow: hidden;
}

body.is-nav-open {
  touch-action: none;
}

@media (min-width: 1241px) {
  .header.is-gnb-scrolled {
    position: fixed;
  }

  .header.is-gnb-scrolled .gnb-wrap {
    background: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  }

  .header.is-gnb-scrolled .gnb-link,
  .header.is-gnb-scrolled .header__search,
  .header.is-gnb-scrolled .header__util-btn {
    color: #000;
  }

  .header.is-gnb-scrolled .header__util-btn--login {
    background: rgba(0, 0, 0, 0.08);
  }

  .header.is-gnb-scrolled .header__util-btn--home {
    border-color: rgba(0, 0, 0, 0.35);
  }

  .header.is-gnb-scrolled .gnb-item:hover .gnb-link,
  .header.is-gnb-scrolled .gnb-item:focus-within .gnb-link {
    color: var(--primary);
  }

  .header.is-gnb-scrolled .header__logo img {
    filter: brightness(0);
  }

  .header.is-nav-open .gnb-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-header-nav) - 1);
    background: rgba(0, 0, 0, 0.45);
  }

  .gnb-wrap.gnb-mega-force-closed::after {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .gnb-wrap.gnb-mega-force-closed .gnb-submenu {
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
  }
}

/* 1920px 이상: 메가메뉴(1뎁스 타이틀 포함) 가운데 정렬, 흰 배경은 전체 너비 */
@media (min-width: 1920px) {
  .gnb-wrap:has(.gnb:hover) .gnb-item:not(:hover):not(:focus-within):not(:has(.gnb-submenu a:hover)):not(:has(.gnb-submenu a:focus-visible)) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:not(:hover):not(:focus-within):not(:has(.gnb-submenu a:hover)):not(:has(.gnb-submenu a:focus-visible)) > .gnb-submenu {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 1920px;
    transform: translateX(-50%);
  }

  .gnb-wrap:has(.gnb:hover) .gnb-item:hover > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:focus-within > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:hover > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:focus-within > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 1920px;
    border-top: 0;
    border-bottom: 0;
    background: transparent;
    transform: translateX(-50%);
  }

  .gnb-wrap:has(.gnb:hover) .gnb-item:hover > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:hover) .gnb-item:focus-within > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:hover > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:focus-within > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) > .gnb-submenu::before,
  .gnb-wrap:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) > .gnb-submenu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .gnb-wrap.gnb-mega-force-closed .gnb-submenu {
    left: 50% !important;
    right: auto !important;
    width: 100% !important;
    max-width: 1920px !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 1400px) {
  .header__gnb.gnb {
    max-width: min(100%, 760px);
  }

  .gnb-link {
    font-size: 16px;
    padding: 0 4px;
  }

  .header__util-btn {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    gap: 6px;
  }

  .header__util-btn i {
    font-size: 11px;
  }
}

@media (max-width: 1240px) {
  .header__menu.menu-btn {
    display: inline-flex;
  }

  .header__util-btn {
    display: none;
  }

  .gnb-submenu__title {
    display: none !important;
  }

  /* PC 메가메뉴 잔여효과 차단 */
  .gnb-wrap::after {
    display: none !important;
    content: none !important;
  }

  .gnb-item::after {
    display: none !important;
    content: none !important;
  }

  .gnb-wrap:has(.gnb:hover) .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-submenu,
  .gnb-item:hover .gnb-submenu,
  .gnb-item:focus-within .gnb-submenu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }

  .header__inner.gnb-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header-nav);
    max-width: none;
    margin: 0;
    padding: 0 max(var(--side-padding), env(safe-area-inset-right, 0)) 0 max(var(--side-padding), env(safe-area-inset-left, 0));
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
  }

  .header.is-gnb-scrolled .gnb-wrap,
  .header.is-nav-open .gnb-wrap {
    background-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  }

  .header.is-gnb-scrolled .gnb-link,
  .header.is-gnb-scrolled .header__search,
  .header.is-nav-open .gnb-link,
  .header.is-nav-open .header__search {
    color: #111;
  }

  .header.is-gnb-scrolled .header__logo img,
  .header.is-nav-open .header__logo img {
    filter: brightness(0);
  }

  .header.is-gnb-scrolled .menu-btn__line,
  .header.is-nav-open .menu-btn__line {
    background: #000;
  }

  .header__gnb.gnb {
    display: flex;
    position: fixed;
    top: var(--gnb-bar-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-header-nav) - 1);
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }

  .header.is-nav-open .header__gnb.gnb {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s, 0s;
  }

  .gnb-item {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .gnb-item--wide {
    flex: 0 0 auto;
  }

  .gnb-item::after {
    display: none;
  }

  .gnb-link {
    justify-content: flex-start;
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    padding: 0.875rem 1.25rem;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    white-space: normal;
    line-height: 1.35;
    text-align: left;
  }

  .gnb-item:has(.gnb-submenu > li) > .gnb-link {
    position: relative;
    padding-right: 3rem;
  }

  .gnb-item:has(.gnb-submenu > li) > .gnb-link::after {
    content: "";
    position: absolute;
    right: 1.375rem;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  .gnb-item.is-open > .gnb-link::after {
    transform: rotate(225deg);
    margin-top: -2px;
  }

  .gnb-submenu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    display: none;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #f7f7f7;
    text-align: left;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    transition: none;
  }

  .gnb-item.is-open > .gnb-submenu {
    display: block !important;
  }

  .gnb-submenu > li:first-child {
    padding-top: 0.35rem;
  }

  .gnb-submenu > li:last-child {
    padding-bottom: 0.5rem;
  }

  .gnb-submenu > li {
    border-bottom: 0;
  }

  /* 2Depth */
  .gnb-submenu > li > a {
    padding: 0.7rem 1.25rem 0.35rem 1.5rem;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #111;
  }

  .gnb-submenu > li:not(:has(.gnb-submenu-depth3)) > a {
    padding: 0.7rem 1.25rem 0.7rem 1.5rem;
    font-weight: 600;
    color: #333;
  }

  /* 3Depth — 박스 없이 들여쓰기만 */
  .gnb-submenu-depth3 {
    display: block;
    margin: 0 0 0.45rem;
    padding: 0;
    list-style: none;
    background: transparent;
  }

  .gnb-submenu-depth3 li {
    display: block;
  }

  .gnb-submenu-depth3 a {
    display: block;
    position: relative;
    padding: 0.45rem 1.25rem 0.45rem 2.35rem;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #666;
    word-break: keep-all;
  }

  .gnb-submenu-depth3 a::before {
    content: "";
    position: absolute;
    left: 1.6rem;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: #c4c4c4;
  }

  .gnb-submenu-depth3 a:hover,
  .gnb-submenu-depth3 a:focus-visible {
    color: var(--primary);
    background: transparent;
  }

  .gnb-submenu-depth3 a:hover::before,
  .gnb-submenu-depth3 a:focus-visible::before {
    background: var(--primary);
  }

  .gnb-mobile-util {
    display: block;
    flex-shrink: 0;
    margin-top: auto;
    padding: 0rem 1.25rem ;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
  }

  .header.is-nav-open .menu-btn__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 22px;
  }

  .header.is-nav-open .menu-btn__line:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .header.is-nav-open .menu-btn__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 22px;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  height: 895px;
  overflow: hidden;
  background: #000000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__media img,
.hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  pointer-events: none;
}

.hero__slogan {
  text-align: right;
  color: #ffffff;
}

.hero__slogan-sub {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.hero__slogan-main {
  margin: 0;
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}

.hero__pagination {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.hero__btn:hover {
  opacity: 0.75;
}

.hero__btn--pause {
  font-size: 12px;
  letter-spacing: -2px;
}

.hero__btn--pause.is-playing {
  font-size: 0;
}

.hero__btn--pause.is-playing::before {
  content: "▶";
  font-size: 12px;
  letter-spacing: 0;
}

/* ----- Board (News / Resources) ----- */
.board__inner {
  width: 1510px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.section-head {
  position: relative;
  margin-bottom: 48px;
  text-align: center;
}

.section-title {
  margin: 0;
  line-height: 1.15;
}

.section-title__kwu {
  display: block;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  color: #116e37;
}

.section-title__main {
  display: block;
  font-family: var(--font-title);
  font-size: 45px;
  font-weight: 400;
  color: #000000;
}

.section-more {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.section-more:hover {
  opacity: 0.6;
}

/* News */
.news {
  padding: 80px 0 72px;
}

.news__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.news-feature {
  flex: 0 0 800px;
  width: 800px;
}

.news-feature__link {
  display: block;
}

.news-feature__thumb {
  position: relative;
  width: 800px;
  height: 454px;
  overflow: visible;
}

.news-feature__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  right: 0;
  bottom: -10px;
  padding: 6px 14px;
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: #116e37;
}

.news-feature__title {
  margin: 20px 0 10px;
  font-family: "Pretendard", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-feature__desc {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #777777;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-feature__date {
  display: block;
  margin-top: 48px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #404040;
}

.news-list {
  flex: 1;
  min-width: 0;
}


.news-list__item + .news-list__item {
  border-top: 1px solid #dfdfdf;
}

.news-list__link {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
}

.news-list li:first-child a.news-list__link {
  padding-top: 0;
}
 
.news-list__text {
  flex: 1;
  min-width: 0;
}

.news-list__title {
  margin: 0 0 10px;
  font-family: "Pretendard", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
  color: #404040;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list__desc {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #707070;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list__date {
  display: block;
  margin-top: 25px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: #404040;
}

.news-list__thumb {
  position: relative;
  flex: 0 0 200px;
  width: 200px;
  height: 130px;
  overflow: visible;
  border-radius: 8px;
}

.news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Divider */
.board-divider {
  width: 1510px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto;
  background: #000000;
}

/* Resources */
.resources {
  padding: 80px 0 100px;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  align-items: start;
}

.resources__grid > * {
  min-width: 0;
}

.resources__link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #dfdfdf;
  transition: border-color 0.2s ease;
}

.resources__link:hover {
  border-color: #116e37;
}

.resources__thumb {
  overflow: hidden;
  height: 210px;
}

.resources__thumb img {
  width: auto;
  max-width: inherit;
  object-fit: contain;
  height: 100%;
  margin: 0 auto;
  object-position: center;
}

.resources__title {
  margin: 0 0 5px;
  padding: 10px 16px 0;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.resources__date {
  display: block;
  padding: 0 16px 10px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #999999;
}

/* Empty state (News / Resources) */
.news-empty,
.resources-empty {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  min-height: 300px;
  padding: 56px 24px;
  overflow: hidden;
  border: 1px solid #e7ebe8;
  border-radius: 6px;
 
}

.news-empty::before,
.resources-empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    rgba(17, 110, 55, 0.12) 100%
  );
}

/* 아이콘 뱃지 (order 로 텍스트보다 앞에 배치) */
.news-empty::after,
.resources-empty::after {
  content: "";
  order: -1;
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: rgba(17, 110, 55, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23116e37' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
}

.news-empty__title,
.resources-empty__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: center;
  color: #3f4945;
}

.news-empty__desc,
.resources-empty__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #8d9793;
}

/* ----- Info Boxes (Admission / International) ----- */
.info-boxes {
  display: flex;
  width: 100%;
}

.info-box {
  position: relative;
  flex: 1;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
}

@media (min-width: 1921px) {
  .info-boxes {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.info-box__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.info-box__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.info-box__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 640px;
  padding: 48px 60px;
}

.info-box__title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.info-box__desc {
  margin: 0 0 24px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.info-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.info-pill i {
  font-size: 13px;
}

.info-cards {
  margin-top: 0;
}

.info-cards--stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-cards--grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.info-cards--grid .info-card { flex: 0 0 48%;}
.info-cards--grid .info-card:nth-child(2n) { flex: 0 0 48%;}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

.info-card:hover {
  opacity: 0.88;
}

.info-card--light {
  background: rgba(255, 255, 255, 0.18);
}

.info-card--tall {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.info-card__icon {
  flex: 0 0 28px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.info-card__text {
  flex: 1;
  min-width: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.info-card__arrow {
  flex: 0 0 20px;
  font-size: 16px;
  line-height: 1;
  text-align: right;
  opacity: 0.85;
}

.info-box--international .info-box__desc {
  max-width: 520px;
}

/* ----- Services ----- */
.services {
  padding: 0 0 100px;
  background-color: #efefef;
}

.services__bar {
  height: 4px;
  margin-bottom: 72px;
  background: #116e37;
}

.services .section-head {
  margin-bottom: 40px;
}

.services__desc {
  margin: 16px 0 0;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #585858;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}

.services__item:nth-child(1),
.services__item:nth-child(3),
.services__item:nth-child(6),
.services__item:nth-child(8) {
  background: #f2f2f2;
}

.services__item:nth-child(2),
.services__item:nth-child(4),
.services__item:nth-child(5),
.services__item:nth-child(7) {
  background: #ffffff;
}

.services__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 130px;
  padding: 28px 79px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.2s ease;
  height: 100%;
}

.services__link:hover {
  opacity: 0.75;
}

.services__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.services__icon img {
  width: auto;
  height: 47px;
  object-fit: contain;
}

.services__label {
  flex: 1;
  min-width: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #898989;
  text-align: center;
}

/* ----- Admission Inquiries ----- */
.inquiry {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #282828;
  color: #ffffff;
}

.inquiry__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 480px;
  height: 340px;
  background: url("../images/call-bg.png") no-repeat left 30px;
  opacity: 0.35;
  transform: translateY(-50%);
  pointer-events: none;
}

.inquiry__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1510px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.inquiry__label {
  margin: 0 0 12px;
  font-family: "Pretendard", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  text-transform: uppercase;
}

.inquiry__title {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.inquiry__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 24px;
  margin-bottom: 16px;
}

.inquiry__phone {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.inquiry__number,
.inquiry__track {
  background: linear-gradient(90deg, #ffd1fc 0%, #fad0c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inquiry__number {
  font-family: "Pretendard", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}

.inquiry__track {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.inquiry__divider {
  font-family: "Pretendard", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

.inquiry__hours {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* ----- Footer ----- */
.footer {
  padding: 48px 0 56px;
  background: #ffffff;
}

.footer__inner {
  width: 1510px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  width: auto;
  height: 34px;
}

.footer__copy,
.footer__addr {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #898989;
  text-transform: uppercase;
}

.footer__addr {
  margin-top: 4px;
}

/* ----- Responsive ----- */

@media (max-width: 1510px) {
  .header__inner.gnb-wrap { padding: 0px 30px;}
  .news-feature,
  .news-feature__thumb {
    flex: 1 1 auto;
    width: 100%;
    max-width: 800px;
  }

  .news-feature__thumb {
    height: auto;
    aspect-ratio: 800 / 454;
  }
}

@media (max-width: 1240px) {
  :root {
    --side-padding: 32px;
  }

  .header__inner.gnb-wrap {
    padding: 0 var(--side-padding);
  }

  .hero {
    height: 640px;
  }

  .hero__content {
    right: var(--side-padding);
    bottom: 40px;
  }

  .hero__slogan-sub {
    font-size: 24px;
  }

  .hero__slogan-main {
    font-size: 36px;
  }

  .news {
    padding: 64px 0 56px;
  }

  .news__body {
    flex-direction: column;
    gap: 40px;
  }

  .news-feature,
  .news-feature__thumb {
    width: 100%;
    max-width: none;
  }

  .resources {
    padding: 64px 0 80px;
  }

  .resources__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-box__content {
    min-height: 520px;
    padding: 40px var(--side-padding);
  }

  .info-box {
    min-height: 520px;
  }

  .services__link {
    padding: 24px 32px;
  }

  .inquiry__inner,
  .footer__inner {
    padding: 0 var(--side-padding);
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 520px;
  }

  .hero__slogan-sub {
    font-size: 20px;
  }

  .hero__slogan-main {
    font-size: 28px;
  }

  .section-head {
    margin-bottom: 32px;
    padding-bottom: 0;
  }

  .section-more {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .section-title__kwu {
    font-size: 30px;
  }

  .section-title__main {
    font-size: 36px;
  }

  .news-list__link {
    gap: 20px;
    padding: 22px 0;
  }

  .news-list__thumb {
    flex: 0 0 160px;
    width: 160px;
    height: 104px;
  }

  .info-boxes {
    flex-direction: column;
  }

  .info-box,
  .info-box__content {
    min-height: auto;
  }

  .info-box__content {
    padding: 48px var(--side-padding);
  }

  .info-box__title {
    font-size: 32px;
  }

  .info-cards--grid .info-card,
  .info-cards--grid .info-card:nth-child(2n) {
    flex: 1 1 calc(50% - 8px);
  }

  .info-card--tall {
    grid-row: auto;
    grid-column: auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__bar {
    margin-bottom: 48px;
  }

  .inquiry {
    height: auto;
    min-height: 280px;
    padding: 48px 0;
  }

  .inquiry__number {
    font-size: 36px;
  }

  .inquiry__track {
    font-size: 18px;
  }

  .inquiry__divider {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 24px;
  }

  .header__util {
    gap: 12px;
  }

  .gnb-mobile-util {
    padding: 0.875rem 1rem 0.375rem;
  }

  .header__inner.gnb-wrap {
    padding: 0 var(--side-padding);
  }

  .hero {
    height: 420px;
  }

  .hero__content {
    align-items: center;
    right: 0;
    left: 0;
    bottom: 32px;
    gap: 16px;
  }

  .hero__slogan {
    text-align: center;
    padding: 0 var(--side-padding);
  }

  .hero__slogan-sub {
    font-size: 16px;
  }

  .hero__slogan-main {
    font-size: 22px;
  }

  .news,
  .resources {
    padding: 48px 0 56px;
  }

  .section-title__kwu {
    font-size: 24px;
  }

  .section-title__main {
    font-size: 28px;
  }

  .section-head {
    margin-bottom: 28px;
    padding-bottom: 0;
  }

  .section-more {
    position: static;
    margin: 20px auto 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .news-feature__title,
  .news-list__title {
    font-size: 18px;
  }

  .news-feature__desc,
  .news-list__desc {
    font-size: 15px;
  }

  .news-list__link {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .news-list {border-top: 1px solid #dfdfdf; padding-top: 20px;}
  .news-list__thumb {
    flex: none;
    width: auto;
    height: auto;
    overflow: visible;
  }

  .news-list__thumb img {
    display: none;
  }

  .news-list__thumb .news-tag {
    position: static;
    display: inline-block;
  }

  .resources__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .news-empty,
  .resources-empty {
    min-height: 220px;
    padding: 40px 16px;
    gap: 8px;
  }

  .news-empty::after,
  .resources-empty::after {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
    background-size: 26px 26px;
  }

  .news-empty__title,
  .resources-empty__title {
    font-size: 16px;
  }

  .news-empty__desc,
  .resources-empty__desc {
    font-size: 13px;
  }

  .resources__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .resources__thumb img {
    height: auto;
    max-height: 200px;
  }

  .info-box__title {
    font-size: 28px;
  }

  .info-box__desc {
    font-size: 16px;
  }

  .info-pills {
    gap: 8px;
  }

  .info-pill {
    padding: 8px 16px;
    font-size: 14px;
  }

  .info-cards--grid {
    flex-direction: column;
  }

  .info-cards--grid .info-card,
  .info-cards--grid .info-card:nth-child(2n) {
    flex: 1 1 auto;
    width: 100%;
  }

  .info-card {
    padding: 18px 20px;
  }

  .info-card__text {
    font-size: 16px;
  }

  .services {
    padding-bottom: 64px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__link {
    justify-content: flex-start;
    min-height: 96px;
    padding: 20px 24px;
    gap: 16px;
  }

  .services__label {
    text-align: left;
    font-size: 16px;
  }

  .inquiry {
    padding: 40px 0;
  }

  .inquiry__label {
    font-size: 14px;
  }

  .inquiry__title {
    font-size: 24px;
  }

  .inquiry__phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .inquiry__divider {
    display: none;
  }

  .inquiry__number {
    font-size: 28px;
  }

  .inquiry__track {
    font-size: 16px;
  }

  .inquiry__hours {
    font-size: 14px;
  }

  .footer {
    padding: 36px 0 44px;
  }
}

@media (max-width: 600px) {
  :root {
    --side-padding: 20px;
  }

  .hero {
    height: 360px;
  }

  .hero__slogan-main {
    font-size: 18px;
  }

  .news-feature__date {
    margin-top: 24px;
  }

  .board-divider {
    height: 1px;
  }
}

@media (max-width: 480px) {
  .header__util {
    gap: 0px;
  }
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}