@charset "utf-8";
@import url(../../../css/common/fonts/SUIT.css);

:root {
	--primary: #573483;
	--content-max: 1300px;
	--header-padding: 40px;
	--gnb-bar-height: 58px;
	--gnb-mega-panel-height: 320px;
	--z-header: 100;
	--color-white: #fff;
	--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%;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ----- Hero ----- */
.hero-g {
	position: relative;
	height: 700px;
	overflow: visible;
}

.hero-g__swiper {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.hero-g__swiper .swiper-slide {
	height: 100%;
}

.hero-g__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-g__dim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
					180deg,
					rgba(0, 0, 0, 0.15) 0%,
					rgba(0, 0, 0, 0.08) 40%,
					rgba(0, 0, 0, 0.35) 100%
	);
	pointer-events: none;
}

.hero-g__text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 0 calc(clamp(48px, 8vh, 96px) + 70px);
	pointer-events: none;
}

.hero-g__lead {
	margin: 0 0 10px;
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.92);
}

.hero-g__title {
	margin: 0;
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: #fff;
}

.hero-g__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 0 clamp(48px, 8vh, 96px);
}

.hero-g__controls {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.hero-g__ctrl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	color: #fff;
	font-size: 14px;
	transition: opacity 0.2s ease;
}

.hero-g__ctrl:hover {
	opacity: 0.75;
}

.hero-g__ctrl--pause {
	width: 42px;
	height: 42px;
	border: none;
	font-size: 42px;
	line-height: 1;
}

.hero-g__counter {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	min-width: 3.5rem;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.9);
}

.hero-g__counter-current {
	font-weight: 600;
}

/* ----- Header (학과G) ----- */
.site-header--g {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-header);
	padding: clamp(20px, 3vw, 36px) var(--header-padding) 0;
}

.site-header__top-inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	max-width: var(--content-max);
	margin: 0 auto;
}

.site-header--g .site-header__logo {
	margin: 0;
}

.site-header--g .site-header__logo a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.site-header--g .site-header__logo-img-wrap {
	display: flex;
	align-items: center;
	padding-right: 14px;
	border-right: 1px solid rgba(255, 255, 255, 0.85);
}

.site-header__logo-picture {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-header--g .site-header__logo-img {
	width: auto;
	height: clamp(36px, 4vw, 42px);
}

.site-header--g .site-header__logo-text {
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #fff;
	white-space: nowrap;
}

.site-header__util {
	position: absolute;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateY(-50%);
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	white-space: nowrap;
}

.site-header__util a:hover {
	opacity: 0.8;
}

.site-header__util-divider {
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
	user-select: none;
}

.util-menu__lang {
	position: relative;
	display: inline-flex;
	align-items: center;
}

/* ==========================================================================
 * Language Box (lang-box) — major_2026_5/6 동일 구조
 * ========================================================================== */
.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 .site-header__util,
	.site-header:has(.lang-box.is-open) .site-header__util {
		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/6 동일 구조
 * ========================================================================== */
.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: var(--primary);
	background: rgba(0, 0, 0, 0.03);
}

.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;
	top: 50%;
	display: flex;
	pointer-events: none;
	transform: translateY(-50%);
}

.util-menu__select {
	appearance: none;
	-webkit-appearance: none;
	min-width: 6.5rem;
	padding: 0 1.25rem 0 1.375rem;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	outline: none;
}

.util-menu__select option {
	color: #1a1a1a;
	background: #fff;
}

.util-menu__select-arrow {
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	pointer-events: none;
	transform: translateY(-50%);
}

/* GNB pill bar */
.site-header__gnb-wrap {
	position: relative;
	display: flex;
	align-items: stretch;
	max-width: min(1300px, calc(100% - 32px));
	min-height: var(--gnb-bar-height);
	margin: clamp(16px, 2.5vw, 28px) auto 0;
}

.gnb-bar {
	position: absolute;
	inset: 0;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
	pointer-events: none;
}

.site-header__menu-btn {
	display: none;
}

.site-header__top .gnb-bar__more {
	display: none;
}

.gnb-bar__menu-btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
}

.gnb {
	display: flex;
	flex: 1;
	align-items: stretch;
	justify-content: center;
	position: relative;
	z-index: 1;
	min-width: 0;
	min-height: var(--gnb-bar-height);
	padding: 0 8px 0 20px;
}

.gnb-item {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 0;
	min-width: 0;
}

