@charset "utf-8";

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

html {
	overflow-x: clip;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

body {
	overflow-x: clip;
	overflow-y: visible;
	padding-top: var(--top-banner-h, 0px);
}

:root {
	--header-primary: #212d59;
	--header-bar-max: 1920px;
	--header-bar-padding: 80px;
	--gnb-mega-panel-height: 350px;
	--gnb-bar-height: 82px;
	--header-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;
}

.site-header {
	position: relative;
	width: 100%;
	max-width: 100%;
	z-index: var(--z-header-nav);
	overflow-x: clip;
}

.site-header__bar {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.site-header--e {
	height: auto;
	min-height: var(--gnb-bar-height);
	overflow: visible;
}

.site-header--e .gnb-wrap {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header--e .gnb-link,
.site-header--e .site-header__logo-text {
	color: #1a1a1a;
}

.site-header--e .site-header__logo-img {
	filter: none;
}

.site-header--e .site-header__logo-img-wrap {
	border-right-color: rgba(0, 0, 0, 0.15);
}

.site-header--e .util-menu__select,
.site-header--e .util-menu__select-arrow {
	color: #1a1a1a;
}

.site-header--e .util-bar__btn--login {
	background: var(--header-primary);
	color: #fff;
}

.site-header--e .util-bar__btn--login:hover {
	background: #1a2447;
}

.site-header--e .util-bar__btn--home {
	background: #fff;
	border: 1px solid #1a1a1a;
	color: #1a1a1a;
}

.site-header--e .util-bar__btn--home:hover {
	background: rgba(33, 45, 89, 0.06);
}

.site-header--e .menu-btn__line {
	background: #1a1a1a;
}

.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);
	overflow: visible;
	transition: background-color 0.26s ease, border-color 0.26s ease;
}

.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 rgba(0, 0, 0, 0.15);
	transition: border-color 0.22s ease;
}

.site-header__logo-picture {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-header__logo-img {
	width: auto;
	height: 36px;
}

.site-header__logo-text {
	font-family: "Noto Sans KR", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.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%;
	overflow: visible;
}

.gnb-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	width: 100%;
	min-height: var(--gnb-bar-height);
	color: #1a1a1a;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 18px;
	font-weight: 500;
	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: "Noto Sans KR", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	word-break: break-all;
}

.gnb-submenu a:hover {
	color: var(--header-primary);
}

.gnb-item:hover .gnb-link,
.gnb-item:focus-within .gnb-link {
	color: var(--header-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: 0;
	right: 0;
	z-index: var(--z-gnb-panel);
	width: 100%;
	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: none;
	transition: height 0.24s ease, opacity 0.24s ease, visibility 0s linear 0.24s;
}

@media (min-width: 1241px) {
	.gnb-wrap::after {
		left: calc(-1 * var(--header-bar-padding));
		right: calc(-1 * var(--header-bar-padding));
		width: auto;
		max-width: none;
		transform: none;
	}
}

.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;
}

.gnb-item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--header-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:has(.gnb:hover) .gnb-item:hover .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-item:focus-within .gnb-link,
.site-header:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header.is-nav-open .gnb-item:hover .gnb-link,
.site-header.is-nav-open .gnb-item:focus-within .gnb-link {
	color: var(--header-primary);
}

.site-header.is-gnb-scrolled {
	z-index: var(--z-header-nav);
	overflow: visible;
}

.site-header.is-gnb-scrolled .gnb-wrap {
	background: #fff;
	border-bottom-color: rgba(0, 0, 0, 0.12);
}

@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.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: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.12);
		box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
	}
}

.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: "Noto Sans KR", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gnb-mobile-util__list li:last-child a {
	border-bottom: none;
}

.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__select {
	flex: 1;
	min-width: 0;
	width: 100%;
	padding: 0 1.25rem 0 0;
	border: none;
	background: transparent;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.gnb-mobile-util__select-arrow {
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 12px;
	color: #666;
	pointer-events: none;
	transform: translateY(-50%);
}

.site-header__utils {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-left: 1.5rem;
	align-self: center;
}

.util-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	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 {
	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: "Noto Sans KR", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #1a1a1a;
	cursor: pointer;
	outline: none;
}

.util-menu__select-arrow {
	position: absolute;
	right: 0.625rem;
	top: 50%;
	font-size: 12px;
	color: #1a1a1a;
	pointer-events: none;
	transform: translateY(-50%);
}

.util-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 14px;
	font-weight: 500;
	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(33, 45, 89, 0.06);
	color: #1a1a1a;
	font-family: "Noto Sans KR", sans-serif;
	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(33, 45, 89, 0.12);
	color: var(--header-primary);
}

.util-bar a:has(.fa-user-circle) i {
	color: var(--header-primary);
}

.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: #1a1a1a;
	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,
html.is-nav-open {
	overflow: hidden;
	touch-action: none;
}

.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);
		pointer-events: auto;
	}

	.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;
	}
}

@media (max-width: 1610px) {
	.gnb-wrap {
		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;
	}

	.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__utils {
		gap: 8px;
		margin-left: 0;
	}

	.util-bar {
		gap: 8px;
	}

	.util-menu__select {
		min-width: 6.5rem;
		padding: 0.2rem 1.25rem 0.2rem 1.7rem;
		font-size: 13px;
	}

	.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;
	}
}

@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;
	}
}

@media (max-width: 1240px) {
	:root {
		--header-bar-padding: 32px;
	}

	.site-header {
		z-index: var(--z-header-nav);
		overflow: visible;
	}

	.site-header__bar {
		min-height: var(--gnb-bar-height);
	}

	.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: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: none;
	}

	.site-header.is-nav-open .gnb-wrap {
		border-bottom-color: rgba(0, 0, 0, 0.12);
		box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
	}

	.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: 0;
		z-index: calc(var(--z-header-nav) - 1);
		flex: none;
		flex-direction: column;
		align-items: stretch;
		align-self: auto;
		width: 100%;
		max-width: none;
		min-width: 0;
		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;
		width: 100%;
		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;
	}

	.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: #f7f7fa;
		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 {
		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: #333;
		line-height: 1.4;
	}

	.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;
	}
}

@media (max-width: 768px) {
	:root {
		--header-bar-padding: 24px;
		--gnb-bar-height: 72px;
	}

	.site-header__logo a {
		gap: 12px;
	}

	.site-header__logo-img {
		height: 30px;
	}

	.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));
	}
}

/* ==========================================================================
 * Language Box (lang-box) — major_2026_3 동일 구조
 * ========================================================================== */
.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);
}

/* site-header--e (흰색 헤더) — 트리거/화살표 색상 보정 */
.site-header--e .lang-box__trigger,
.site-header--e .lang-box__label,
.site-header--e .lang-box__arrow {
	color: #1a1a1a;
}

.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_3 동일 구조
 * ========================================================================== */
.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(--header-primary);
	background: rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
 * Top Banner (상단 공지) — major_2026_3 동일 구조
 * ========================================================================== */
.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 — 번역 배너/툴팁 숨김 (lang-box)
 * ========================================================================== */
body {
	top: 0 !important;
}

iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt {
	display: none !important;
}

body > .skiptranslate {
	display: none !important;
}