@charset "utf-8";
@import url(../../../css/common/fonts/SUIT.css);

:root {
  --primary: #573483;
  --gradient-c: linear-gradient(90deg, #fd5392 0%, #f86f64 100%);
  --content-max: 1240px;
  --header-bar-max: 1920px;
  --header-bar-padding: 80px;
  --gnb-mega-panel-height: 350px;
  --gnb-bar-height: 82px;
  --color-white: #ffffff;
  --z-header-nav: 100;
  --z-gnb-panel: 0;
  --z-gnb-submenu: 1;
  --top-banner-h: 0px;
  --gnb-sticky-top: 0px;
  --layout-max: 1920px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow: visible;
  padding-top: var(--top-banner-h, 0px);
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

/* ----- Header (GNB) ----- */
.site-header {
  position: relative;
  width: 100%;
  z-index: var(--z-header-nav);
}

.site-header__bar {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* 학과B — 흰색 고정 헤더 */
.site-header--b {
  height: auto;
  min-height: var(--gnb-bar-height);
  overflow: visible;
}

.site-header--b .gnb-wrap {
  background: #fff;
  /*border-bottom-color: rgba(0, 0, 0, 0.08);*/
}

.site-header--b .gnb-link,
.site-header--b .site-header__logo-text {
  color: #1a1a1a;
}

.site-header--b .site-header__logo-img {
  filter: none;
}

.site-header--b .site-header__logo-img-wrap {
  border-right-color: rgba(0, 0, 0, 0.15);
}

.site-header--b .util-menu__select,
.site-header--b .util-menu__select-arrow {
  color: #1a1a1a;
}

.site-header--b .util-bar__btn--login {
  background: #4d4d4d;
  color: #fff;
}

.site-header--b .util-bar__btn--login:hover {
  background: #333;
}

.site-header--b .util-bar__btn--home {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.site-header--b .util-bar__btn--home:hover {
  background: rgba(108, 76, 198, 0.06);
}

.site-header--b .menu-btn__line {
  background: #1a1a1a;
}

.site-header--b.is-gnb-scrolled .util-bar__btn--login {
  background: #4d4d4d;
  color: #fff;
}

.site-header--b.is-gnb-scrolled .util-bar__btn--home {
  border-color: var(--primary);
  color: var(--primary);
}

/* 학과F — 다크 플로팅 헤더 */
.site-header--f {
  --gnb-bar-height: 68px;
  position: absolute;
  top: var(--top-banner-h, 0px);
  left: 0;
  right: 0;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.site-header--f .site-header__bar {
  padding: 28px 40px 0;
  max-width: var(--header-bar-max);
  margin: 0 auto;
}

.site-header--f .gnb-wrap {
  background: rgba(24, 24, 24, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  padding: 0 18px 0 18px;
  min-height: var(--gnb-bar-height);
  transition: border-radius 0.26s ease, background-color 0.26s ease, box-shadow 0.26s ease;
}

@media (min-width: 1241px) {
  .site-header--f .gnb-wrap:hover,
  .site-header--f .gnb-wrap:focus-within,
  .site-header--f:has(.gnb:hover) .gnb-wrap,
  .site-header--f:has(.gnb:focus-within) .gnb-wrap,
  .site-header--f.is-nav-open .gnb-wrap {
    background: rgba(24, 24, 24, 0.78);
    border-radius: 5px;
    border-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  }
}

.site-header--f .site-header__logo a {
  gap: 5px;
}

.site-header--f .site-header__logo-img-wrap {
  padding-right:5px;
  border-right-color: rgba(255, 255, 255, 0.18);
}

.site-header--f .site-header__logo-img {
  height: 34px;
  filter: none;
  object-fit: contain;
}

.site-header--f .site-header__logo-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.site-header--f .gnb-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 1241px) {
  .site-header--f .gnb-item:hover .gnb-link,
  .site-header--f .gnb-item:focus-within .gnb-link,
  .site-header--f .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
  .site-header--f .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
    color: #f5b233;
  }
}

.site-header--f .gnb-item::after {
  background: #f5b233;
}

.site-header--f .site-header__utils {
  gap: 10px;
  margin-left: 1rem;
}

@media (min-width: 1241px) {
  .site-header--f .gnb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }

  .site-header--f .site-header__logo {
    margin-right: 0;
    flex-shrink: 0;
  }

  .site-header--f .gnb {
    flex: 1 1 auto;
    width: auto;
    max-width: 900px;
    min-width: 0;
  }

  .site-header--f .site-header__utils {
    flex-shrink: 0;
  }
}

.site-header--f .util-menu__translate-group--lang {
  background: linear-gradient(90deg, #f28c1b 0%, #f5b233 100%);
  border-radius: 999px;
  height: 40px;
  padding: 0 2px;
}

.site-header--f .util-menu__select-wrap {
  height: 100%;
}

.site-header--f .util-menu__select {
  min-width: 7.75rem;
  height: 40px;
  padding: 0 1.75rem 0 2.25rem;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.site-header--f .util-menu__select-arrow {
  color: #fff;
}

.site-header--f .menu-btn__line {
  background: #fff;
}

@media (min-width: 1241px) {
  .site-header--f:has(.gnb:hover) .gnb-link,
  .site-header--f:has(.gnb:focus-within) .gnb-link,
  .site-header--f:has(.gnb:hover) .site-header__logo-text,
  .site-header--f:has(.gnb:focus-within) .site-header__logo-text,
  .site-header--f:has(.gnb:hover) .util-menu__select,
  .site-header--f:has(.gnb:focus-within) .util-menu__select,
  .site-header--f:has(.gnb:hover) .util-menu__select-arrow,
  .site-header--f:has(.gnb:focus-within) .util-menu__select-arrow,
  .site-header--f.is-nav-open .gnb-link,
  .site-header--f.is-nav-open .site-header__logo-text,
  .site-header--f.is-nav-open .util-menu__select,
  .site-header--f.is-nav-open .util-menu__select-arrow {
    color: #fff;
  }

  .site-header--f:has(.gnb:hover) .gnb-item:hover .gnb-link,
  .site-header--f:has(.gnb:focus-within) .gnb-item:focus-within .gnb-link,
  .site-header--f:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
  .site-header--f:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
  .site-header--f.is-nav-open .gnb-item:hover .gnb-link,
  .site-header--f.is-nav-open .gnb-item:focus-within .gnb-link {
    color: #f5b233;
  }

  .site-header--f:has(.gnb:hover) .site-header__logo-img,
  .site-header--f:has(.gnb:focus-within) .site-header__logo-img,
  .site-header--f.is-nav-open .site-header__logo-img,
  .site-header--f.is-gnb-scrolled .site-header__logo-img {
    filter: none;
  }

  .site-header--f:has(.gnb:hover) .site-header__logo-img-wrap,
  .site-header--f:has(.gnb:focus-within) .site-header__logo-img-wrap,
  .site-header--f.is-nav-open .site-header__logo-img-wrap,
  .site-header--f.is-gnb-scrolled .site-header__logo-img-wrap {
    border-right-color: rgba(255, 255, 255, 0.18);
  }

  .site-header--f:has(.gnb:hover) .menu-btn__line,
  .site-header--f:has(.gnb:focus-within) .menu-btn__line,
  .site-header--f.is-nav-open .menu-btn__line,
  .site-header--f.is-gnb-scrolled .menu-btn__line {
    background: #fff;
  }
}

.site-header--f.is-gnb-scrolled {
  z-index: var(--z-header-nav);
}

.site-header--f.is-gnb-scrolled .site-header__bar {
  position: fixed;
  top: var(--gnb-sticky-top, 0px);
  left: 0;
  right: 0;
  z-index: var(--z-header-nav);
  max-width: none;
  padding-top: 16px;
  padding-left: 40px;
  padding-right: 40px;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

/* Hero (헤더 플로팅 미리보기) */
.hero-f {
  position: relative;
  min-height: 895px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-f__media {
  position: absolute;
  inset: 0;
}

.hero-f__bg {
  width: 100%;
  height: 100%;
  min-height: 895px;
  object-fit: cover;
}

.hero-f__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.12) 0%,
          rgba(0, 0, 0, 0.28) 45%,
          rgba(0, 0, 0, 0.42) 100%
  );
}

.hero-f__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 140px 24px 96px;
  text-align: center;
  color: #fff;
}

.hero-f__lead {
  margin: 0;
  font-family: "SUIT", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.hero-f__lead + .hero-f__lead {
  margin-top: 0.1em;
}

.hero-f__title {
  margin: 28px 0 36px;
  font-family: "SUIT", sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-f__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition:
          background-color 0.22s ease,
          border-color 0.22s ease,
          color 0.22s ease;
}

.hero-f__btn i {
  font-size: 14px;
}

.hero-f__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-f {
    min-height: 480px;
    height: 480px;
  }

  .hero-f__bg {
    min-height: 480px;
  }

  .hero-f__content {
    padding: 112px 20px 64px;
  }

  .hero-f__lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-f__title {
    margin: 22px 0 28px;
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-f__btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 13px 24px;
    font-size: 15px;
  }
}

/* ----- Sections (Notice · Calendar) ----- */
.sections-f {
  background: #fff;
}

.sections-f__inner {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding: 0;
}

/* Notice */
.notice-f {
  padding: 80px 0 72px;
}

.notice-f__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.notice-f__head-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  min-width: 0;
}

.notice-f__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.notice-f__title-ko {
  color: #1a1a1a;
}

.notice-f__title-en {
  color: var(--primary);
  font-weight: 900;
}

.notice-f__tab-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.notice-f__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #242424;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.notice-f__tab:hover {
  color: var(--primary);
}

.notice-f__tab.is-active {
  background: #573483;
  color: #fff;
}

.notice-f__tab.is-active:hover {
  color: #fff;
}

.notice-f__tab-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8c8c8;
  flex-shrink: 0;
}