.gnb-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: var(--gnb-bar-height);
	padding: 0 0.35rem;
	font-size: clamp(16px, 16px, 18px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1a1a1a;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.gnb-item:hover .gnb-link,
.gnb-item:focus-within .gnb-link {
	color: var(--primary);
}

.gnb-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	width: 100%;
	min-width: 0;
	height: var(--gnb-mega-panel-height);
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	overflow: hidden;
	transform: translateY(-4px);
	transition:
					transform 0.22s ease,
					opacity 0.22s ease,
					max-height 0.26s ease,
					visibility 0s linear 0.22s;
}

.gnb-item:not(:has(~ .gnb-item)) .gnb-submenu {
}

.gnb-submenu li:first-child {
	padding-top: 14px;
}

.gnb-submenu a {
	display: block;
	padding: 7px 12px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
}

.gnb-submenu a:hover {
	color: var(--primary);
}

.gnb-bar::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 0;
	height: 0;
	margin-top: -1px;
	background: #fff;
	border-radius: 0 0 24px 24px;
	/*box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);*/
	opacity: 0;
	visibility: hidden;
	transition: height 0.24s ease, opacity 0.24s ease, visibility 0s linear 0.24s;
	pointer-events: none;
}

@media (min-width: 1241px) {
	.site-header__gnb-wrap.is-measuring-gnb .gnb-submenu {
		visibility: hidden !important;
		opacity: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		overflow: visible !important;
		transform: none !important;
		pointer-events: none !important;
	}

	.site-header__gnb-wrap:has(.gnb:hover) .gnb-bar,
	.site-header__gnb-wrap:has(.gnb:focus-within) .gnb-bar,
	.gnb-bar.is-gnb-open {
		border-radius: 15px 15px 0 0;
	}

	.site-header__gnb-wrap:has(.gnb:hover) .gnb-bar::after,
	.site-header__gnb-wrap:has(.gnb:focus-within) .gnb-bar::after,
	.gnb-bar.is-gnb-open::after {
		height: var(--gnb-mega-panel-height);
		opacity: 1;
		visibility: visible;
		border-radius: 0 0 24px 24px;
		transition-delay: 0s, 0s, 0s;
	}

	.site-header__gnb-wrap:has(.gnb:hover) .gnb-bar__menu-btn,
	.site-header__gnb-wrap:has(.gnb:focus-within) .gnb-bar__menu-btn,
	.site-header__gnb-wrap:has(.gnb-bar.is-gnb-open) .gnb-bar__menu-btn {
		border-radius: 0 15px 0 0;
	}

	.site-header__gnb-wrap:has(.gnb:hover) .gnb-submenu,
	.site-header__gnb-wrap:has(.gnb:focus-within) .gnb-submenu,
	.site-header__gnb-wrap:has(.gnb-bar.is-gnb-open) .gnb-submenu {
		opacity: 1;
		visibility: visible;
		max-height: var(--gnb-mega-panel-height);
		transform: translateY(0);
		transition-delay: 0s, 0s, 0s, 0s;
	}

	.site-header__gnb-wrap:has(.gnb-bar.gnb-mega-force-closed) .gnb-bar::after,
	.gnb-bar.gnb-mega-force-closed::after {
		height: 0 !important;
		opacity: 0 !important;
		visibility: hidden !important;
		transition-delay: 0s, 0s, 0.24s;
	}

	.site-header__gnb-wrap:has(.gnb-bar.gnb-mega-force-closed) .gnb-submenu {
		transform: translateY(-4px) !important;
		opacity: 0 !important;
		visibility: hidden !important;
		max-height: 0 !important;
		transition-delay: 0s, 0s, 0s, 0.24s;
	}

	.site-header--g.is-gnb-open .gnb-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 0;
		background: transparent;
	}

	.site-header--g.is-gnb-open .site-header__gnb-wrap {
		position: relative;
		z-index: 1;
	}
}

