* {
  box-sizing: border-box;
}

:root {
  --black: #111;
  --text: #1c1c1c;
  --muted: #666;
  --line: #e6e8ec;
  --blue: #1081f9;
  --blue2: #2a8dff;
  --mint: #21ffe5;
  --primary: #145cff;
  --primary-dark: #0c37a8;
  --bg: #fff;
  --page-x: clamp(20px, 4.17vw, 40px);
  --inner: min(1280px, calc(100vw - var(--page-x) - var(--page-x)));
  --footer-inner: min(1280px, calc(100vw - var(--page-x) - var(--page-x)));
  --gutter: calc((100vw - var(--inner)) / 2);
}

html,
body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

[data-subpage-reveal-item] {
  --subpage-reveal-y: 0px;
  transform: translateY(var(--subpage-reveal-y));
  will-change: transform, opacity;
}

.page-title-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 980px;
  height: 980px;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.academy-hero-title,
.business-title,
.coding-hero-copy,
.course-hero-title,
.benefits-title,
.graduate-title,
.job-hero-title,
.kookmin-hero-copy,
.partner-title,
.ready-hero-inner,
.directions-hero h1,
.gallery-hero h1,
.mentor-hero h1,
.notice-hero h1,
.press-hero h1,
.recruit-hero h1,
.reviews-hero h1,
.faq-hero h1,
.voice-hero h1 {
  position: relative;
  z-index: 2;
}

/* 공지사항·보도자료·수강후기·갤러리 공통 페이지네이션이다. 페이지별 간격만 --common-pagination-margin-top으로 조정한다. */
.common-pagination {
  --common-pagination-margin-top: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 473px;
  max-width: 100%;
  height: 40px;
  margin-top: var(--common-pagination-margin-top);
}

.common-page-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.common-page-number {
  width: 40px;
  height: 40px;
  border-radius: 70px;
  color: #18171c;
  font-family: Pretendard;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.45px;
}

.common-page-number.is-active {
  color: #fff;
  background: linear-gradient(90deg, #8b48ff 0%, #7af5fc 100%);
}

.common-page-arrow {
  --common-page-icon-width: 22px;
  --common-page-icon-height: 22px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* first/last도 옆 prev/next와 같은 아이콘 요소를 반복해서 사용한다. */
.common-page-icon {
  display: block;
  flex: 0 0 var(--common-page-icon-width);
  width: var(--common-page-icon-width);
  height: var(--common-page-icon-height);
  background: var(--common-page-icon) center / contain no-repeat;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.common-page-icon + .common-page-icon {
  margin-left: calc(var(--common-page-icon-width) * -0.5);
}

.common-page-arrow:hover .common-page-icon,
.common-page-arrow:focus-visible .common-page-icon {
  opacity: 1;
}

.common-page-first {
  left: 0;
  width: calc(var(--common-page-icon-width) * 1.5);
  --common-page-icon: url("../img/common-pagination-prev.svg");
  gap: 0;
}

.common-page-prev {
  left: 49px;
  --common-page-icon: url("../img/common-pagination-prev.svg");
}

.common-page-next {
  right: 49px;
  --common-page-icon: url("../img/common-pagination-next.svg");
}

.common-page-last {
  right: 0;
  width: calc(var(--common-page-icon-width) * 1.5);
  --common-page-icon: url("../img/common-pagination-next.svg");
  gap: 0;
}

.mobile-only {
  display: none;
}

.wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.gnb {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
}

.brand-name {
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 700;
}

.nav a {
  color: var(--black);
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-panel,
.mobile-nav-panel * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-panel a,
.mobile-nav-panel button,
.mobile-nav-panel img {
  -webkit-user-drag: none;
  touch-action: manipulation;
}

.mobile-nav-title img,
.mobile-nav-sns img {
  pointer-events: none;
}

.gnb .nav-item {
  position: relative;
}

.gnb .nav-item::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 12px;
  content: "";
}

.gnb .nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 60px;
}

.gnb .nav-item:hover > a,
.gnb .nav-item:focus-within > a,
.gnb .nav-item > a.active {
  color: #fff;
  background: rgba(193, 125, 255, 0.5);
}

.gnb .nav-sub {
  position: absolute;
  left: 50%;
  top: 56px;
  z-index: 30;
  display: none;
  flex-direction: column;
  min-width: 137px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 23, 28, 0.12);
  transform: translateX(-50%);
}

.gnb .nav-item:hover .nav-sub,
.gnb .nav-item:focus-within .nav-sub {
  display: flex;
}

.gnb .nav-sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  color: rgba(24, 23, 28, 0.6);
  background: #fff;
  font-family: Pretendard;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.32px;
  white-space: nowrap;
  word-break: keep-all;
}