.notice-f__more,
.calendar-f__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 108px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.notice-f__more:hover,
.calendar-f__more:hover {
  border-color: #bbb;
  color: #111;
  background: #fafafa;
}

.notice-f__more i,
.calendar-f__more i {
  font-size: 13px;
}

.notice-f__panel {
  display: none;
}

.notice-f__panel.is-active {
  display: block;
}

.notice-f__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-f__card {
  min-width: 0;
}

.notice-f__card.is-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 48px 20px;
  border: 1px dashed #d5d8e0;
  border-radius: 12px;
  background: #f7f8fa;
  color: #8a8f9a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
}

.notice-f__card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  min-height: 168px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notice-f__card-link:hover {
  border-color: #d0d0d0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.notice-f__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 15px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.notice-f__badge--purple {
  background:#f9f0ff;
  color: #6f17ab;
}

.notice-f__badge--blue {
  background: #eef8ff;
  color: #0078e9;
}

.notice-f__badge--green {
  background: #e8f7f1;
  color: #00796b;
}

.notice-f__card-title {
  display: -webkit-box;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-f__card-date {
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
  color: #9a9a9a;
  letter-spacing: -0.01em;
}

/* Calendar */
.calendar-f {
  padding: 0 0 100px;
}

.calendar-f__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.calendar-f__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.calendar-f__main {
  padding-bottom: 40px;
  border-bottom: 1px solid #dfdfdf;
}

.calendar-f__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.calendar-f__title-kw {
  color: #1a1a1a;
}

.calendar-f__title-en {
  color: var(--primary);
  font-weight: 900;
}

.calendar-f__months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
  width: 100%;
  min-width: 0;
  padding: 6px;
  border-radius: 999px;
  background: #002446;
}

.calendar-f__month {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 4px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.calendar-f__month:hover {
  color: #fff;
}

.calendar-f__month.is-active {
  background: #fff;
  color: #1a1a2e;
}

.calendar-f__panel {
  display: none;
}

.calendar-f__panel.is-active {
  display: block;
}

.calendar-f__slider {
  position: relative;
  margin-top: 28px;
}

.calendar-f__events-viewport {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.calendar-f__slider.has-nav .calendar-f__events-viewport {
  padding: 0 40px;
}

.calendar-f__events {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.35s ease;
  will-change: transform;
}

.calendar-f__event {
  flex-shrink: 0;
  min-width: 0;
}

.calendar-f__event.is-empty {
  flex: 1 1 100%;
  flex-basis: 100% !important;
  width: 100%;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 40px 20px;
  border: 1px dashed #d5d8e0;
  border-radius: 12px;
  background: #f7f8fa;
  color: #8a8f9a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  box-sizing: border-box;
}

.calendar-f__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: #c8c8c8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
          color 0.2s ease,
          opacity 0.2s ease,
          box-shadow 0.2s ease;
}

.calendar-f__nav--prev {
  left: -8px;
}

.calendar-f__nav--next {
  right: -8px;
}

.calendar-f__slider.has-nav .calendar-f__nav {
  display: inline-flex;
}

.calendar-f__nav:hover:not(:disabled) {
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.calendar-f__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.calendar-f__event-link {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-decoration: none;
}

.calendar-f__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #fff;
}

.calendar-f__day {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #3b4556;
}

.calendar-f__month-label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #573483;
  letter-spacing: -0.02em;
}