.gnb-bar__more {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	width: 58px;
	min-height: var(--gnb-bar-height);
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0 15px 15px 0;
	background: var(--primary);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.gnb-bar__more:hover {
	background: #462968;
}

.gnb-bar__more i {
	line-height: 1;
}

.gnb-mobile-util {
	display: none;
}

.gnb-backdrop {
	display: none;
}


@media (max-width: 1440px) {
	.hero-g {
		min-height: 700px;
		height: 700px;
	}

	.hero-g__lead {
		font-size: clamp(15px, 1.4vw, 18px);
	}

	.hero-g__title {
		font-size: clamp(30px, 3.8vw, 48px);
	}

	.hero-g__text {
		padding-bottom: calc(clamp(40px, 6vh, 72px) + 64px);
	}

	.hero-g__content {
		padding-bottom: clamp(40px, 6vh, 72px);
	}
}

@media (max-width: 1340px) {
	.hero-g__text,
	.hero-g__content {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* ----- Responsive: Header / Hero ----- */
@media (max-width: 1240px) {
	:root {
		--header-padding: 32px;
		--gnb-bar-height: 54px;
		/* 열린 헤더 높이 = padding-top + 바 높이 + padding-bottom(22px) */
		--gnb-mobile-header-h: calc(var(--header-padding) + var(--gnb-bar-height) + 22px);
	}

	.hero-g {
		min-height: 620px;
		height: 620px;
	}

	.hero-g__lead {
		font-size: 15px;
	}

	.hero-g__title {
		font-size: clamp(28px, 4vw, 42px);
	}

	.hero-g__text {
		padding-bottom: calc(44px + 60px);
	}

	.hero-g__content {
		padding-bottom: 44px;
	}

	.site-header__util {
		display: none;
	}

	.site-header__top-inner {
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: none;
		margin: 0;
	}

	.site-header--g .site-header__logo {
		margin: 0;
	}

	.site-header__top .gnb-bar__more,
	.site-header__menu-btn {
		display: inline-flex;
		flex-shrink: 0;
		width: 48px;
		min-height: 48px;
		height: 48px;
		margin: 0;
		border-radius: 12px;
		align-self: center;
	}

	.gnb-bar__menu-btn {
		display: none !important;
	}

	.site-header__gnb-wrap {
		display: block;
		margin: 0;
		min-height: 0;
		max-width: none;
	}

	.gnb-bar {
		display: none;
	}

	.gnb-bar::after {
		display: none;
	}

	.gnb {
		display: flex;
		position: fixed;
		top: calc(var(--gnb-mobile-header-h) + var(--gnb-sticky-top, 0px));
		left: 0;
		right: 0;
		bottom: auto;
		z-index: calc(var(--z-header) - 1);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: 100%;
		max-width: none;
		min-height: 0;
		height: calc(100dvh - var(--gnb-mobile-header-h) - var(--gnb-sticky-top, 0px));
		max-height: calc(100dvh - var(--gnb-mobile-header-h) - var(--gnb-sticky-top, 0px));
		margin: 0;
		padding: 0 0 calc(1.5rem + env(safe-area-inset-bottom, 0));
		box-sizing: border-box;
		background: #fff;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		visibility: hidden;
		pointer-events: none;
		transition: transform 0.32s ease, visibility 0s linear 0.32s;
	}

	.site-header--g.is-nav-open .gnb {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
		transition-delay: 0s, 0s;
	}

	.gnb-item {
		flex: 0 0 auto;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.gnb-item:first-child {
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}

	.gnb-link {
		justify-content: flex-start;
		min-height: 0;
		height: auto;
		padding: 0.9rem 1.25rem;
		font-size: 17px;
		font-weight: 600;
		white-space: normal;
	}

	.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;
	}

	.gnb-item.is-open > .gnb-link::after {
		transform: rotate(225deg);
		margin-top: -2px;
	}

	.gnb-submenu {
		position: static;
		display: none;
		width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		border: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.06);
		background: #f8f8f8;
		opacity: 1;
		visibility: visible;
		transform: none;
		overflow: visible;
		transition: none;
	}
	.gnb-submenu li:first-child {padding-top: 0;}

	.gnb-item.is-open > .gnb-submenu {
		display: block;
	}

	.gnb-submenu a {
		padding: 0.75rem 1.25rem 0.75rem 1.75rem;
		text-align: left;
		font-size: 15px;
	}

	.gnb-mobile-util {
		display: block;
		margin-top: auto;
		padding: 1rem 1.25rem ;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
		background: #fafafa;
	}

	.gnb-mobile-util__list a {
		display: flex;
		align-items: center;
		padding: 0.875rem 0;
		font-size: 15px;
		font-weight: 500;
		color: #333;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		gap: 5px;
	}

	.gnb-mobile-util__lang {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.875rem 1.5rem 0.875rem 0;
	}

	.gnb-mobile-util__select {
		flex: 1;
		appearance: none;
		border: none;
		background: transparent;
		font-family: inherit;
		font-size: 15px;
		color: #333;
		outline: none;
	}

	.gnb-mobile-util__select-arrow {
		position: absolute;
		right: 0;
		font-size: 12px;
		color: #666;
		pointer-events: none;
	}

	.site-header--g.is-nav-open .site-header__top {
		position: fixed;
		top: var(--gnb-sticky-top, 0px);
		left: 0;
		right: 0;
		z-index: var(--z-header);
		padding:  var(--header-padding);
		background: #fff;
		padding-bottom: 22px;
	}

	.site-header--g.is-nav-open .site-header__top-inner {
		min-height: var(--gnb-bar-height);
		align-items: center;
		justify-content: space-between;
	}

	.site-header--g.is-nav-open .site-header__menu-btn {
		border-radius: 12px;
		width: 48px;
		height: 48px;
	}

	.site-header--g.is-nav-open .site-header__logo-img {
		filter: brightness(0);
	}

	.site-header--g.is-nav-open .site-header__logo-text {
		color: #1a1a1a;
	}

	.site-header--g.is-nav-open .site-header__logo-img-wrap {
		border-right-color: rgba(0, 0, 0, 0.15);
	}

	.gnb-backdrop {
		display: none !important;
	}

	body.is-nav-open,
	html.is-nav-open {
		overflow: hidden;
		touch-action: none;
		height: 100%;
	}

	body.is-nav-open .site-footer__top {
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 1024px) {
	.hero-g {
		min-height: 560px;
		height: 560px;
	}

	.hero-g__lead {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.hero-g__title {
		font-size: clamp(28px, 5vw, 40px);
	}

	.hero-g__text {
		padding-bottom: calc(48px + 56px);
	}

	.hero-g__content {
		padding-bottom: 48px;
	}

	.hero-g__controls {
		gap: 10px;
	}

	.hero-g__ctrl {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.hero-g__ctrl--pause {
		width: 38px;
		height: 38px;
		font-size: 38px;
	}

	.hero-g__counter {
		font-size: 13px;
	}

	.site-header--g {
		padding-top: clamp(16px, 2.5vw, 28px);
	}

	.site-header--g .site-header__logo-img {
		height: 36px;
	}

	.site-header--g .site-header__logo-text {
		font-size: 16px;
	}

	.board-g,
	.video-g {
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.calendar-g {
		padding-bottom: 72px;
	}

	.board-g__card-link {
		min-height: 240px;
		padding: 36px 24px;
	}

	.board-g__badge {
		font-size: 14px;
	}

	.board-g__card-title {
		font-size: 17px;
	}

	.calendar-g__date-range {
		font-size: clamp(20px, 2.4vw, 26px);
	}

	.calendar-g__event-title {
		font-size: 16px;
	}

	.video-g__title-sub {
		font-size: 17px;
	}

	.video-g__title-main {
		font-size: clamp(26px, 3.5vw, 36px);
	}
}

@media (max-width: 768px) {
	:root {
		--header-padding: 24px;
		--gnb-bar-height: 50px;
	}

	.hero-g {
		min-height: 480px;
		height: 480px;
	}

	.hero-g__lead {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.hero-g__title {
		font-size: clamp(26px, 6.5vw, 34px);
	}

	.hero-g__text {
		padding-bottom: calc(36px + 52px);
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-g__content {
		padding-bottom: 36px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-g__controls {
		gap: 8px;
	}

	.hero-g__ctrl {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}

	.hero-g__ctrl--pause {
		width: 34px;
		height: 34px;
		font-size: 34px;
	}

	.hero-g__counter {
		min-width: 3rem;
		font-size: 12px;
	}

	.site-header--g {
		padding-top: 16px;
	}

	.site-header--g .site-header__logo a {
		gap: 10px;
	}

	.site-header--g .site-header__logo-img-wrap {
		padding-right: 10px;
	}

	.site-header--g .site-header__logo-img {
		height: 32px;
	}

	.site-header--g .site-header__logo-text {
		font-size: 15px;
	}

	.site-header__top .gnb-bar__more,
	.site-header__menu-btn {
		width: 44px;
		min-height: 44px;
		height: 44px;
	}

	.gnb-link {
		padding: 0.8rem 1.1rem;
		font-size: 16px;
	}

	.gnb-submenu a {
		padding: 0.65rem 1.1rem 0.65rem 1.5rem;
		font-size: 14px;
	}

	.gnb-mobile-util {
		padding: 0.875rem 1.1rem;
	}

	.gnb-mobile-util__list a,
	.gnb-mobile-lang__trigger {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	:root {
		--header-padding: 16px;
		--gnb-bar-height: 48px;
	}

	.hero-g {
		min-height: 420px;
		height: 420px;
	}

	.hero-g__lead {
		font-size: 13px;
		line-height: 1.45;
	}

	.hero-g__title {
		font-size: clamp(24px, 7.5vw, 30px);
	}

	.hero-g__text {
		padding-bottom: calc(28px + 48px);
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero-g__content {
		padding-bottom: 28px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero-g__ctrl--pause {
		width: 32px;
		height: 32px;
		font-size: 32px;
	}

	.site-header--g {
		padding-top: 12px;
	}

	.site-header--g .site-header__logo a {
		gap: 8px;
	}

	.site-header--g .site-header__logo-img-wrap {
		padding-right: 8px;
	}

	.site-header--g .site-header__logo-img {
		height: 28px;
	}

	.site-header--g .site-header__logo-text {
		font-size: 14px;
	}

	.site-header__top .gnb-bar__more,
	.site-header__menu-btn {
		width: 40px;
		min-height: 40px;
		height: 40px;
		border-radius: 10px;
	}

	.site-header--g.is-nav-open .site-header__menu-btn {
		width: 40px;
		height: 40px;
	}

	.gnb-bar {
		max-width: calc(100% - 16px);
	}

	.gnb-link {
		padding: 0.75rem 1rem;
		font-size: 15px;
	}

	.gnb-item:has(.gnb-submenu) > .gnb-link {
		padding-right: 2.75rem;
	}

	.gnb-item:has(.gnb-submenu) > .gnb-link::after {
		right: 1.1rem;
	}

	.gnb-submenu a {
		padding: 0.6rem 1rem 0.6rem 1.35rem;
		font-size: 13px;
	}

	.board-g__tab-bar {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.board-g__tab-bar::-webkit-scrollbar {
		display: none;
	}

	.board-g__tab {
		flex: 0 0 auto;
		min-height: 34px;
		padding: 0 14px;
		font-size: 14px;
	}

	.board-g__more,
	.calendar-g__more {
		font-size: 28px;
	}

	.board-g__title,
	.calendar-g__title {
		font-size: 22px;
	}

	.board-g__card-link {
		padding: 18px 16px;
		gap: 10px;
		border-radius: 10px;
	}

	.board-g__badge {
		min-height: 24px;
		padding: 2px 10px;
		font-size: 12px;
	}

	.board-g__card-title {
		font-size: 15px;
	}

	.board-g__card-date {
		font-size: 13px;
	}

	.calendar-g__date-range {
		font-size: 22px;
	}

	.calendar-g__date-meta {
		font-size: 12px;
	}

	.calendar-g__cat {
		min-height: 28px;
		padding: 0 12px;
		font-size: 13px;
	}

	.calendar-g__event-title {
		font-size: 15px;
	}

	.calendar-g__month {
		min-width: 44px;
		min-height: 42px;
		font-size: 13px;
	}

	.video-g__title-sub {
		font-size: 15px;
	}
}

/* ----- Board (Notice) ----- */
.board-g {
	padding: 80px 0 88px;
	background: #fff;
}

.board-g__inner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.board-g__head {
	margin-bottom: 32px;
}

.board-g__title-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.board-g__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 0;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.board-g__title-ko {
	color: var(--primary);
}

.board-g__title-en {
	color:#000;
	font-weight: 800;
}

.board-g__more {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 45px;
	transition: background-color 0.2s ease;
	cursor: pointer;
}



.board-g__tab-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.board-g__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 22px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: #1a1a1a;
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.board-g__tab:hover {
	color: #555;
}

.board-g__tab.is-active {
	background: #4a4a4a;
	color: #fff;
}

.board-g__tab.is-active:hover {
	color: #fff;
}

.board-g__panel {
	display: none;
}

.board-g__panel.is-active {
	display: block;
}

.board-g__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.board-g__card {
	min-width: 0;
}

.board-g__card.is-empty {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	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;
}

.board-g__card-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	height: 100%;
	min-height: 280px;
	padding: 50px 30px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.board-g__card-link:hover {
	border-color: #d0d0d0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.board-g__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 2px 14px;
	border-radius: 999px;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.board-g__badge--purple {
	border: 1px solid var(--primary);
	color: var(--primary);
}

.board-g__badge--green {
	border: 1px solid #2aab6f;
	color: #2aab6f;
}

.board-g__badge--orange {
	border: 1px solid #e65100;
	color: #e65100;
}

.board-g__card-title {
	display: -webkit-box;
	margin: 0;
	font-size: clamp(17px, 1.4vw, 20px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.03em;
	color: #1a1a1a;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: keep-all;
	text-overflow: ellipsis;
}

.board-g__card-date {
	margin-top: auto;
	font-size: 14px;
	font-weight: 400;
	color: #999;
	letter-spacing: 0;
}

@media (max-width: 1100px) {
	.board-g__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.board-g {
		padding: 64px 0 72px;
	}

	.board-g__more {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.board-g {
		padding: 48px 0 56px;
	}

	.board-g__head {
		margin-bottom: 20px;
	}

	.board-g__title-row {
		margin-bottom: 14px;
		gap: 12px;
	}

	.board-g__tab-bar {
		gap: 6px;
	}

	.board-g__tab {
		min-height: 36px;
		padding: 0 16px;
		font-size: 15px;
	}

	.board-g__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.board-g__card-link {
		min-height: 0;
		padding: 18px 16px;
		gap: 12px;
	}

	.board-g__badge {
		min-height: 26px;
		padding: 2px 12px;
		font-size: 13px;
	}

	.board-g__card-title {
		font-size: 16px;
	}

	.board-g__card-date {
		font-size: 13px;
	}

	.board-g__more {
		font-size: 30px;
	}

	.board-g__title {
		font-size: clamp(22px, 5.5vw, 26px);
	}
}

@media (max-width: 1510px) {
	.board-g__inner,
	.calendar-g__inner,
	.video-g__inner,
	.site-footer__inner,
	.site-footer__family-selects {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 1100px) {
	.board-g__inner,
	.calendar-g__inner,
	.video-g__inner,
	.site-footer__inner,
	.site-footer__family-selects {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (max-width: 768px) {
	.board-g__inner,
	.calendar-g__inner,
	.video-g__inner,
	.site-footer__inner,
	.site-footer__family-selects {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (max-width: 480px) {
	.board-g__inner,
	.calendar-g__inner,
	.video-g__inner,
	.site-footer__inner,
	.site-footer__family-selects {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ----- Calendar (KWU) ----- */
.calendar-g {
	padding: 0 0 88px;
	background: #fff;
}

.calendar-g__inner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.calendar-g__head {
	margin-bottom: 28px;
}

.calendar-g__title-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
}

.calendar-g__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 0;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.calendar-g__title-kw {
	color: var(--primary);
}

.calendar-g__title-en {
	color: #000;
	font-weight: 800;
}

.calendar-g__more {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 45px;
	transition: opacity 0.2s ease;
}

.calendar-g__more:hover {
	opacity: 0.75;
}

@media (max-width: 1100px) {
	.calendar-g__more {
		font-size: 36px;
	}
}

.calendar-g__months {
	display: flex;
	align-items: flex-end;
	flex-wrap: nowrap;
	gap: 0;
	margin: 0 0 -1px;
	padding: 10px;
	border-radius: 16px;
	background: var(--primary);
	overflow: visible;
}

.calendar-g__month {
	position: relative;
	flex: 1 1 0;
	flex-shrink: 0;
	min-width: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	padding: 8px 6px;
	border: none;
	border-radius: 12px;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.calendar-g__month:hover:not(.is-active) {
	color: rgba(255, 255, 255, 0.85);
}

.calendar-g__month.is-active {
	background: #fff;
	color: var(--primary);
	opacity: 1;
}

.calendar-g__month-badge {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 5px;
	border-radius: 999px;
	background: #f58220;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	border: 2px solid #fff;
}

.calendar-g__month-label {
	white-space: nowrap;
	opacity: 0.7;
}
.calendar-g__month.is-active .calendar-g__month-label {
	opacity: 1;
}
.calendar-g__panel {
	display: none;
}

.calendar-g__panel.is-active {
	display: block;
}

.calendar-g__events {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 20px 0 0;
	list-style: none;
}

.calendar-g__event.is-page-hidden {
	display: none;
}

.calendar-g__event.is-empty {
	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-g__event-link {
	display: grid;
	grid-template-columns: minmax(140px, 200px) auto 1fr;
	align-items: center;
	gap: 20px 24px;
	padding: 22px 28px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calendar-g__event-link:hover {
	border-color: #d5d5d5;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.calendar-g__date {
	display: flex;
	align-items: center;
	gap: 8px 10px;
	min-width: 0;
}

.calendar-g__date-range {
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--primary);
	width: 130px;
}

.calendar-g__date-meta {
	font-size: 14px;
	font-weight: 400;
	color: #aaa;
	letter-spacing: 0;
	white-space: nowrap;
	width: 130px;
	text-align: center;
}

.calendar-g__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 16px;
	border: 1px solid var(--primary);
	border-radius: 999px;
	background: transparent;
	color: var(--primary);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.calendar-g__event-title {
	margin: 0;
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.03em;
	color: #1a1a1a;
	word-break: keep-all;
}

.calendar-g__pager {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.calendar-g__pager.is-visible {
	display: flex;
}

.calendar-g__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.calendar-g__nav--prev {
	background: #1a1a1a;
	color: #fff;
}

.calendar-g__nav--prev:hover:not(:disabled) {
	background: #333;
}

.calendar-g__nav--next {
	background: #1a1a1a;
	color: #fff;
}

.calendar-g__nav--next:hover:not(:disabled) {
	background: #333;
}

.calendar-g__nav:disabled {
	background: #e0e0e0;
	color: #b0b0b0;
	cursor: default;
}

@media (max-width: 1100px) {
	.calendar-g {
		padding-bottom: 72px;
	}

	.calendar-g__event-link {
		grid-template-columns: minmax(120px, 180px) auto 1fr;
		gap: 16px 20px;
		padding: 18px 22px;
	}
}

@media (max-width: 992px) {
	.calendar-g__event-link {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 16px 18px;
	}

	.calendar-g__date {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 8px 12px;
	}

	.calendar-g__date-range,
	.calendar-g__date-meta {
		width: auto;
	}

	.calendar-g__date-meta {
		text-align: left;
	}
}

@media (max-width: 768px) {
	.calendar-g {
		padding-bottom: 56px;
	}

	.calendar-g__head {
		margin-bottom: 18px;
	}

	.calendar-g__title-row {
		gap: 12px;
	}

	.calendar-g__more {
		font-size: 30px;
	}

	.calendar-g__months {
		padding: 24px 8px 8px;
		border-radius: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		scrollbar-width: none;
	}

	.calendar-g__months::-webkit-scrollbar {
		display: none;
	}

	.calendar-g__month {
		flex: 0 0 auto;
		min-width: 48px;
		min-height: 46px;
		padding: 8px 10px 12px;
		font-size: 14px;
	}

	.calendar-g__month-badge {
		top: -16px;
		min-width: 22px;
		height: 22px;
		font-size: 12px;
		border-width: 1px;
	}

	.calendar-g__events {
		gap: 10px;
		padding-top: 16px;
	}

	.calendar-g__event-link {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 14px 16px;
		border-radius: 10px;
	}

	.calendar-g__date {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.calendar-g__date-range,
	.calendar-g__date-meta {
		width: auto;
	}

	.calendar-g__date-range {
		font-size: 22px;
	}

	.calendar-g__date-meta {
		text-align: left;
		font-size: 13px;
	}

	.calendar-g__cat {
		min-height: 28px;
		padding: 0 12px;
		font-size: 13px;
	}

	.calendar-g__event-title {
		font-size: 15px;
	}

	.calendar-g__title {
		font-size: clamp(22px, 5.5vw, 26px);
	}

	.calendar-g__pager {
		margin-top: 18px;
		gap: 10px;
	}

	.calendar-g__nav {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.calendar-g__more {
		font-size: 28px;
	}

	.calendar-g__title-row {
		gap: 10px;
	}
}

/* ----- Video (SNS) ----- */
.video-g {
	padding: 88px 0 96px;
	background-color: #f3eef8;
	background-image: url("../images/main/sns_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.video-g__inner {
	width: 100%;
	max-width: var(--content-max);
	margin: 0 auto;
}

.video-g__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}

.video-g__title {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.video-g__title-sub {
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 500;
	color: #1a1a1a;
}

.video-g__title-main {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	color: var(--primary);
}

.video-g__channel {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 4px;
	background: var(--primary);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.02em;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.video-g__channel:hover {
	opacity: 0.88;
}

.video-g__channel i {
	font-size: 20px;
	line-height: 1;
}

.video-g__slider {
	--video-slides-per-view: 3;
	--video-slide-gap: 28px;
	position: relative;
	overflow: hidden;
}

.video-g__swiper {
	width: 100%;
	overflow: visible;
	padding: 24px 0 40px;
}

.video-g__swiper .swiper-slide {
	height: auto;
	transition: transform 0.4s ease;
}

.video-g__swiper .swiper-slide.is-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 100% !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
	margin: 0 !important;
	min-height: 200px;
	height: auto;
	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;
}

.video-g__slider:has(.swiper-slide.is-empty) .video-g__scrollbar {
	display: none;
}

.video-g__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 18px 18px 22px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(87, 52, 131, 0.1);
	transform: scale(0.88);
	transform-origin: center center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.swiper-slide-active .video-g__card {
	transform: scale(1);
	box-shadow: 0 14px 40px rgba(87, 52, 131, 0.16);
}

.video-g__media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
}

.video-g__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.video-g__body {
	padding-top: 18px;
}

.video-g__card-title {
	display: -webkit-box;
	margin: 0;
	font-size: clamp(15px, 1.2vw, 18px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.03em;
	color: #1a1a1a;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: keep-all;
}

.swiper-slide-active .video-g__card-title {
	font-size: clamp(16px, 1.35vw, 20px);
}

.video-g__card-sub {
	display: none;
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 400;
	color: #aaa;
	letter-spacing: 0.02em;
}

.swiper-slide-active .video-g__card-sub {
	display: block;
}

.video-g .video-g__scrollbar.swiper-scrollbar {
	position: relative;
	left: auto;
	bottom: auto;
	width: calc(
					(100% - (var(--video-slide-gap) * (var(--video-slides-per-view) - 1))) /
					var(--video-slides-per-view)
	) !important;
	max-width: 100%;
	height: 4px;
	margin: 72px auto 0;
	border-radius: 999px;
	background: rgba(87, 52, 131, 0.12);
}

.video-g__scrollbar .swiper-scrollbar-drag {
	border-radius: 999px;
	background: var(--primary);
}

@media (max-width: 1100px) {
	.video-g__slider {
		--video-slides-per-view: 2.2;
		--video-slide-gap: 20px;
	}

	.video-g {
		padding: 72px 0 80px;
	}

	.video-g__head {
		margin-bottom: 36px;
	}

	.video-g__card {
		padding: 14px 14px 18px;
		transform: scale(0.9);
	}

	.video-g__swiper {
		overflow: hidden;
		padding-bottom: 24px;
	}
}

@media (max-width: 768px) {
	.video-g__slider {
		--video-slides-per-view: 1.15;
		--video-slide-gap: 16px;
	}

	.video-g {
		padding: 48px 0 56px;
	}

	.video-g__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 24px;
	}

	.video-g__title-sub {
		font-size: 16px;
	}

	.video-g__title-main {
		font-size: clamp(24px, 6vw, 32px);
	}

	.video-g__channel {
		min-height: 44px;
		padding: 0 20px;
		font-size: 14px;
		gap: 10px;
	}

	.video-g__channel i {
		font-size: 18px;
	}

	.video-g__swiper {
		padding: 12px 0 4px;
	}

	.video-g__card {
		transform: scale(1);
		padding: 14px 14px 16px;
	}

	.swiper-slide-active .video-g__card {
		box-shadow: 0 8px 28px rgba(87, 52, 131, 0.1);
	}

	.video-g__body {
		padding-top: 14px;
	}

	.video-g__card-title {
		font-size: 15px;
	}

	.swiper-slide-active .video-g__card-title {
		font-size: 16px;
	}

	.video-g__card-sub {
		display: block;
		font-size: 12px;
	}

	.video-g .video-g__scrollbar.swiper-scrollbar {
		margin-top: 40px;
	}
}

@media (max-width: 480px) {
	.video-g {
		padding: 48px 0 56px;
	}

	.video-g__head {
		gap: 16px;
		margin-bottom: 24px;
	}

	.video-g__title-main {
		font-size: clamp(24px, 7vw, 28px);
	}

	.video-g__channel {
		width: 100%;
		min-height: 44px;
		padding: 0 20px;
		font-size: 14px;
	}

	.video-g__swiper {
		padding: 8px 0 0;
	}

	.video-g__card {
		padding: 12px 12px 16px;
		border-radius: 12px;
	}

	.video-g__card-title {
		font-size: 14px;
	}

	.swiper-slide-active .video-g__card-title {
		font-size: 15px;
	}

	.video-g .video-g__scrollbar.swiper-scrollbar {
		margin-top: 36px;
	}
}

/* ----- 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: 1300px;
	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: 1300px;
	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-padding);
		bottom: 0;
	}
}

@media (max-width: 768px) {
	.site-footer__logo a {
		gap: 10px;
	}

	.site-footer__logo-img-wrap {
		padding-right: 10px;
	}

	.site-footer__logo-img {
		height: 28px;
	}

	.site-footer__logo-text {
		font-size: 14px;
	}

	.site-footer__copy,
	.site-footer__address {
		font-size: 12px;
		word-break: keep-all;
	}

	.site-footer__body {
		padding-bottom: 64px;
		gap: 20px;
	}

	.site-footer__main {
		padding: 28px 0 36px;
	}

	.site-footer__top {
		width: 48px;
		height: 48px;
		font-size: 10px;
	}

	.site-footer__top i {
		font-size: 13px;
	}

	.site-footer__select {
		padding: 14px 44px 14px 20px;
		font-size: 14px;
	}
}

/* ==========================================================================
 * Top Banner (상단 공지) — major_2026_5/6 동일 구조
 * ========================================================================== */
.top-banner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 260;
	width: 100%;
	background: #dfdfdf;
	color: #fff;
	overflow: hidden;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-banner[hidden] {
	display: none !important;
}

.top-banner.is-closing {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

.top-banner__inner {
	position: relative;
	width: 100%;
	max-width: var(--layout-max);
	margin: 0 auto;
	padding: 10px 52px;
	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;
}