.gnb .nav-sub a:hover,
.gnb .nav-sub a:focus,
.gnb .nav-sub a[aria-current="page"] {
  color: #4b5fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
}

.main-mobile-menu-btn {
  display: none;
}

.main-gnb {
  height: 108px;
  padding: 30px 40px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.main-brand {
  gap: 14px;
}

.main-gnb .korcham-logo {
  width: 193px;
  height: 35px;
  object-fit: contain;
}

.main-gnb .brand-divider {
  color: #fff;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.main-gnb .dlca-logo {
  width: 107px;
  height: 41px;
  object-fit: contain;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 32px;
  gap: 20px;
  width: 600px; /* hgw20260729 */
  margin-left: 0;
  font-family: Pretendard;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
  transform: translateX(-50%);
}

.main-nav .nav-item > a {
  color: #fff;
}

body.main-header-dark:not(.menu-open) .main-gnb .main-nav .nav-item > a,
body.main-header-dark:not(.menu-open) .main-gnb .main-nav > a,
body.main-header-dark:not(.menu-open) .main-gnb .brand-divider {
  color: #18171c;
}

body.main-header-dark:not(.menu-open) .main-header-actions img {
  filter: brightness(0);
}

.main-header-actions {
  position: absolute;
  right: 40px;
  top: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 328px;
  height: 44px;
}

.main-header-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.main-header-actions img {
  width: auto;
  height: auto;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}

.main-header-actions img[src$="main-header-icon2.svg"] {
  width: 34.5px;
  height: auto;
  max-height: none;
}

.menu-btn i,
.menu-btn::before,
.menu-btn::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  content: "";
}

.menu-btn i {
  top: 21px;
}

.menu-btn::before {
  top: 14px;
}

.menu-btn::after {
  top: 28px;
}

.footer.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 306px;
  padding: 80px 0 62px;
  border-top-left-radius: 160px;
  border-top-right-radius: 160px;
  color: #fff;
  background: #788cff;
}

.footer.footer .footer-inner.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: var(--footer-inner);
  margin: 0;
  padding: 0;
}

.footer.footer .footer-top.footer-top,
.footer.footer .footer-bottom.footer-bottom {
  display: flex;
  width: 100%;
}

.footer.footer .footer-top.footer-top {
  align-items: center;
  gap: 82px;
}

.footer.footer .footer-brand.footer-brand,
.footer.footer .footer-links.footer-links,
.footer.footer .footer-sns.footer-sns {
  display: flex;
  align-items: center;
}

.footer.footer .footer-brand.footer-brand {
  gap: 22px;
}

.footer.footer .footer-brand img:first-child {
  width: 242px;
  height: 44px;
}

.footer.footer .footer-brand img:last-of-type {
  width: 127px;
  height: 48px;
}

.footer.footer .footer-links.footer-links {
  gap: 32px;
  font-family: Pretendard;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.045px;
}

.footer.footer .footer-bottom.footer-bottom {
  align-items: flex-end;
  justify-content: space-between;
}