.calendar-f__event-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.calendar-f__event-title {
  display: -webkit-box;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.calendar-f__event-date {
  font-size: 14px;
  font-weight: 400;
  color: #9a9a9a;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* SNS */
.sns-f {
  padding: 80px 0 100px;
  background: #f8f9fb;
}

.sns-f__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.sns-f__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.sns-f__title-ko {
  color: #1a1a1a;
}

.sns-f__title-en {
  color: var(--primary);
  font-weight: 900;
}

.sns-f__channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sns-f__channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0 10px 0 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sns-f__channel:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sns-f__channel i {
  font-size: 20px;
  line-height: 1;
}

.sns-f__channel-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sns-f__channel--facebook {
  background: #01499b;
}

.sns-f__channel--youtube {
  background: #cd2121;
}

.sns-f__channel--instagram {
  background: linear-gradient(90deg, #f79300 0%, #f70e5a, #e0019d, #9f1cdf);
}

.sns-f__channel--kakao {
  background: #fee500;
  color: #191919;
}

.sns-f__slider {
  position: relative;
}

.sns-f__swiper {
  width: 100%;
  overflow: hidden;
}

.sns-f__nav {
  position: absolute;
  top: clamp(72px, 10vw, 140px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: #c8c8c8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
          color 0.2s ease,
          opacity 0.2s ease,
          box-shadow 0.2s ease;
}

.sns-f__nav--prev {
  left: -8px;
}

.sns-f__nav--next {
  right: -8px;
}

.sns-f__nav:hover:not(.swiper-button-disabled) {
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.sns-f__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.sns-f__slider:has(.swiper-slide.is-empty) .sns-f__nav {
  display: none;
}

.sns-f__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sns-f__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.sns-f__thumb {
  width: 100%;
  aspect-ratio: 399 / 280;
  object-fit: cover;
}

.sns-f__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sns-f__badge--facebook {
  background: #00499a;
}

.sns-f__badge--youtube {
  background: #cc2020;
}

.sns-f__badge--instagram {
  background: linear-gradient(90deg, #f79300 0%, #f70e5a, #e0019d, #9f1cdf);
}

.sns-f__card-title {
  display: -webkit-box;
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sns-f__swiper .swiper-slide.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto;
  min-height: 160px;
  height: auto;
  aspect-ratio: auto;
  padding: 32px 20px;
  border: 1px dashed #d5d8e0;
  border-radius: 12px;
  background: #f7f8fa;
  color: #8a8f9a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 1510px) {
  .sections-f__inner,
  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1100px) {
  .sections-f__inner,
  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 32px;
    padding-right: 32px;
  }

  .notice-f__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice-f {
    padding: 64px 0 56px;
  }

  .calendar-f {
    padding-bottom: 80px;
  }

  .calendar-f__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .calendar-f__side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }

  .calendar-f__main {
    width: 100%;
    min-width: 0;
  }

  .calendar-f__months {
    gap: 3px;
    padding: 5px;
  }

  .calendar-f__month {
    min-height: 36px;
    font-size: 14px;
  }

  .sns-f__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sns-f__channels {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .sections-f__inner,
  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 24px;
    padding-right: 24px;
  }

  .notice-f {
    padding: 56px 0 48px;
  }

  .notice-f__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .notice-f__head-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .notice-f__tab-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .notice-f__tab-bar::-webkit-scrollbar {
    display: none;
  }

  .notice-f__tab {
    flex-shrink: 0;
    min-height: 36px;
    padding: 0 18px;
    font-size: 15px;
  }

  .notice-f__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .notice-f__card-link {
    min-height: 0;
    padding: 20px;
  }

  .notice-f__card-title {
    font-size: 16px;
  }

  .calendar-f {
    padding-bottom: 72px;
  }

  .calendar-f__side {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-f__months {
    display: flex;
    gap: 4px;
    padding: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: space-between;
  }

  .calendar-f__months::-webkit-scrollbar {
    display: none;
  }

  .calendar-f__month {
    flex: 0 0 auto;
    width: auto;
    min-width: 44px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 14px;
  }

  .calendar-f__slider {
    margin-top: 20px;
  }

  .calendar-f__slider.has-nav {
    display: grid;
    grid-template-areas:
      "viewport viewport"
      "prev next";
    justify-content: center;
    column-gap: 16px;
    row-gap: 16px;
  }

  .calendar-f__events-viewport {
    grid-area: viewport;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .calendar-f__slider.has-nav .calendar-f__events-viewport {
    padding: 0;
  }

  .calendar-f__nav {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .calendar-f__nav--prev {
    grid-area: prev;
    justify-self: end;
    left: auto;
  }

  .calendar-f__nav--next {
    grid-area: next;
    justify-self: start;
    right: auto;
  }

  .calendar-f__events {
    gap: 16px;
  }

  .calendar-f__event {
    min-width: 0;
  }

  .calendar-f__date {
    width: 64px;
    height: 64px;
  }

  .calendar-f__day {
    font-size: 22px;
  }

  .calendar-f__month-label {
    font-size: 11px;
  }

  .calendar-f__event-link {
    gap: 12px;
    align-items: flex-start;
  }

  .calendar-f__event-body {
    gap: 6px;
    overflow: visible;
  }

  .calendar-f__event-title {
    font-size: 15px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .calendar-f__event-date {
    font-size: 13px;
  }

  .sns-f__nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .sns-f__nav--prev {
    left: 4px;
  }

  .sns-f__nav--next {
    right: 4px;
  }

  .sns-f__nav {
    top: clamp(56px, 18vw, 100px);
  }

  .sns-f {
    padding: 56px 0 72px;
  }

  .sns-f__head {
    margin-bottom: 28px;
  }

  .sns-f__channels {
    gap: 8px;
  }

  .sns-f__channel {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .sns-f__channel i {
    font-size: 18px;
  }

  .sns-f__channel-icon {
    width: 18px;
    height: 18px;
  }

  .sns-f__card-title {
    font-size: 15px;
    margin-top: 12px;
  }

  .sns-f__badge {
    top: 10px;
    left: 10px;
    min-height: 24px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sections-f__inner,
  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-f {
    min-height: 420px;
    height: 420px;
  }

  .hero-f__bg {
    min-height: 420px;
  }

  .hero-f__content {
    padding: 96px 16px 48px;
  }

  .hero-f__lead {
    font-size: 14px;
  }

  .hero-f__title {
    font-size: clamp(28px, 10vw, 36px);
  }

  .site-header--f .site-header__logo-img {
    height: 26px;
  }

  .notice-f__title,
  .sns-f__title,
  .calendar-f__title {
    font-size: 22px;
  }

  .calendar-f__date {
    width: 56px;
    height: 56px;
  }

  .calendar-f__day {
    font-size: 20px;
  }

  .calendar-f__event-title {
    font-size: 14px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .calendar-f__event-date {
    font-size: 12px;
  }

  .notice-f__more,
  .calendar-f__more {
    min-width: 0;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .sns-f__channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .sns-f__channel {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .calendar-f__month {
    min-width: 40px;
    font-size: 13px;
  }

  .gnb-wrap,
  .site-header--f .gnb-wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0));
    padding-right: max(16px, env(safe-area-inset-right, 0));
  }
}

@media (min-width: 1921px) {
  .site-header__bar {
    max-width: var(--header-bar-max);
    padding-left: 0;
    padding-right: 0;
  }
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gnb-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: var(--gnb-bar-height);
  margin-top: 0;
  padding: 0 var(--header-bar-padding);
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background-color 0.26s ease, border-color 0.26s ease;
}

/* Logo */
.site-header__logo {
  margin: 0;
  margin-right: auto;
  flex-shrink: 0;
  align-self: center;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__logo-img-wrap {
  display: flex;
  align-items: center;
  padding-right: 18px;
  border-right: 1px solid var(--color-white);
}

.site-header__logo-picture {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header__logo-img {
  width: auto;
  height: 36px;
  transition: filter 0.22s ease;
}

.site-header__logo-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.site-header__logo-img-wrap {
  transition: border-color 0.22s ease;
}

/* GNB */
.gnb {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: min(100%, 900px);
  min-width: 0;
  min-height: var(--gnb-bar-height);
  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%;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: visible;
}

.gnb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: var(--gnb-bar-height);
  height: 100%;
  color: var(--color-white);
  font-family: "SUIT", sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}

.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-left: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  text-align: center;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.24s ease, opacity 0.24s ease, max-height 0.28s ease, visibility 0s linear 0.24s, background-color 0.2s ease;
}

.gnb-item:not(:has(~ .gnb-item)) .gnb-submenu {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.gnb-submenu li {
  display: block;
}

.gnb-submenu li:first-child {
  padding-top: 15px;
}

.gnb-submenu a {
  display: block;
  padding: 8px 14px;
  text-align: center;
  color: #111;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-all;
}

.site-header--f .gnb-submenu a:hover {
  color: #f28c1b;
}

.gnb-submenu a:hover {
  color: var(--primary);
}

.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: #f8f8f8;
}

.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-wrap:has(.gnb:hover)::after,
.gnb-wrap:has(.gnb:focus-within)::after {
  height: var(--gnb-mega-panel-height);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

.gnb-wrap:has(.gnb:hover) .gnb-submenu,
.gnb-wrap:has(.gnb:focus-within) .gnb-submenu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  max-height: var(--gnb-mega-panel-height);
  overflow: visible;
  transition-delay: 0s, 0s, 0s, 0s;
}

.site-header--f .gnb-wrap::after {
  left: 0;
  right: auto;
  width: 100%;
  max-width: 100%;
  transform: none;
  border-radius: 0 0 5px 5px;
  background: rgba(24, 24, 24, 0.78);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header--f .gnb-submenu {
  border-left-color: rgba(255, 255, 255, 0.08);
}

.site-header--f .gnb-item:not(:has(~ .gnb-item)) .gnb-submenu {
  border-right-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1241px) {
  .site-header--f .gnb-submenu a {
    color: rgba(255, 255, 255, 0.88);
  }

  .site-header--f .gnb-item:hover .gnb-submenu,
  .site-header--f .gnb-item:focus-within .gnb-submenu,
  .site-header--f .gnb-item:has(.gnb-submenu a:hover) .gnb-submenu,
  .site-header--f .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-submenu {
    background: rgba(255, 255, 255, 0.05);
  }
}

.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::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;
}

.site-header:not(.site-header--f):has(.gnb:hover) .gnb-wrap,
.site-header:not(.site-header--f):has(.gnb:focus-within) .gnb-wrap,
.site-header:not(.site-header--f).is-nav-open .gnb-wrap {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.site-header:not(.site-header--f):has(.gnb:hover) .gnb-link,
.site-header:not(.site-header--f):has(.gnb:focus-within) .gnb-link,
.site-header:not(.site-header--f):has(.gnb:hover) .site-header__logo-text,
.site-header:not(.site-header--f):has(.gnb:focus-within) .site-header__logo-text,
.site-header:not(.site-header--f):has(.gnb:hover) .util-menu__select,
.site-header:not(.site-header--f):has(.gnb:focus-within) .util-menu__select,
.site-header:not(.site-header--f):has(.gnb:hover) .util-menu__select-arrow,
.site-header:not(.site-header--f):has(.gnb:focus-within) .util-menu__select-arrow,
.site-header:not(.site-header--f):has(.gnb:hover) .util-bar__btn,
.site-header:not(.site-header--f):has(.gnb:focus-within) .util-bar__btn,
.site-header:not(.site-header--f).is-nav-open .gnb-link,
.site-header:not(.site-header--f).is-nav-open .site-header__logo-text,
.site-header:not(.site-header--f).is-nav-open .util-menu__select,
.site-header:not(.site-header--f).is-nav-open .util-menu__select-arrow,
.site-header:not(.site-header--f).is-nav-open .util-bar__btn {
  color: #000;
}

.site-header:not(.site-header--f):has(.gnb:hover) .gnb-item:hover .gnb-link,
.site-header:not(.site-header--f):has(.gnb:focus-within) .gnb-item:focus-within .gnb-link,
.site-header:not(.site-header--f):has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:not(.site-header--f):has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:not(.site-header--f):has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
.site-header:not(.site-header--f):has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
.site-header:not(.site-header--f).is-nav-open .gnb-item:hover .gnb-link,
.site-header:not(.site-header--f).is-nav-open .gnb-item:focus-within .gnb-link,
.site-header:not(.site-header--f).is-nav-open .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:not(.site-header--f).is-nav-open .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
  color: var(--primary);
}

.site-header:not(.site-header--b):not(.site-header--f):has(.gnb:hover) .site-header__logo-img,
.site-header:not(.site-header--b):not(.site-header--f):has(.gnb:focus-within) .site-header__logo-img,
.site-header:not(.site-header--f).is-nav-open:not(.site-header--b) .site-header__logo-img {
  filter: brightness(0);
}

.site-header:not(.site-header--f):has(.gnb:hover) .site-header__logo-img-wrap,
.site-header:not(.site-header--f):has(.gnb:focus-within) .site-header__logo-img-wrap,
.site-header:not(.site-header--f).is-nav-open .site-header__logo-img-wrap {
  border-right-color: #000;
}

.site-header:not(.site-header--f):has(.gnb:hover) .util-bar__btn--login,
.site-header:not(.site-header--f):has(.gnb:focus-within) .util-bar__btn--login {
  background: rgba(0, 0, 0, 0.08);
}

.site-header:not(.site-header--f):has(.gnb:hover) .util-bar__btn--home,
.site-header:not(.site-header--f):has(.gnb:focus-within) .util-bar__btn--home {
  border-color: rgba(0, 0, 0, 0.35);
}

.site-header:not(.site-header--f):has(.gnb:hover) .menu-btn__line,
.site-header:not(.site-header--f):has(.gnb:focus-within) .menu-btn__line,
.site-header:not(.site-header--f).is-nav-open .menu-btn__line,
.site-header:not(.site-header--f).is-gnb-scrolled .menu-btn__line {
  background: #000;
}

/* Scrolled sticky header */
.site-header.is-gnb-scrolled {
  z-index: var(--z-header-nav);
  overflow: visible;
}

.site-header:not(.site-header--f).is-gnb-scrolled .gnb-wrap {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.site-header:not(.site-header--f).is-gnb-scrolled .gnb-link,
.site-header:not(.site-header--f).is-gnb-scrolled .site-header__logo-text,
.site-header:not(.site-header--f).is-gnb-scrolled .util-menu__select,
.site-header:not(.site-header--f).is-gnb-scrolled .util-menu__select-arrow,
.site-header:not(.site-header--f).is-gnb-scrolled .util-bar__btn {
  color: #000;
}

.site-header:not(.site-header--f).is-gnb-scrolled .gnb-item:hover .gnb-link,
.site-header:not(.site-header--f).is-gnb-scrolled .gnb-item:focus-within .gnb-link,
.site-header:not(.site-header--f).is-gnb-scrolled .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:not(.site-header--f).is-gnb-scrolled .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
  color: var(--primary);
}

.site-header.is-gnb-scrolled:not(.site-header--b):not(.site-header--f) .site-header__logo-img {
  filter: brightness(0);
}

.site-header:not(.site-header--f).is-gnb-scrolled .site-header__logo-img-wrap {
  border-right-color: #000;
}

.site-header:not(.site-header--f).is-gnb-scrolled .util-bar__btn--login {
  background: rgba(0, 0, 0, 0.08);
}

.site-header:not(.site-header--f).is-gnb-scrolled .util-bar__btn--home {
  border-color: rgba(0, 0, 0, 0.35);
}

@media (min-width: 1241px) {
  .site-header__bar {
    transition:
            background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header:not(.site-header--f).is-gnb-scrolled .site-header__bar {
    position: fixed;
    top: var(--gnb-sticky-top, 0px);
    left: 0;
    right: 0;
    z-index: var(--z-header-nav);
    max-width: none;
    background: transparent;
  }
}

.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: "SUIT", 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;
}

.gnb-mobile-util__item--lang {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gnb-mobile-util__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 0.875rem 0;
}

.gnb-mobile-util__lang-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1rem;
}

.gnb-mobile-util__lang-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.gnb-mobile-util__select {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0 1.25rem 0 0;
  border: none;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.gnb-mobile-util__select:focus {
  outline: none;
}

.gnb-mobile-util__select option {
  color: #1a1a1a;
  background: #ffffff;
}

.gnb-mobile-util__select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 12px;
  color: #666666;
  pointer-events: none;
  transform: translateY(-50%);
}

/* ==========================================================================
 * Language Box (lang-box) — major_2026_5 동일 구조
 * ========================================================================== */
.lang-box {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
}

.lang-box.is-open {
  z-index: 2;
}

.lang-box__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.lang-box__trigger:hover {
  opacity: 1;
}

.lang-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.lang-box__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.lang-box__label {
  letter-spacing: -0.01em;
}

.lang-box__arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  transition: transform 0.2s ease, color 0.22s ease;
}

.lang-box__trigger:hover .lang-box__arrow {
  color: inherit;
}

.lang-box.is-open .lang-box__arrow {
  transform: rotate(180deg);
}

.lang-box__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 1000;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lang-box__menu[hidden] {
  display: none;
}

.lang-box__menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: #222;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lang-box__menu button:hover {
  background: #f5f5f5;
}

body.has-top-banner-open .lang-box__menu {
  top: calc(100% + 8px);
  bottom: auto;
  transform: none;
}

.lang-box.lang-box--drop-up .lang-box__menu {
  top: auto;
  bottom: calc(100% + 8px);
}

@media (min-width: 1241px) {
  .site-header.is-lang-open .util-bar,
  .site-header:has(.lang-box.is-open) .util-bar {
    z-index: 10;
  }

  .site-header.is-lang-open .lang-box__menu,
  .site-header:has(.lang-box.is-open) .lang-box__menu {
    z-index: 1001;
  }
}

/* ==========================================================================
 * Mobile Language (gnb-mobile-lang) — major_2026_5 동일 구조
 * ========================================================================== */
.gnb-mobile-lang {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gnb-mobile-util__list li.gnb-mobile-lang:last-child {
  border-bottom: none;
}

.gnb-mobile-lang__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
}

.gnb-mobile-lang__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gnb-mobile-lang__label i {
  width: 1rem;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.gnb-mobile-lang__arrow {
  font-size: 12px;
  color: #999999;
  transition: transform 0.2s ease;
}

.gnb-mobile-lang.is-open .gnb-mobile-lang__arrow {
  transform: rotate(180deg);
}

.gnb-mobile-lang__menu {
  margin: 0 0 0.5rem;
  padding: 0.25rem 0;
  list-style: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.gnb-mobile-lang__menu button {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.gnb-mobile-lang__menu button:hover {
  color: #f5b233;
  background: rgba(0, 0, 0, 0.03);
}

.site-header__utils {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 1.5rem;
  align-self: center;
}

/* Util bar */
.util-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.util-menu__translate-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.util-menu__translate {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.util-menu__select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.util-menu__select-icon {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.util-menu__select-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.util-menu__select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 7.5rem;
  padding: 0.25rem 1.5rem 0.25rem 2rem;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  cursor: pointer;
  outline: none;
  transition: color 0.22s ease;
}

.util-menu__select:focus {
  outline: none;
}

.util-menu__select option {
  color: #1a1a1a;
  background: #ffffff;
}

.util-menu__select-arrow {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  font-size: 12px;
  color: var(--color-white);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.22s ease;
}

.util-menu__translate .goog-te-gadget {
  font-family: "SUIT", sans-serif !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.util-menu__translate .goog-te-gadget > span {
  display: none !important;
}

.util-menu__translate .goog-te-combo {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.util-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.util-bar__btn i {
  font-size: 12px;
}

/* 관리자(로그인 회원명) 링크 — util-bar 내 버튼 톤과 통일 */
.util-bar a:has(.fa-user-circle) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.util-bar a:has(.fa-user-circle):hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.util-bar a:has(.fa-user-circle) i {
  font-size: 16px;
  color: #f5b233;
}

.util-bar__btn--login {
  background: rgba(0, 0, 0, 0.35);
}

.util-bar__btn--login:hover {
  background: rgba(0, 0, 0, 0.5);
}

.util-bar__btn--home {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.util-bar__btn--home:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile menu */
.menu-btn {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 24px;
  padding: 0;
  z-index: 10;
}

.menu-btn__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  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;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

html.is-nav-open {
  overflow: hidden;
}

.gnb-backdrop {
  display: none;
}

@media (min-width: 1241px) {
  .menu-btn {
    display: none;
  }

  .gnb-mobile-util {
    display: none !important;
  }

  .site-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);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s linear 0s;
  }

  .site-header.is-nav-open .gnb-wrap::after {
    height: var(--gnb-mega-panel-height);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s, 0s;
  }

  .site-header.is-nav-open .gnb-wrap .gnb-submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: var(--gnb-mega-panel-height);
    transition-delay: 0s, 0s, 0s, 0s;
  }

  .gnb-wrap.gnb-mega-force-closed::after {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition-delay: 0s, 0s, 0.24s;
  }

  .gnb-wrap.gnb-mega-force-closed .gnb-submenu {
    transform: translateY(-6px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    transition-delay: 0s, 0s, 0s, 0.24s;
  }



}

/* Responsive */
@media (max-width: 1440px) {
  .hero-f {
    min-height: 700px;
    height: 700px;
  }

  .hero-f__bg {
    min-height: 700px;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-f {
    min-height: 560px;
    height: 560px;
  }

  .hero-f__bg {
    min-height: 560px;
  }

  .hero-f__content {
    padding: 120px 24px 72px;
  }
}

@media (min-width: 1241px) and (max-width: 1730px) {
  .site-header--f .gnb-link {
    font-size: 15px;
    letter-spacing: -0.02em;
  }
}



@media (max-width: 1610px) {
  .gnb-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-header--f .site-header__bar {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-header--f.is-gnb-scrolled .site-header__bar {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1400px) {
  .gnb {
    max-width: min(100%, 680px);
  }

  .gnb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gnb-link {
    font-size: clamp(13px, 16px, 17px);
  }

  .gnb-submenu a {
    font-size: clamp(12px, 14px, 14px);
    padding: 7px 12px;
  }

  .gnb-submenu li:first-child {
    padding-top: 12px;
  }

  .site-header__logo-img {
    height: 25px;
  }

  .site-header__logo a {
    gap: 8px;
  }

  .site-header__logo-img-wrap {
    padding-right: 8px;
  }

  .site-header__logo-text {
    font-size: 14px;
  }

  .site-header--f .site-header__logo-img {
    height: 28px;
  }

  .site-header--f .site-header__logo-text {
    font-size: 16px;
  }

  .site-header--f .gnb-link {
    font-size: 14px;
  }

  .site-header__utils {
    gap: 8px;
    margin-left: 0;
  }

  .util-bar {
    gap: 5px;
  }

  .util-menu__select {
    min-width: 6.5rem;
    padding: 0.2rem 1.25rem 0.2rem 1.7rem;
    font-size: 13px;
  }

  .util-menu__select-icon svg {
    width: 12px;
    height: 12px;
  }

  .util-menu__select-arrow {
    right: 0.5rem;
    font-size: 11px;
  }

  .util-bar__btn {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    gap: 6px;
  }

  .util-bar a:has(.fa-user-circle) {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
    gap: 6px;
  }

  .util-bar__btn i {
    font-size: 11px;
  }

  .gnb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-bar-padding: 48px;
  }

  .gnb-link {
    font-size: clamp(13px, 1.1vw, 16px);
    white-space: normal;
    line-height: 1.25;
    padding: 0 0.25rem;
  }

  .util-bar__btn span {
    display: none;
  }

  .util-bar__btn {
    width: 38px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 1240px) {
  .site-header {
    z-index: var(--z-header-nav);
    overflow: visible;
  }

  :root {
    --header-bar-padding: 32px;
  }

  .site-header--b {
    height: auto;
  }

  .site-header--b .gnb-wrap {
    background-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .site-header--b .gnb-link,
  .site-header--b .site-header__logo-text,
  .site-header--b .util-menu__select,
  .site-header--b .util-menu__select-arrow {
    color: #1a1a1a;
  }

  .site-header--b .site-header__logo-img {
    filter: none;
  }

  .site-header--b .site-header__logo-img-wrap {
    border-right-color: rgba(0, 0, 0, 0.15);
  }

  .site-header--b .menu-btn__line {
    background: #1a1a1a;
  }

  .site-header--f .site-header__bar {
    padding: 0;
  }

  .site-header--f .gnb-wrap {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
    padding: 0 max(1.5rem, env(safe-area-inset-right, 0)) 0 max(1.5rem, env(safe-area-inset-left, 0));
    min-height: var(--gnb-bar-height);
  }

  .site-header--f .site-header__logo-text,
  .site-header--f .gnb-link {
    color: #fff;
  }

  .site-header--f .menu-btn__line {
    background: #fff;
  }

  .site-header--f.is-gnb-scrolled .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);
  }

  .site-header--f.is-gnb-scrolled .site-header__logo-text {
    color: #1a1a1a;
  }

  .site-header--f.is-gnb-scrolled .site-header__logo-img {
    filter: brightness(0);
  }

  .site-header--f.is-gnb-scrolled .site-header__logo-img-wrap {
    border-right-color: rgba(0, 0, 0, 0.15);
  }

  .site-header--f.is-gnb-scrolled .menu-btn__line {
    background: #1a1a1a;
  }

  .site-header--f .util-bar {
    display: none;
  }

  .site-header--f .util-menu__translate-group--lang {
    display: none;
  }

  .site-header--f.is-gnb-scrolled .site-header__bar,
  .site-header--f.is-nav-open .site-header__bar {
    padding: 0;
  }

  .site-header--f.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);
    border-radius: 0;
  }

  .site-header--f.is-nav-open .site-header__logo-text {
    color: #1a1a1a;
  }

  .site-header--f.is-nav-open .site-header__logo-img {
    filter: brightness(0);
  }

  .site-header--f.is-nav-open .site-header__logo-img-wrap {
    border-right-color: rgba(0, 0, 0, 0.15);
  }

  .site-header--f.is-nav-open .menu-btn__line {
    color: #1a1a1a;
    background: #1a1a1a;
  }

  .site-header--f.is-nav-open .gnb-item:not(.is-open) > .gnb-link {
    color: #111;
  }

  .site-header--f.is-nav-open .gnb-item.is-open > .gnb-link {
    color: #f28c1b;
  }

  .site-header__bar {
    min-height: var(--gnb-bar-height);
    padding-top: 0;
    padding-bottom: 0;
  }

  .util-bar {
    display: none;
  }

  .site-header--f .util-bar {
    display: none;
  }

  .gnb-backdrop {
    display: none !important;
  }

  .gnb-wrap {
    position: fixed;
    top: var(--gnb-sticky-top, 0px);
    left: 0;
    right: 0;
    z-index: var(--z-header-nav);
    max-width: none;
    margin: 0;
    padding: 0 max(1.5rem, env(safe-area-inset-right, 0)) 0 max(1.5rem, env(safe-area-inset-left, 0));
    align-items: center;
    min-height: var(--gnb-bar-height);
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
    transition:
            background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header:not(.site-header--f).is-gnb-scrolled .gnb-wrap,
  .site-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);
  }

  .site-header:not(.site-header--f).is-gnb-scrolled .menu-btn__line,
  .site-header.is-nav-open .menu-btn__line {
    background: #000;
  }

  .site-header.is-gnb-scrolled:not(.site-header--b):not(.site-header--f) .site-header__logo-img,
  .site-header.is-nav-open:not(.site-header--b) .site-header__logo-img {
    filter: brightness(0);
  }

  .site-header:not(.site-header--f).is-gnb-scrolled .site-header__logo-img-wrap,
  .site-header.is-nav-open .site-header__logo-img-wrap {
    border-right-color: #000;
  }

  .site-header:not(.site-header--f).is-gnb-scrolled .site-header__logo-text,
  .site-header.is-nav-open .site-header__logo-text {
    color: #000;
  }

  .site-header__utils {
    margin-left: auto;
    gap: 0.5rem;
  }

  .menu-btn {
    display: inline-flex;
  }

  .gnb-wrap::after {
    display: none;
  }

  .gnb {
    display: flex;
    position: fixed;
    top: calc(var(--gnb-bar-height) + var(--gnb-sticky-top, 0px));
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100dvh - var(--gnb-bar-height) - var(--gnb-sticky-top, 0px));
    max-height: calc(100dvh - var(--gnb-bar-height) - var(--gnb-sticky-top, 0px));
    z-index: calc(var(--z-header-nav) - 1);
    flex-direction: column;
    align-items: stretch;
    align-self: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0 0 calc(1.75rem + env(safe-area-inset-bottom, 0));
    box-sizing: border-box;
    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;
  }

  .site-header.is-nav-open .gnb {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s, 0s;
  }

  .gnb-mobile-util {
    display: block;
    flex-shrink: 0;
    margin-top: auto;
    padding: 1rem 1.25rem 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
  }

  .gnb-item {
    flex: 0 0 auto;
    align-self: auto;
    min-height: 0;
    height: auto;
    align-items: stretch;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .gnb-item::after {
    display: none;
  }

  .gnb-link {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0.875rem 1.25rem;
    box-sizing: border-box;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    white-space: normal;
    line-height: 1.35;
  }

  .gnb-item:has(.gnb-submenu) > .gnb-link {
    position: relative;
    padding-right: 3rem;
  }

  .gnb-item:has(.gnb-submenu) > .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;
    background: transparent;
    opacity: 1;
  }

  .gnb-item.is-open > .gnb-link::after {
    transform: rotate(225deg);
    margin-top: -2px;
  }

  .gnb-submenu {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    display: none;
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #f7f5fb;
    text-align: left;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    list-style: none;
    transition: none;
  }

  .gnb-item.is-open > .gnb-submenu {
    display: block;
  }

  .gnb-item.is-open {
    z-index: 2;
  }

  .gnb-submenu li:first-child {
    margin-top: 0;
    padding-top: 0;
  }

  .gnb-submenu a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 1.75rem;
    text-align: left;
    white-space: normal;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
  }

  .gnb-submenu a:hover {
    color: var(--primary);
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
  }
  .site-header--f .util-menu__select { color: #1a1a1a; padding: 0 1.75rem 0 0.25rem;}

  /* 모바일: 아코디언(is-open) 열림 시 데스크톱 :focus-within 스타일 방지 */
  .site-header--f .gnb-wrap:hover,
  .site-header--f .gnb-wrap:focus-within,
  .site-header--f:has(.gnb:hover) .gnb-wrap,
  .site-header--f:has(.gnb:focus-within) .gnb-wrap {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
  }

  .site-header--f.is-nav-open .gnb-wrap,
  .site-header--f.is-nav-open .gnb-wrap:hover,
  .site-header--f.is-nav-open .gnb-wrap:focus-within,
  .site-header--f.is-nav-open:has(.gnb:hover) .gnb-wrap,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .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);
  }

  .site-header--f.is-gnb-scrolled .gnb-wrap:hover,
  .site-header--f.is-gnb-scrolled .gnb-wrap:focus-within,
  .site-header--f.is-gnb-scrolled:has(.gnb:hover) .gnb-wrap,
  .site-header--f.is-gnb-scrolled:has(.gnb:focus-within) .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);
  }

  .site-header--f.is-nav-open:has(.gnb:hover) .site-header__logo-text,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .site-header__logo-text {
    color: #1a1a1a;
  }

  .site-header--f.is-nav-open:has(.gnb:hover) .site-header__logo-img,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .site-header__logo-img {
    filter: brightness(0);
  }

  .site-header--f.is-nav-open:has(.gnb:hover) .site-header__logo-img-wrap,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .site-header__logo-img-wrap {
    border-right-color: rgba(0, 0, 0, 0.15);
  }

  .site-header--f.is-nav-open:has(.gnb:hover) .menu-btn__line,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .menu-btn__line {
    background: #1a1a1a;
  }

  .site-header--f.is-nav-open:has(.gnb:hover) .gnb-item:not(.is-open) > .gnb-link,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .gnb-item:not(.is-open) > .gnb-link {
    color: #111;
  }

  .site-header--f.is-nav-open .gnb-item.is-open > .gnb-link,
  .site-header--f.is-nav-open:has(.gnb:hover) .gnb-item.is-open > .gnb-link,
  .site-header--f.is-nav-open:has(.gnb:focus-within) .gnb-item.is-open > .gnb-link {
    color: #f28c1b;
  }

  .site-header--f .gnb-submenu a {
    color: #333333;
  }


}

@media (max-width: 768px) {
  :root {
    --header-bar-padding: 24px;
    --gnb-bar-height: 72px;
  }

  .site-header--b {
    height: auto;
  }

  .site-header__bar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header__logo a {
    gap: 12px;
  }

  .site-header__logo-img-wrap {
    padding-right: 12px;
  }

  .site-header__logo-img {
    height: 25px;
  }

  .site-header__logo-text {
    font-size: 15px;
  }

  .gnb-wrap {
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .site-header--f .gnb-wrap {
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .site-header--f .site-header__logo-img {
    height: 26px;
  }

  .site-header--f .site-header__logo-text {
    font-size: 14px;
  }

  .menu-btn {
    width: 28px;
  }

  .gnb-link {
    padding: 0.9375rem 1rem;
    font-size: 16px;
  }

  .gnb-submenu a {
    padding: 0.8125rem 1rem 0.8125rem 1.5rem;
    font-size: 14px;
  }

  .gnb-mobile-util {
    padding: 0.875rem 1rem 0.375rem;
  }
}

@media (min-width: 1241px) and (max-width: 1440px) {
  .site-header--f .site-header__utils {
    gap: 6px;
  }

  .util-bar {
    gap: 3px;
  }

  .lang-box__trigger {
    min-height: 32px;
    padding: 4px 10px;
    gap: 6px;
    font-size: 12px;
  }

  .lang-box__icon,
  .lang-box__icon svg {
    width: 14px;
    height: 14px;
  }

  .lang-box__arrow {
    font-size: 9px;
  }

  .site-header--f .util-menu__translate-group--lang {
    height: 32px;
  }

  .site-header--f .util-menu__select {
    min-width: 5.5rem;
    height: 32px;
    padding: 0 1.4rem 0 1.8rem;
    font-size: 11px;
  }

  .util-bar__btn {
    height: 32px;
    padding: 0 12px;
    font-size: 11px;
    gap: 5px;
  }

  .util-bar__btn i {
    font-size: 11px;
  }

  .util-bar a:has(.fa-user-circle) {
    height: 32px;
    padding: 0 10px;
    font-size: 11px;
    gap: 5px;
  }

  .util-bar__btn { font-size: 12px;}
  .util-bar a:has(.fa-user-circle) { font-size: 12px;}

  .util-bar a:has(.fa-user-circle) i {
    font-size: 13px;
  }

  .site-header--f .site-header__logo-text { font-size: 14px;}
}


/* ----- Main (학과C) ----- */
.main-c {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .main-c {
  }
}

.intro-c {
  padding: 40px 0;
  background: #fff;
}

.intro-c__inner {
  width: 100%;
  max-width: var(--header-bar-max);
  margin: 0 auto;
  padding: 0 var(--header-bar-padding);
  position: relative;
}

.intro-c__head {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.intro-c__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  font-family: "SUIT", sans-serif;
  letter-spacing: -0.03em;
  color: #091515;
}

.intro-c__line {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.45;
}

.intro-c__line--gradient {
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.32;
  background: var(--gradient-c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-c__line--desc {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 100;
}

.intro-c__line strong {
  font-weight: 700;
}

.intro-c__visual {
  position: relative;
  z-index: 1;
}

.intro-c__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.intro-c__figure img {
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
}

.intro-c__cta {
  position: absolute;
  top: 120px;
  right: 120px;
  width: clamp(148px, 13vw, 200px);
  height: clamp(148px, 13vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease;
}

.intro-c__cta:hover {
  transform: scale(1.04);
}

.intro-c__cta-ring {
  position: absolute;
  inset: 0;
  animation: intro-c-ring-spin 24s linear infinite;
}

.intro-c__cta-ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.intro-c__cta-ring text {
  fill: url(#intro-c-ring-gradient);
  font-family: "SUIT", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.intro-c__cta-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: var(--gradient-c);
  color: #fff;
  text-align: center;
  font-size: clamp(12px, 1vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 32px rgba(253, 83, 146, 0.32);
}

.intro-c__cta-core i {
  font-size: 14px;
}

@keyframes intro-c-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1240px) {
  .intro-c__cta {
    right: var(--header-bar-padding);
  }
}

@media (max-width: 1400px) {
  .intro-c__head {
    padding-right: clamp(120px, 16vw, 200px);
  }
}

@media (max-width: 1024px) {
  .intro-c__head {
    padding-right: 0;
  }

  .intro-c__cta {
    top: auto;
    bottom: calc(clamp(220px, 40vw, 360px) - 44px);
    width: clamp(124px, 14vw, 156px);
    height: clamp(124px, 14vw, 156px);
  }
}

@media (max-width: 768px) {
  .intro-c {
    padding: 48px 0 56px;
  }

  .intro-c__cta {
    top: auto;
    bottom: calc(clamp(220px, 56vw, 320px) - 44px);
    right: var(--header-bar-padding);
    width: 132px;
    height: 132px;
  }

  .intro-c__figure img {
    height: clamp(220px, 56vw, 320px);
  }
}

@media (max-width: 480px) {
  .intro-c {
    padding: 40px 0 48px;
  }

  .intro-c__line {
    font-size: 22px;
  }

  .intro-c__line--gradient {
    font-size: 30px;
  }

  .intro-c__line--desc {
    font-size: 26px;
  }

  .intro-c__cta {
    width: 120px;
    height: 120px;
    bottom: calc(clamp(200px, 54vw, 280px) - 40px);
  }

  .intro-c__cta-core {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-c__cta-ring {
    animation: none;
  }
}

/* ----- Department intro (학과C) ----- */
.dept-c {
  padding: 0 0 70px;
  background: #fff;
}

.dept-c__inner {
  width: 100%;

  max-width: var(--header-bar-max);
  margin: 0 auto;
  padding: 0 var(--header-bar-padding);
}

.dept-c__panel {
  position: relative;
  border-radius: 24px;
  height: 926px;
  overflow: hidden;
  background:
          linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.55) 100%),
          url("../img/content_bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.dept-c__panel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 8vw, 160px);
}

.dept-c__content {
  flex: 0 1 40%;
  max-width: 525px;
  min-width: 0;
  color: #fff;
}

.dept-c__label {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #f9b72d;
}

.dept-c__title {
  margin: 0 0 40px;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.dept-c__desc {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dept-c__desc p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
  word-break: keep-all;
}

.dept-c__grid {
  flex: 0 0 auto;
  display: flex;
  gap: 23px;
}

.dept-c__col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 23px;
}

.dept-c__col:first-child {
  width: 393px;
}

.dept-c__col:last-child {
  width: 252px;
}

.dept-c-card {
  position: relative;
  flex: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 22px 18px 30px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dept-c-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.dept-c-card__title {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dept-c-card__icon {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
}

.dept-c-card--job {
  width: 393px;
  height: 255px;
  color: #fff;
  background:
          linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
          url("../img/box01_bg.jpg") center / cover no-repeat;
}

.dept-c-card--job .dept-c-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.dept-c-card--intro {
  width: 252px;
  height: 262px;
  color: #1a1a1a;
  background: #f5c733;
}

.dept-c-card--intro .dept-c-card__icon {
  background: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

.dept-c-card--roadmap {
  width: 252px;
  height: 262px;
  color: #1a1a1a;
  background: #fff;
}

.dept-c-card--roadmap .dept-c-card__icon {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

.dept-c-card--curriculum {
  width: 252px;
  height: 262px;
  color: #fff;
  background: #3b3488;
}

.dept-c-card--curriculum .dept-c-card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.dept-c-card--cert {
  width: 252px;
  height: 262px;
  color: #fff;
  background:
          linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
          url("../img/box02_bg.jpg") center / cover no-repeat;
}

.dept-c-card--cert .dept-c-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 1280px) {
  .dept-c__panel {
    height: auto;
  }

  .dept-c__panel-inner {
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 40px);
  }

  .dept-c__content {
    flex-basis: auto;
    max-width: 680px;
    width: 100%;
  }

  .dept-c__grid {
    width: 100%;
    max-width: 668px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .dept-c__panel-inner {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .dept-c {
    padding-bottom: 48px;
  }

  .dept-c__panel {
    border-radius: 20px;
  }

  .dept-c__panel-inner {
    padding: 32px 20px;
    gap: 28px;
  }

  .dept-c__grid {
    flex-direction: column;
    align-items: center;
    max-width: none;
  }

  .dept-c__col:first-child,
  .dept-c__col:last-child {
    width: 100%;
    align-items: stretch;
  }

  .dept-c__label {
    font-size: 20px;
  }

  .dept-c__title {
    margin-bottom: 28px;
  }
  .dept-c__col {flex-direction: row; flex-wrap: wrap; gap: 0; justify-content: space-between;}

  .dept-c-card--job {
    width: 48%;
    max-width: 393px;
    height: 170px;
  }

  .dept-c-card--curriculum,
  .dept-c-card--intro,
  .dept-c-card--roadmap,
  .dept-c-card--cert {
    width: 48%;
    height: 170px;
  }

  .dept-c-card--cert { margin-top: 20px;}
}

@media (min-width: 1921px) {
  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ----- Our Story (학과C) ----- */
.story-c {
  padding: 0px 0 100px;
  background: #fff;
}

.story-c__inner {
  width: 100%;
  max-width: var(--header-bar-max);
  margin: 0 auto;
  padding: 0 var(--header-bar-padding);
}

.story-c__head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.story-c__label {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #f9b72d;
}

.story-c__title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #091515;
}

.story-c__tab-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.story-c__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.story-c__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border: none;
  border-radius: 999px;
  background: #f3f3f3;
  color: #242424;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.story-c__tab:hover {
  background: #e8e8e8;
  color: #333;
}

.story-c__tab.is-active {
  background: #2d2d2d;
  color: #fff;
}

.story-c__tab.is-active:hover {
  background: #1a1a1a;
  color: #fff;
}

.story-c__more {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.story-c__more:hover {
  border-color: #bbb;
  color: #222;
  background: #fafafa;
}

.story-c__panel {
  display: none;
}

.story-c__panel.is-active {
  display: block;
}

.story-c__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-c-card {
  min-width: 0;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
}

.story-c-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.story-c-card__link:hover .story-c-card__title {
  color: var(--primary);
}

.story-c-card__thumb {
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: #f0f0f0;
}

.story-c-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.story-c-card__link:hover .story-c-card__thumb img {
  transform: scale(1.04);
}

.story-c-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story-c-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.story-c-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.story-c-card__cat--gallery {
  color: #4a7fd4;
}

.story-c-card__cat--gallery .story-c-card__dot {
  background: #4a7fd4;
}

.story-c-card__cat--notice {
  color: #f5a623;
}

.story-c-card__cat--notice .story-c-card__dot {
  background: #f5a623;
}

.story-c-card__cat--job {
  color: #6bc04b;
}

.story-c-card__cat--job .story-c-card__dot {
  background: #6bc04b;
}

.story-c-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #091515;
  transition: color 0.2s ease;
}

.story-c-card__date {
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

@media (max-width: 1240px) {
  .story-c__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .story-c__tab {
    padding: 10px 22px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .story-c {
    padding: 56px 0 72px;
  }

  .story-c__tab-bar {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .story-c__tabs {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: calc(100% - 52px);
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .story-c__tabs::-webkit-scrollbar {
    display: none;
  }

  .story-c__tab {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 15px;
  }

  .story-c__more {
    margin-left: auto;
  }

  .story-c__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .story-c {
    padding: 48px 0 64px;
  }

  .story-c__label {
    font-size: 20px;
  }

  .story-c__title {
    font-size: 28px;
  }

  .story-c__tab {
    padding: 8px 16px;
    font-size: 14px;
  }

  .story-c-card__thumb {
    border-radius: 14px;
  }
}

/* ----- CTA Banner (학과C) ----- */
.cta-c {
  padding: 0 0 70px;
  background: #fff;
}

.cta-c__inner {
  width: 100%;
  max-width: var(--header-bar-max);
  margin: 0 auto;
  padding: 0 var(--header-bar-padding);
}

.cta-c__banner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) clamp(24px, 4vw, 48px);
  background:
          linear-gradient(180deg, rgba(20, 12, 48, 0.35) 0%, rgba(30, 18, 62, 0.45) 100%),
          url("../img/cta_bg.jpg") center / cover no-repeat;
  background-color: #2a1f5c;
}

.cta-c__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.cta-c__sub {
  margin: 0 0 12px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.cta-c__title {
  margin: 0 0 clamp(36px, 4.5vw, 52px);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-c__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 600px;
}

.cta-c-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 14px 14px 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cta-c-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.cta-c-btn__label {
  flex: 1;
  text-align: left;
}

.cta-c-btn__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #3b3488;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .cta-c__grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cta-c {
    padding: 0 0 72px;
  }

  .cta-c__banner {
    border-radius: 28px;
    padding: 48px 20px;
  }

  .cta-c__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .cta-c-btn {
    min-height: 56px;
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .cta-c__banner {
    border-radius: 20px;
    padding: 40px 16px;
  }

  .cta-c__title {
    font-size: 24px;
  }

  .cta-c-btn {
    min-height: 52px;
    padding: 12px 12px 12px 20px;
    font-size: 14px;
  }

  .cta-c-btn__icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ----- Footer ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #383838;

}

.site-footer__family {
  background: #383838;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__family-selects {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__select-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);

}

.site-footer__select-wrap:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 18px 52px 18px 28px;
  border: none;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  outline: none;
}

.site-footer__select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

.site-footer__select option {
  color: #1a1a1a;
  background: #fff;
}

.site-footer__select-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  transform: translateY(-50%);
}

.site-footer__main {
  padding: 40px 0 48px;
}

.site-footer__inner {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
}

.site-footer__body {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__info {
  min-width: 0;
}

.site-footer__logo {
  margin: 0 0 28px;
}

.site-footer__logo a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-footer__logo-img-wrap {
  display: flex;
  align-items: center;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__logo-img {
  width: auto;
  height: 36px;
  filter: grayscale(100%);
  opacity: 0.55;
}

.site-footer__logo-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.site-footer__copy {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__address {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__top {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #6c4cc6;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease;
}

.site-footer__top i {
  font-size: 14px;
  line-height: 1;
}

.site-footer__top:hover {
  background: #5a3eb0;
}

@media (max-width: 1024px) {
  .site-footer__family-selects {
    flex-direction: column;
  }

  .site-footer__select-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer__select-wrap:first-child {
    border-left: none;
  }

  .site-footer__select-wrap:last-child {
    border-bottom: none;
  }

  .site-footer__select {
    padding: 16px 48px 16px 24px;
    font-size: 15px;
  }

  .site-footer__select-icon {
    right: 24px;
  }

  .site-footer__main {
    padding: 32px 0 40px;
  }

  .site-footer__body {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 72px;
  }

  .site-footer__top {
    position: absolute;
    right: var(--header-bar-padding);
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-footer__logo a {
    gap: 12px;
  }

  .site-footer__logo-img-wrap {
    padding-right: 12px;
  }

  .site-footer__logo-img {
    height: 30px;
  }

  .site-footer__logo-text {
    font-size: 15px;
  }

  .site-footer__copy,
  .site-footer__address {
    font-size: 12px;
    word-break: keep-all;
  }

  .site-footer__body {
    padding-bottom: 64px;
  }

  .site-footer__top {
    width: 48px;
    height: 48px;
    font-size: 10px;
  }
}

/* ==========================================================================
 * Top Banner (상단 공지) — major_2026_5 동일 구조
 * ========================================================================== */
.top-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 260;
  width: 100%;
  background: #f4f5f9;
  color: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-banner[hidden] {
  display: none !important;
}

.top-banner.is-closing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-banner__inner {
  position: relative;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 10px 52px;
  box-sizing: border-box;
  min-height: 130px;
  height: auto;
}

.top-banner__swiper {
  width: 100%;
  overflow: hidden;
}

.top-banner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 0 0 6px;
  box-sizing: border-box;
}

.top-banner__content {
  width: 100%;
  text-align: center;
  line-height: 1.5;
}

.top-banner__content a {
  color: #fff;
}

.top-banner__content p {
  width: 100%;
  height: 100%;
}

.top-banner__content p img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  max-height: 110px;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

.top-banner__pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50%;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  pointer-events: none;
}

.top-banner__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  pointer-events: auto;
}

.top-banner__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  box-shadow: none;
  background: #fff;
}

.top-banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #404040;
  font-size: 18px;
  cursor: pointer;
}

.top-banner__nav--prev {
  left: 12px;
}

.top-banner__nav--next {
  right: 12px;
}

.top-banner__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px 8px;
  width: 100%;
  min-height: 30px;
  margin-top: 4px;
  padding-top: 6px;
  box-sizing: border-box;
  font-size: 13px;
  z-index: 9;
  color: #000;
}

.top-banner__today {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
}

.top-banner__today input {
  margin: 0;
}

.top-banner__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.top-banner__close img {
  display: block;
  width: 17px;
  height: 17px;
  filter: brightness(0);
}

.top-banner.is-single .top-banner__nav,
.top-banner.is-single .top-banner__pagination {
  display: none;
}

@media (max-width: 900px) {
  .top-banner__inner {
    min-height: 0;
    padding: 8px 36px 8px;
  }

  .top-banner__slide {
    min-height: 80px;
    padding: 4px 0 0;
  }

  .top-banner__content p img {
    max-height: 80px;
  }

  .top-banner__nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .top-banner__nav--prev {
    left: 4px;
  }

  .top-banner__nav--next {
    right: 4px;
  }

  .top-banner__actions {
    gap: 4px 6px;
    min-height: 26px;
    margin-top: 2px;
    padding-top: 4px;
    font-size: 12px;
  }

  .top-banner__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .top-banner__today {
    gap: 4px;
  }

  .top-banner__today span {
    white-space: nowrap;
  }

  .top-banner__close {
    width: 24px;
    height: 24px;
  }

  .top-banner__close img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 420px) {
  .top-banner__inner {
    padding: 6px 28px 6px;
  }

  .top-banner__slide {
    min-height: 72px;
  }

  .top-banner__content p img {
    max-height: 72px;
  }
}

@media (max-width: 380px) {
  .top-banner__pagination {
    justify-content: flex-start;
    padding-left: 2px !important;
  }

  .top-banner__today span {
    font-size: 11px;
  }
}

/* Google Translate */
body {
  top: 0 !important;
}

iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
}

body > .skiptranslate {
  display: none !important;
}