.footer.footer .footer-bottom address {
  display: flex;
  flex-direction: column;
  width: auto;
  gap: 9px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-family: Pretendard;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.045px;
}

.footer.footer .footer-bottom address span {
  white-space: nowrap;
}

.footer.footer .footer-address-line {
  width: 100%;
}

.footer.footer .footer-address-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 6px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(2) > span:first-child {
  min-width: 254px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(3) > span:first-child {
  min-width: 181px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(2) i {
  margin-left: 36px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(2) i + span {
  margin-left: 35px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(3) i {
  margin-left: 35px;
}

.footer.footer .footer-bottom address > .footer-address-row:nth-of-type(3) i + span {
  margin-left: 34px;
}

.footer.footer .footer-address-row i {
  display: block;
  width: 0;
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.footer.footer .footer-sns.footer-sns {
  gap: 19px;
}

.footer.footer .footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer.footer .footer-sns img {
  width: 34px;
  max-height: 33px;
}

.common-footer-logo-mobile {
  display: none;
}

.footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1240px) {
  :root {
    --page-x: clamp(20px, calc(13.69px + 1.62vw), 40px);
    --mobile-menu-btn-size: clamp(44px, calc(67.34px - 1.88vw), 60px);
    --mobile-menu-line-width: clamp(18px, calc(19.46px - 0.12vw), 19px);
    --mobile-menu-line-height: 3px;
    --mobile-menu-line-left: calc((var(--mobile-menu-btn-size) - var(--mobile-menu-line-width)) / 2);
    --mobile-menu-line-top-start: clamp(14px, calc(22.75px - 0.71vw), 20px);
    --mobile-menu-line-top-mid: calc((var(--mobile-menu-btn-size) - var(--mobile-menu-line-height)) / 2);
    --mobile-menu-line-top-end: calc((var(--mobile-menu-line-top-mid) * 2) - var(--mobile-menu-line-top-start));
    --mobile-menu-panel-top: clamp(122px, calc(109.15px + 3.29vw), 150px);
    --mobile-menu-panel-x: clamp(24px, calc(-1.69px + 6.59vw), 80px);
    --mobile-menu-title-height: clamp(76px, calc(66.82px + 2.35vw), 96px);
    --mobile-menu-title-size: clamp(20px, calc(15.41px + 1.18vw), 30px);
    --mobile-menu-title-icon: clamp(24px, calc(20.33px + 0.94vw), 32px);
    --mobile-menu-sub-padding-bottom: clamp(16px, calc(12.33px + 0.94vw), 24px);
    --mobile-menu-sub-link-height: clamp(46px, calc(41.41px + 1.18vw), 56px);
    --mobile-menu-sub-size: clamp(14px, calc(12.16px + 0.47vw), 18px);
    --mobile-menu-open-close-icon: clamp(24px, calc(20.33px + 0.94vw), 32px);
  }

  .gnb {
    height: 72px;
    padding: 0 20px;
  }

  .main-gnb {
    height: 72px;
    padding: 16px 20px;
  }

  .gnb .nav {
    display: none !important;
  }

  .main-header-actions {
    display: none;
  }

  .main-gnb .korcham-logo {
    width: 150px;
    height: 27px;
  }

  .main-gnb .dlca-logo {
    width: 88px;
    height: 33px;
  }

  body.menu-open .main-gnb {
    height: 72px;
    padding: 16px 20px;
  }

  body.menu-open .main-brand {
    gap: 14px;
  }

  body.menu-open .main-brand .korcham-logo {
    width: 150px;
    height: 27px;
  }

  body.menu-open .main-brand .brand-divider {
    width: auto;
    height: auto;
    overflow: visible;
    color: #fff;
    font-size: 16px;
    background: transparent;
  }

  body.menu-open .main-brand .dlca-logo {
    width: 88px;
    height: 33px;
  }

  body .gnb.gnb .menu-btn.menu-btn {
    display: block !important;
    position: absolute !important;
    right: 20px !important;
    top: 24px !important;
    z-index: 3 !important;
    flex: 0 0 var(--mobile-menu-btn-size) !important;
    width: var(--mobile-menu-btn-size) !important;
    height: var(--mobile-menu-btn-size) !important;
    margin-left: auto !important;
    border-radius: 50% !important;
    background: #8585ff !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body .gnb.gnb .menu-btn.menu-btn i,
  body .gnb.gnb .menu-btn.menu-btn::before,
  body .gnb.gnb .menu-btn.menu-btn::after {
    left: var(--mobile-menu-line-left) !important;
    display: block !important;
    width: var(--mobile-menu-line-width) !important;
    height: var(--mobile-menu-line-height) !important;
    border-radius: 3px !important;
    background: #fff !important;
  }

  body .gnb.gnb .menu-btn.menu-btn::before {
    top: var(--mobile-menu-line-top-start) !important;
  }

  body .gnb.gnb .menu-btn.menu-btn i {
    top: var(--mobile-menu-line-top-mid) !important;
  }

  body .gnb.gnb .menu-btn.menu-btn::after {
    top: var(--mobile-menu-line-top-end) !important;
  }

  .main-mobile-menu-btn {
    position: absolute;
    right: 20px;
    top: 24px;
    z-index: 4;
    display: block;
    width: var(--mobile-menu-btn-size);
    height: var(--mobile-menu-btn-size);
    border-radius: 50%;
    background: #8585ff;
  }

  .main-mobile-menu-btn i,
  .main-mobile-menu-btn::before,
  .main-mobile-menu-btn::after {
    position: absolute;
    left: var(--mobile-menu-line-left);
    width: var(--mobile-menu-line-width);
    height: var(--mobile-menu-line-height);
    border-radius: 3px;
    background: #fff;
    content: "";
  }

  .main-mobile-menu-btn::before {
    top: var(--mobile-menu-line-top-start);
  }

  .main-mobile-menu-btn i {
    top: var(--mobile-menu-line-top-mid);
  }

  .main-mobile-menu-btn::after {
    top: var(--mobile-menu-line-top-end);
  }

  body.menu-open .main-mobile-menu-btn {
    border-radius: 0;
    background: url("../img/main/main-mobile-menu-close.svg") center / var(--mobile-menu-open-close-icon) var(--mobile-menu-open-close-icon) no-repeat;
  }

  body.menu-open .main-mobile-menu-btn i,
  body.menu-open .main-mobile-menu-btn::before,
  body.menu-open .main-mobile-menu-btn::after {
    display: none;
  }

  .mobile-nav-panel {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: flex;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    padding-top: var(--mobile-menu-panel-top);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(180deg, #d6f1ff 1.24%, #a5c9ff 29.13%, #a58bff 100%);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .mobile-nav-bg {
    position: absolute;
    left: -105px;
    bottom: -201px;
    width: 427px;
    height: 427px;
    opacity: 0.4;
    background: url("../img/common-mobile-menu-glow.png") center / cover no-repeat;
    filter: blur(45px);
    transform: rotate(180deg) scaleY(-1);
    pointer-events: none;
  }

  .mobile-nav-inner {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    padding: 0 var(--mobile-menu-panel-x);
    padding-bottom: calc(env(safe-area-inset-bottom) + 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-group {
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid #bef5ff;
  }

  .mobile-nav-group:last-child {
    border-bottom: 0;
  }

  .mobile-nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--mobile-menu-title-height);
    padding: 0;
    color: #fff;
    font-family: "IBM Plex Sans";
    font-size: var(--mobile-menu-title-size);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mobile-nav-title img {
    width: var(--mobile-menu-title-icon);
    height: var(--mobile-menu-title-icon);
  }

  .mobile-nav-sub {
    display: none;
    flex-direction: column;
    padding: 0 0 var(--mobile-menu-sub-padding-bottom);
  }

  .mobile-nav-group.is-open .mobile-nav-sub {
    display: flex;
  }

  .mobile-nav-sub a {
    display: flex;
    align-items: center;
    height: var(--mobile-menu-sub-link-height);
    color: rgba(255, 255, 255, 0.6);
    font-family: "IBM Plex Sans";
    font-size: var(--mobile-menu-sub-size);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mobile-nav-sub a[aria-current="page"] {
    color: #fff;
  }

  .mobile-nav-sns {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 108px;
    height: 44px;
    margin-top: 128px;
  }

  .mobile-nav-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .mobile-nav-sns img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .mobile-nav-sns a:first-child img {
    width: 33px;
    height: 33px;
  }

  .mobile-nav-sns a:last-child img {
    width: 35px;
    height: 24px;
  }

  body.menu-open .mobile-nav-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .gnb {
    position: fixed;
    z-index: 70;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }

  body.menu-open .gnb .nav {
    display: none !important;
  }

  body.menu-open .gnb.gnb .menu-btn.menu-btn {
    border-radius: 0 !important;
    background: url("../img/main/main-mobile-menu-close.svg") center / var(--mobile-menu-open-close-icon) var(--mobile-menu-open-close-icon) no-repeat !important;
  }

  body.menu-open .gnb.gnb .menu-btn.menu-btn i,
  body.menu-open .gnb.gnb .menu-btn.menu-btn::before,
  body.menu-open .gnb.gnb .menu-btn.menu-btn::after {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .mobile-only {
    display: inline;
  }

  /* 서브페이지 히어로는 태블릿/모바일에서 참여중인기업 페이지처럼 뷰포트 높이를 따른다. */
  .academy-hero,
  .benefits-hero,
  .business-hero,
  .coding-hero,
  .course-hero,
  .directions-hero,
  .faq-hero,
  .gallery-hero,
  .graduate-hero,
  .job-hero,
  .kookmin-hero,
  .mentor-hero,
  .notice-hero,
  .partner-hero,
  .press-hero,
  .ready-hero,
  .recruit-hero,
  .reviews-hero,
  .voice-hero {
    height: 100dvh !important;
    min-height: 100dvh !important;
  }

  .footer.footer .footer-top.footer-top,
  .footer.footer .footer-bottom.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer.footer .footer-bottom address {
    width: 100%;
  }

  .gnb {
    height: 72px;
    padding: 0 20px;
  }

  .main-gnb {
    height: 108px;
    padding: 24px 20px;
  }

  .main-brand {
    gap: 8px;
  }

  .main-gnb .brand-divider {
    width: 1px;
    height: 9px;
    overflow: hidden;
    color: transparent;
    background: rgba(255, 255, 255, 0.9);
  }

  .main-gnb .korcham-logo {
    width: 121px;
    height: 22px;
  }

  .main-gnb .dlca-logo {
    width: 58px;
    height: 22px;
  }

  body.menu-open .main-gnb {
    height: 108px;
    padding: 24px 20px;
  }

  body.menu-open .main-brand {
    gap: 8px;
  }

  body.menu-open .main-brand .korcham-logo {
    width: 121px;
    height: 22px;
  }

  body.menu-open .main-brand .brand-divider {
    width: 1px;
    height: 9px;
    overflow: hidden;
    color: transparent;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
  }

  body.menu-open .main-brand .dlca-logo {
    width: 58px;
    height: 22px;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
    width: var(--mobile-menu-btn-size);
    height: var(--mobile-menu-btn-size);
    opacity: 0;
    pointer-events: none;
  }

  .main-mobile-menu-btn {
    position: absolute;
    right: 20px;
    top: 24px;
    z-index: 4;
    display: block;
    width: var(--mobile-menu-btn-size);
    height: var(--mobile-menu-btn-size);
    border-radius: 50%;
    background: #8585ff;
  }

  .main-mobile-menu-btn i,
  .main-mobile-menu-btn::before,
  .main-mobile-menu-btn::after {
    position: absolute;
    left: var(--mobile-menu-line-left);
    width: var(--mobile-menu-line-width);
    height: var(--mobile-menu-line-height);
    border-radius: 3px;
    background: #fff;
    content: "";
  }

  .main-mobile-menu-btn::before {
    top: var(--mobile-menu-line-top-start);
  }

  .main-mobile-menu-btn i {
    top: var(--mobile-menu-line-top-mid);
  }

  .main-mobile-menu-btn::after {
    top: var(--mobile-menu-line-top-end);
  }

  body.menu-open .main-mobile-menu-btn {
    border-radius: 0;
    background: url("../img/main/main-mobile-menu-close.svg") center / var(--mobile-menu-open-close-icon) var(--mobile-menu-open-close-icon) no-repeat;
  }

  body.menu-open .main-mobile-menu-btn i,
  body.menu-open .main-mobile-menu-btn::before,
  body.menu-open .main-mobile-menu-btn::after {
    display: none;
  }

  .mobile-nav-panel {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: flex;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    padding-top: var(--mobile-menu-panel-top);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(180deg, #d6f1ff 1.24%, #a5c9ff 29.13%, #a58bff 100%);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .mobile-nav-bg {
    position: absolute;
    left: -105px;
    bottom: -201px;
    width: 427px;
    height: 427px;
    opacity: 0.4;
    background: url("../img/common-mobile-menu-glow.png") center / cover no-repeat;
    filter: blur(45px);
    transform: rotate(180deg) scaleY(-1);
    pointer-events: none;
  }

  .mobile-nav-inner {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    padding: 0 var(--mobile-menu-panel-x);
    padding-bottom: calc(env(safe-area-inset-bottom) + 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-group {
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid #bef5ff;
  }

  .mobile-nav-group:last-child {
    border-bottom: 0;
  }

  .mobile-nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--mobile-menu-title-height);
    padding: 0;
    color: #fff;
    font-family: "IBM Plex Sans";
    font-size: var(--mobile-menu-title-size);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mobile-nav-title img {
    width: var(--mobile-menu-title-icon);
    height: var(--mobile-menu-title-icon);
  }

  .mobile-nav-sub {
    display: none;
    flex-direction: column;
    padding: 0 0 var(--mobile-menu-sub-padding-bottom);
  }

  .mobile-nav-group.is-open .mobile-nav-sub {
    display: flex;
  }

  .mobile-nav-sub a {
    display: flex;
    align-items: center;
    height: var(--mobile-menu-sub-link-height);
    color: rgba(255, 255, 255, 0.6);
    font-family: "IBM Plex Sans";
    font-size: var(--mobile-menu-sub-size);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mobile-nav-sub a[aria-current="page"] {
    color: #fff;
  }

  .mobile-nav-sns {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 108px;
    height: 44px;
    margin-top: 128px;
  }

  .mobile-nav-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .mobile-nav-sns img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .mobile-nav-sns a:first-child img {
    width: 33px;
    height: 33px;
  }

  .mobile-nav-sns a:last-child img {
    width: 35px;
    height: 24px;
  }

  body.menu-open .mobile-nav-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .gnb {
    position: fixed;
    z-index: 70;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }

  body.menu-open .gnb .nav {
    display: none !important;
  }

  body.menu-open .menu-btn {
    border-radius: 0;
    background: url("../img/main/main-mobile-menu-close.svg") center / var(--mobile-menu-open-close-icon) var(--mobile-menu-open-close-icon) no-repeat;
  }

  body.menu-open .menu-btn i,
  body.menu-open .menu-btn::before,
  body.menu-open .menu-btn::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --page-x: clamp(16px, calc(12.31px + 0.95vw), 20px);
  }

  .common-pagination {
    width: min(350px, var(--inner));
    height: clamp(30px, calc(28.05px + 0.5vw), 32px);
  }

  .common-page-numbers {
    gap: 8px;
  }

  .common-page-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }

  .common-page-arrow {
    --common-page-icon-width: 18px;
    --common-page-icon-height: 18px;
    width: 32px;
    height: 32px;
  }

  .common-page-first,
  .common-page-last {
    width: calc(var(--common-page-icon-width) * 1.5);
  }

  .common-page-prev {
    left: 39px;
  }

  .common-page-next {
    right: 39px;
  }

  body .wrap .footer.footer.footer,
  body .wrap .common-footer.common-footer.common-footer {
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: clamp(280px, calc(262.44px + 4.5vw), 298px);
    padding: clamp(32px, calc(24.19px + 2vw), 40px) var(--page-x);
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  body .wrap .footer.footer.footer .footer-inner.footer-inner.footer-inner,
  body .wrap .common-footer.common-footer.common-footer .footer-inner.footer-inner.footer-inner {
    width: min(350px, var(--inner));
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 20px;
  }

  body .wrap .footer.footer.footer .footer-top.footer-top.footer-top,
  body .wrap .common-footer.common-footer.common-footer .footer-top.footer-top.footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  body .wrap .footer.footer.footer .footer-brand.footer-brand.footer-brand,
  body .wrap .common-footer.common-footer.common-footer .footer-brand.footer-brand.footer-brand {
    flex-direction: row;
    width: 194.184px;
    height: 22px;
    gap: 12px;
  }

  body .wrap .footer.footer.footer .footer-brand.footer-brand.footer-brand > img,
  body .wrap .common-footer.common-footer.common-footer .footer-brand.footer-brand.footer-brand > img {
    display: block;
  }

  body .wrap .footer.footer.footer .footer-brand.footer-brand.footer-brand img:first-child,
  body .wrap .common-footer.common-footer.common-footer .footer-brand.footer-brand.footer-brand img:first-child {
    width: 124px;
    height: 22px;
  }

  body .wrap .footer.footer.footer .footer-brand.footer-brand.footer-brand img:last-of-type,
  body .wrap .common-footer.common-footer.common-footer .footer-brand.footer-brand.footer-brand img:last-of-type {
    width: 58.184px;
    height: 21.983px;
  }

  body .wrap .common-footer.common-footer.common-footer .common-footer-logo-mobile {
    display: none;
  }

  body .wrap .footer.footer.footer .footer-links.footer-links.footer-links,
  body .wrap .common-footer.common-footer.common-footer .footer-links.footer-links.footer-links {
    gap: 25px;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.04px;
    white-space: nowrap;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom,
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 56px;
    margin-top: 0;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address,
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px 0;
    width: min(350px, var(--inner));
    max-width: 100%;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: -0.03px;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span,
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span {
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(1),
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(1) {
    order: 1;
    width: 100%;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(4),
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(4) {
    order: 2;
    flex: 0 0 126px;
    width: 126px;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(5),
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(5) {
    order: 2;
    flex: 0 0 224px;
    width: 224px;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(2),
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(2) {
    order: 3;
    flex: 0 0 179px;
    width: 179px;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(3),
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address > span:nth-child(3) {
    order: 3;
    flex: 0 0 171px;
    width: 171px;
  }

  body .wrap .footer.footer.footer .footer-address-line,
  body .wrap .footer.footer.footer .footer-address-row,
  body .wrap .common-footer.common-footer.common-footer .footer-address-line,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: min(350px, var(--inner));
    max-width: 100%;
    gap: 0;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }

  body .wrap .footer.footer.footer .footer-address-line,
  body .wrap .common-footer.common-footer.common-footer .footer-address-line {
    order: 1;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(2),
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(2) {
    order: 3;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(3),
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(3) {
    order: 2;
  }

  body .wrap .footer.footer.footer .footer-bottom.footer-bottom.footer-bottom address .footer-address-row span,
  body .wrap .common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address .footer-address-row span {
    order: 0;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(2) span:first-child,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(2) span:first-child {
    flex: 0 0 167px;
    width: 167px;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(2) i,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(2) i {
    margin-top: 1px;
    margin-right: 6px;
    margin-left: 6px;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(2) i + span,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(2) i + span {
    flex: 0 0 171px;
    width: 171px;
    margin-left: 0;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(3) span:first-child,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(3) span:first-child {
    flex: 0 0 114px;
    width: 114px;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(3) i,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(3) i {
    margin-top: 1px;
    margin-right: 6px;
    margin-left: 6px;
  }

  body .wrap .footer.footer.footer .footer-address-row:nth-child(3) i + span,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row:nth-child(3) i + span {
    flex: 0 0 171px;
    width: 171px;
    margin-left: 0;
  }

  body .wrap .footer.footer.footer .footer-address-row i,
  body .wrap .common-footer.common-footer.common-footer .footer-address-row i {
    display: block;
    order: 0;
    flex: 0 0 1px;
    width: 1px;
    height: 14px;
    border-left: 0;
    background: rgba(255, 255, 255, 0.45);
  }

  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns {
    gap: 15px;
    margin-top: 0;
  }

  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns img,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns img {
    display: block;
    object-fit: contain;
  }

  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:first-child,
  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:first-child img,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:first-child,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:first-child img {
    width: 26px;
    height: 26px;
  }

  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:nth-child(2),
  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:nth-child(2) img,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:nth-child(2),
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:nth-child(2) img {
    width: 26px;
    height: 26px;
  }

  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:last-child,
  body .wrap .footer.footer.footer .footer-sns.footer-sns.footer-sns a:last-child img,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:last-child,
  body .wrap .common-footer.common-footer.common-footer .footer-sns.footer-sns.footer-sns a:last-child img {
    width: 27px;
    height: 19px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer {
    min-height: 298px;
    height: 298px;
    padding: 40px 20px;
    border-radius: 50px 50px 0 0;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-inner.footer-inner.footer-inner {
    width: min(350px, calc(100vw - 40px));
    height: 218px;
    gap: 20px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 0;
    width: min(350px, calc(100vw - 40px));
    height: 60px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row {
    width: min(350px, calc(100vw - 40px));
    height: 16px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-bottom.footer-bottom.footer-bottom address .footer-address-row span {
    height: 16px;
    line-height: 1.3;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(2) span:first-child {
    flex: 0 0 167px;
    width: 167px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(3) span:first-child {
    flex: 0 0 114px;
    width: 114px;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(2) i,
  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(3) i {
    flex: 0 0 1px;
    width: 1px;
    height: 14px;
    margin: 1px 6px 0;
  }

  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(2) i + span,
  body .wrap .footer.common-footer.common-footer.common-footer.common-footer .footer-address-row:nth-child(3) i + span {
    flex: 0 0 171px;
    width: 171px;
  }
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 18px;
  }

  .academy-hero-title,
  .business-title,
  .coding-hero-copy,
  .course-hero-title,
  .benefits-title,
  .graduate-title,
  .job-hero-title,
  .partner-title,
  .ready-hero-inner {
    width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
  }

  .academy-hero-title h1,
  .business-title h1,
  .coding-hero-copy h1,
  .course-hero-title h1,
  .benefits-title h1,
  .graduate-title h1,
  .job-hero-title h1,
  .partner-title h1,
  .ready-hero-inner h1,
  .directions-hero h1,
  .gallery-hero h1,
  .mentor-hero h1,
  .notice-hero h1,
  .press-hero h1,
  .recruit-hero h1,
  .reviews-hero h1,
  .faq-hero h1,
  .voice-hero h1 {
    width: auto !important;
    max-width: calc(100vw - 40px) !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
  }

  .recruit-hero h1 span {
    display: inline !important;
  }
}
