/* =========================================
   Base (Global reset & tokens)
   PC-first; mobile overrides live later
========================================= */
:root {
	--ck-orange: #e77400;
	--ck-orange-deep: #d96800;
	--ck-dark: #111;
	--ck-gray: #6b7280;
	--ck-light: #f6f7f9;
	--container: 1180px;
	--radius: 12px;
	--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	font-family:
		"Pretendard",
		ui-sans-serif,
		system-ui,
		-apple-system,
		"Apple SD Gothic Neo",
		"Noto Sans KR",
		sans-serif;
	color: #222;
	background: #fff;
}

img {
	max-width: 100%;
	display: block;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
	margin-inline: auto;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	box-sizing: border-box;
	padding: 0 40px;
}
.section {
	padding: 72px 0;
}
.section-heading {
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 30px;
}
.eyebrow {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 0;
	margin-top: 0;
}

/* =========================================
   Header (external project header exists)
========================================= */

/* =========================================
   Visual (was Hero) - PC
========================================= */
.visual {
	position: relative;
}
.visual .visual-swiper {
	height: 100vh;
	position: relative;
}
.visual-slide {
	position: relative;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.visual-slide {
	background-image: var(--bg);
}
.visual-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
}
.visual-content {
	position: absolute;
	inset: auto 0 10% 0;
	color: #fff;
	z-index: 1;
}
.visual-content.is-right {
	text-align: right;
}

/* 패션 스타일 컨텐츠 */
.hero-content--fashion {
	position: absolute;
	right: 0;
	bottom: 0;
	top: auto;
	left: auto;
	text-align: right;
	padding: 40px;
	z-index: 1;
}

.visual-eyebrow {
	color: #fff;
	opacity: 0.9;
	font-weight: 300;
	font-size: 100px;
	margin-bottom: 0;
}
.visual-title {
	color: #fff;
	margin: 0;
	font-size: 100px;
	line-height: 1.05;
	font-weight: 900;
}


.visual-subtitle {
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 400;
	opacity: 0.8;
	letter-spacing: 0.5px;
}
.visual-controls {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(calc(-50%));
	width: 100%;
	max-width: 1280px;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 2;
}
/* Custom vertical labeled pagination (left side) */
.visual .swiper-pagination {
	position: absolute;
	left: 40px;
	top: 50%;
	height: 100%;
	justify-content: center;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: auto;
	z-index: 10;
}

.visual .swiper-pagination-bullet {
	width: auto;
	height: auto;
	background: transparent;
	opacity: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.visual .swiper-pagination-bullet::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	display: inline-block;
	transition: all 0.3s ease;
}

.visual .swiper-pagination-bullet .label {
	display: inline-flex;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	border-radius: 20px;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.visual .swiper-pagination-bullet-active::before {
	background: #fff;
	transform: scale(1.2);
}

.visual .swiper-pagination-bullet-active .label {
	background: var(--ck-orange);
	color: #fff;
	transform: scale(1.05);
}

/* =========================================
   Meet CK - PC
========================================= */
.meet-ck {
	background: #fff;
}

.meet-ck-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 50px;
}

.meet-ck .eyebrow {
	color: var(--ck-orange);
	margin: 0 0 16px;
}

.meet-ck-title {
	color: var(--ck-dark);
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	margin: 0;
}

.meet-ck-title em {
	color: var(--ck-orange);
	font-style: normal;
}

.meet-ck-sub {
	max-width: 360px;
	color: #3a3a3a;
	font-size: 18px;
	line-height: 1.5;
	text-align: right;
	margin: 0 0 6px;
}

.meet-ck-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.meet-ck-card {
	color: inherit;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.meet-ck-thumb {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: 8px;
	overflow: hidden;
	background: var(--ck-light);
}

.meet-ck-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.meet-ck-card:hover .meet-ck-thumb img {
	transform: scale(1.07);
}

.meet-ck-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.42));
	pointer-events: none;
}

.meet-ck-index {
	position: absolute;
	top: 5%;
	left: 7%;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
}

.meet-ck-index::before {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--ck-orange);
}

.meet-ck-overlay {
	position: absolute;
	left: 7%;
	right: 7%;
	bottom: 5%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: rgba(255, 255, 255, 0.95);
	font-size: 18px;
	letter-spacing: 0;
}

.meet-ck-go {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ck-orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(6px);
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.meet-ck-card:hover .meet-ck-go {
	opacity: 1;
	transform: translateY(0);
}

.meet-ck-body {
	padding-top: 20px;
}

.meet-ck-body h4 {
	color: var(--ck-dark);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
}

.meet-ck-body p {
	color: #3a3a3a;
	font-size: 18px;
	line-height: 1.5;
	margin: 10px 0 0;
	max-width: 92%;
}

.meet-ck-apply {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--ck-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	margin-top: 18px;
	transition: color 0.25s ease;
}

.meet-ck-apply svg {
	transition: transform 0.3s ease;
}

.meet-ck-card:hover .meet-ck-apply {
	color: var(--ck-orange);
}

.meet-ck-card:hover .meet-ck-apply svg {
	transform: translateX(5px);
}

/* =========================================
   Intro - PC
========================================= */
#intro {
	overflow: hidden
}

.section--orange {
	background: var(--ck-orange);
	color: #fff;
}

/* Intro header - PC에서는 왼쪽에 배치 */
.intro-header {
	text-align: center;
	margin-bottom: 60px;
}
.intro-title {
	margin: 6px 0 0;
	font-size: 55px;
	font-weight: 800;
}

/* PC에서 왼쪽 영역에 제목과 리스트 함께 배치 */
.intro-left .intro-title {
	margin: 20px 0 50px;
	line-height: 1;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-align: left;
}

/* Desktop layout */
.intro-desktop {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	position: relative;
}

.intro-desktop::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(-50%);
}

.intro-left {
	top: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
}

.intro-right {
	position: relative;
	height: 650px;
	padding-left: 30px;
	overflow: hidden;
}

.intro-swiper {
	height: 100%;
}

/* Intro sections with original design */
.intro-section {
	background: transparent;
	padding: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.intro-section .circle-thumb {
	width: 350px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin: 0 auto 24px;
}

.intro-section h4 {
	margin: 0 0 16px;
	font-weight: 800;
	font-size: 40px;
	color: #fff;
}

.intro-section p {
	margin: 0;
	opacity: 0.95;
	font-size: 18px;
	line-height: 1.4;
	color: #fff;
}

/* School list styling */
.school-list {
	margin: 0;
	padding-left: 0;
	line-height: 2.2;
	list-style: none;
}

.school-list li {
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	line-height: 1.6;
}

.school-list li.active::before {
	content: "";
	width: 3px;
	height: 24px;
	position: absolute;
	top: calc(50% - 2px);
	left: -16px;
	transform: translateY(-50%);
	background-color: #fff;
	font-weight: 400;
}

.school-list li.active {
	font-weight: 700;
	text-underline-offset: 4px;
}

/* Intro sections */
.intro-section {
	background: transparent;
	padding: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.intro-section .circle-thumb {
	width: 350px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin: 0 auto 24px;
}

.intro-section h4 {
	margin: 0 0 16px;
	font-weight: 800;
	font-size: 40px;
	color: #fff;
}


/* Slide-up transition for intro feature */
/* remove old single-panel animation; sections will scroll */

/* Mobile styles */
.intro-mobile {
	display: none;
}

.intro-mobile-header {
	text-align: center;
	margin-bottom: 40px;
}

.intro-mobile-header .intro-title {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 20px;
	color: #fff;
}


.intro-mobile-slide {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-mobile-slide-content {
	text-align: center;
	padding: 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.intro-mobile-slide-content .circle-thumb {
	width: 250px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin: 0 auto 24px;
}

.intro-mobile-slide-content h4 {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 16px;
	color: #fff;
}

.intro-mobile-slide-content p {
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
	opacity: 0.95;
	color: #fff;
}

/* Mobile swiper pagination */
.intro-mobile-swiper {
	overflow: inherit;
}
.intro-mobile-swiper .swiper-pagination {
	position: static;
}
.intro-mobile-slide-content {
}
.intro-mobile-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.intro-mobile-swiper .swiper-pagination-bullet-active {
	background: #fff;
	transform: scale(1.2);
}

@media (max-width: 960px) {
	.intro-desktop {
		display: none;
	}
	
	.intro-mobile {
		display: block;
	}
	
	.grid-2 {
		grid-template-columns: 1fr;
	}
	/* sticky는 태블릿 이하에서 해제하여 튐 현상 방지 */
	.intro-left {
		position: static;
		top: auto;
		align-self: auto;
	}
}

/* Stats with image bg */
/* Mobile-only horizontal scroller driven by vertical scroll */
.intro-mobile {
	display: none;
}

/* Mobile intro vertical scroll driving horizontal slides */
@media (max-width: 960px) {
	.intro-mobile {
		display: block;
		position: relative;
	}

	.intro-mobile-header {
		text-align: center;
		margin-bottom: 0;
	}

	.intro-mobile-vert {
		height: 200svh;
		position: relative;
		/* 모바일에서 세로 스크롤이 가로 카드 이동을 제어 */
		scroll-snap-type: y mandatory;
	}

	.intro-mobile-sticky {
		position: sticky;
		top: 0;
		overflow: hidden;
		will-change: transform;
		/* 모바일에서 부드러운 스크롤을 위한 최적화 */
		-webkit-overflow-scrolling: touch;
	}

	.intro-mobile-track {
		display: flex;
		height: 100%;
		transform: translateX(0);
		will-change: transform;
	}

	.intro-mobile-card {
		flex: 0 0 960px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 40px 20px;
		box-sizing: border-box;
		text-align: center;
		height: 100%;
		/* 모바일에서 가로 스크롤을 위한 최적화 */
		scroll-snap-align: start;
		transition: all 0.3s ease;
	}

	.intro-mobile-card .circle-thumb {
		width: 120px;
		aspect-ratio: 1/1;
		border-radius: 50%;
		background-size: cover;
		background-position: center;
		margin: 0 auto 16px;
		border: 6px solid rgba(255, 255, 255, 0.25);
	}

	.intro-mobile-card h4 {
		margin: 0 0 12px;
		font-weight: 800;
		font-size: clamp(28px, 7vw, 36px);
		color: #fff;
	}

	.intro-mobile-card p {
		margin: 0;
		opacity: 0.95;
		font-size: clamp(18px, 4.5vw, 24px);
		line-height: 1.5;
		color: #fff;
	}

	/* Active card styling */
	.intro-mobile-card.active {
		transform: scale(1.02);
		transition: all 0.3s ease;
	}

	.intro-mobile-card.active .circle-thumb {
		border-color: rgba(255, 255, 255, 0.5);
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	}
}
/* =========================================
   Global (Stats section) - PC
========================================= */
.global {
	background: url("/wp-content/themes/ck/images/language/global_bg.png") center no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
	padding: 150px 0;
}
.global > .container,
.global > .inner {
	position: relative;
	z-index: 1;
}
.global .section-heading {
	color: #fff;
	font-size: 65px;
	text-align: center;
	margin-bottom: 20px;
}
.global .section-sub {
	color: #fff;
	text-align: center;
	font-size: 35px;
	font-weight: 300;
}
.global .section-sub strong {
	color: #ff6600;
	font-weight: 600;
}
.kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
	margin: 100px 0 0;
	padding: 0;
	text-align: center;
}
.kpis .num {
	display: block;
	font-weight: 900;
	font-size: 100px;
	color: #fff;
}
.kpis .num .value {
	font-weight: 900;
	color: inherit;
}
.kpis .num .plus {
	font-weight: 300;
	color: inherit;
}
.kpis .label {
	display: block;
	font-weight: 700;
	font-size: 30px;
	color: #ff6600;
	margin-top: 5px;
}

/* Global logos (PC) */
.global-logos {
	margin: 80px 0 0;
	padding: 0 40px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 60px 30px;
	align-items: end;
	justify-items: center;
}
.global-logos li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%
}
.global-logos img {
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

/* =========================================
   Common blocks (PC): News & Notice, CK - Global Contents, Youtubes & SNS
   NOTE: Only these blocks are shared globally per spec
========================================= */
/* News & Notice */
.news-global {
	padding: 0;
	position: relative;
	background-color: #f8f8f8;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}
.news-global::after {
	content: "";
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--ck-orange) url(/wp-content/themes/ck/images/language/ck-image.png) no-repeat bottom 40px right -20px;
	z-index: 0;
}
.news-global .grid-2 {
	display: flex;
	gap: 120px;
	justify-content: space-between;
	align-items: stretch;
}

.news-global .grid-2 > * {
	flex: 1;
	width: calc(50% - 60px);
	padding-top: 120px;
	padding-bottom: 150px;
}


.news-global .grid-2 .global-contents {
	position: relative;
	z-index: 1;
}

.news .section-heading {
	color: #222;
}
.news .section-sub {
	color: #6b7280;
	font-size: 14px;
	margin: 0 0 20px;
}

.news-global .news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-global .news-list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}
.news-global .news-list li:not(:first-child) {
	padding-top: 20px;
	border-top: 1px solid #e8e8e8;
}
.news-global .news-list a {
	color: #222;
	text-decoration: none;
	font-size: 20px;
	line-height: 1.5;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: bold;
}

.news-global .news-list li > div {
	flex: 1 1 auto;
	min-width: 0;
}
.news-global .news-list li > time {
	flex: 0 0 auto;
	color: var(--ck-orange);
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
}
.news-global .news-list .desc {
	margin: 4px 0 0;
	font-size: 18px;
	color: #6b7280;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 1.5;
}

.news-global time {
	color: var(--ck-orange);
	font-size: 13px;
	font-weight: 600;
}

/* CK - Global Contents */
.global-contents {
	position: relative;
}

.global-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	gap: 5px;
}

.global-contents .section-heading {
	color: #fff;
	margin-bottom: 0;
}

.add-btn {
	width: 40px;
	height: 40px;
	background: #fff;
	border: none;
	border-radius: 4px;
	color: var(--ck-orange);
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.global-swiper {
	position: relative;
	padding-bottom: 80px;
}

.global-slide {
	height: 100%;
}

.global-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.global-image {
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	margin-bottom: 30px;
	height: 310px;
	width: 100%;
	background-size: cover;
}

.global-text h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 4px;
	line-height: 1.5;
}

.global-text p {
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	opacity: 0.9;
}

.global-navigation {
	position: absolute;
	bottom: 0px;
	left: 0;
	display: flex;
	gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	position: static;
}

.swiper-button-prev::before {
	content: "◀";
}
.swiper-button-next::before {
	content: "▶";
}

/* Youtubes & SNS */
.sns-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
}

.sns-header .section-heading {
	margin-bottom: 0;
	min-width: 0;
}

.more-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ck-orange);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.more-link span {
	position: relative;
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
}

.more-link span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--ck-orange);
	border-right: 2px solid var(--ck-orange);
	transform: translate(-60%, -50%) rotate(45deg);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.card {
	background: #fff;
}
.card-media {
	border-radius: var(--radius);
	overflow: hidden;
}
.card-media img {
	width: 100%;
}
.card-title {
	margin: 16px 0 0;
	font-size: 18px;
	line-height: 1.4;
}

.sns-swiper .swiper-pagination,
.stories-swiper .swiper-pagination,
.guideline-swiper .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.sns-swiper .swiper-pagination-bullet,
.stories-swiper .swiper-pagination-bullet,
.guideline-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}

.sns-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.stories-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.guideline-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #e77400
}

/* =========================================
   Guideline Section
========================================= */
.guideline-section {
	border-bottom: 1px solid #ccc;
}

.guideline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0 auto;
}

.guideline-item {
    text-align: center;
}

.guideline-thumbnail {
    position: relative;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 3/4;
}

.guideline-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ck-orange);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
}

.guideline-button {
    color: var(--ck-orange);
    border: none;
    border: 1px solid var(--ck-orange);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.guideline-button:hover {
    background: var(--ck-orange-deep);
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================
   Admission - PC
========================================= */
.admission {
	background: url(/wp-content/themes/ck/images/language/admission_bg.png) no-repeat center center;
	background-size: cover;
}
.admission .section-heading {
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 30px;
	color: var(--ck-orange);
}
.admission .section-heading span {
	color: var(--ck-orange);
	display: block;
	font-weight: 300;
}
.admission .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.admission .map-placeholder {
	background: #eef2f7;
	border-radius: var(--radius);
	width: 705px;
	aspect-ratio: 16/9;
	overflow: hidden;
	border: 4px solid var(--ck-orange);
}
.admission-links {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.admission-links a {
	color: var(--ck-orange-deep);
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
}

/* =========================================
   Meet Closing CTA
========================================= */
.meet-closing {
	background: var(--ck-orange);
	color: #fff;
	padding: 72px 0;
}

.meet-closing .meet-wrap {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	box-sizing: border-box;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.meet-closing h4 {
	color: #fff;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
}

.meet-closing p {
	max-width: 520px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.meet-closing p .ko {
	display: block;
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.82;
}

.meet-closing .btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.meet-closing a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	padding: 14px 24px;
	text-decoration: none;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.meet-closing .primary {
	background: #fff;
	color: var(--ck-orange-deep);
}

.meet-closing .ghost {
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: #fff;
}

.meet-closing a:hover {
	transform: translateY(-2px);
}

.meet-closing svg {
	transition: transform 0.3s ease;
}

.meet-closing a:hover svg {
	transform: translateX(5px);
}

/* =========================================
   Footer - PC
========================================= */
.site-footer {
	background: #0f0f10;
	color: #a3a3a3;
	padding: 28px 0;
	font-size: 13px;
}
.footer-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}


/* =========================================
   Responsive Design - Mobile & Tablet
========================================= */

/* Tablet (768px ~ 1024px) */
@media all and (max-width: 1024px) {
	.container, .inner {
		max-width: 100%;
		padding: 0 20px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.section-heading {
		font-size: 42px;
	}

	.meet-closing .meet-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	
	/* Visual adjustments for tablet */
	.visual-title {
		font-size: 80px;
	}
	
	.visual-eyebrow {
		font-size: 80px;
	}
	
	/* Global adjustments for tablet */
	.global .section-heading {
		font-size: 65px;
	}
	
	.global .section-sub {
		font-size: 36px;
	}
	
	.kpis .num {
		font-size: 80px;
	}
	
	.kpis .label {
		font-size: 24px;
	}
	
	/* News & Global Contents for tablet */
	.news-global {
		padding: 0;
	}
	.news-global::after {
		display: none;
	}
	.news-global .grid-2 {
		flex-direction: column;
		padding: 0;
		gap: 0;
	}

	.news-global .grid-2 > * {
		width: 100%;
		padding: 60px 20px;
	}
		
	.news-global .grid-2 .global-contents {
		background-color: var(--ck-orange);
	}
	
	/* Admission for tablet */
	.admission .inner {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}
	
	.admission .map-placeholder {
		width: 100%;
		max-width: 600px;
	}
	
	
}

/* Mobile (max-width: 960px) */
@media (max-width: 960px) {
	
	.section-heading {
		font-size: 38px;
		margin-bottom: 20px;
	}
	
	/* Visual mobile */
	.visual-slide {
		background-image: var(--bg-mobile, var(--bg));
	}
	
	.visual-content {
		inset: auto 0 5% 0;
	}
	
	.visual-eyebrow {
		font-size: clamp(48px, 12vw, 72px);
	}
	
	.visual-title {
		font-size: clamp(48px, 12vw, 72px);
	}
	
	.visual-subtitle {
		font-size: clamp(18px, 4.5vw, 24px);
	}
	
	.visual .swiper-pagination {
		left: 10px;
		gap: 12px;
		top: 35%;
	}
	
	.visual .swiper-pagination-bullet .label {
		font-size: 14px;
		padding: 6px 12px;
	}
	
	/* Intro mobile */
	.intro-desktop {
		display: none !important;
	}
	
	.intro-mobile {
		display: block !important;
	}
	
	.intro-mobile-card {
		flex: 0 0 100vw;
	}
	
	.eyebrow {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.intro-title {
		font-size: 44px;
		margin-top: 15px;
		margin-bottom: 30px;
		color: #fff;
		line-height: 1.2;
	}

	/* Meet CK mobile */
	.meet-ck-title {
		font-size: 38px;
	}

	.meet-ck-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		margin-bottom: 34px;
	}

	.meet-ck-sub {
		max-width: 100%;
		text-align: left;
	}

	.meet-ck-cards {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.meet-ck-thumb {
		aspect-ratio: 16/10;
	}

	.meet-closing {
		padding: 60px 0;
	}

	.meet-closing .meet-wrap {
		padding: 0 20px;
	}

	.meet-closing h4 {
		font-size: 38px;
	}

	.meet-closing p {
		font-size: 16px;
	}

	.meet-closing .btns,
	.meet-closing a {
		width: 100%;
	}

	.meet-closing a {
		justify-content: center;
	}
	
	/* Global mobile */
	.global {
		padding: 80px 0;
	}
	
	.global .section-heading {
		font-size: 56px;
	}
	
	.global .section-sub {
		font-size: 32px;
	}
	
	.global .kpis {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 20px;
		margin: 60px 0 0;
	}
	
	.kpis .num {
		font-size: 70px;
	}
	
	.kpis .label {
		font-size: 22px;
	}
	
	.global .global-logos {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 30px 30px;
		margin: 60px 0 0;
		padding: 0 20px;
	}
	
	.global .global-logos li:last-child {
		display: none	
	}
	
	.global-logos img {
		height: 70px !important;
	}
	
	/* News & Global Contents mobile */
	
	.news-global .grid-2 > * {
		width: 100%;
	}
	
		
	.news-global .news-list a {
		font-size: 20px;
	}
	
	.news-global .news-list .desc {
		font-size: 18px;
	}
	
	.news-global .news-list li > time {
		font-size: 18px;
	}
	
	.global-contents {
		padding: 20px;
	}
	
	.global-image {
		height: 200px;
	}
	
	.global-text h4 {
		font-size: 26px;
	}
	
	.global-text p {
		font-size: 20px;
	}
	
	/* Card grid mobile */
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 16px;
	}
	
	.card-title {
		font-size: 20px;
	}
	
	
	.admission .inner {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
	
	.admission .map-placeholder {
		width: 100%;
		aspect-ratio: 16/10;
	}
	
	
	
	/* Footer mobile */
	.site-footer {
		padding: 20px 0;
		text-align: center;
	}
	
	.footer-inner {
		flex-direction: column;
		gap: 10px;
	}
}



@media (max-width: 767px) {	
	:root {
		--quickbar-mobile-height: 74px;
	}

	.visual .visual-swiper {
		height: calc(100vh - var(--quickbar-mobile-height));
		height: calc(100svh - var(--quickbar-mobile-height));
	}

	.visual .swiper-pagination {
		gap: 6px;
		width: 100%;
        top: auto;
        bottom: 40px;
        height: auto;
        flex-direction: row;
	}
	.visual .swiper-pagination-bullet {
		margin: 0;
	}
	
	.visual .swiper-pagination-bullet .label {
		display: none;
	}
	.visual .swiper-pagination-bullet::before {
		width: 10px;
		height: 10px;
		background: #fff
	}
	.visual .swiper-pagination-bullet-active::before {
		background: var(--ck-orange)	
	}
	.visual-content {
		inset: auto 0 14% 0;

	}
    
	
}


/* Small Mobile (max-width: 480px) */
@media (max-width: 500px) {	
	
	.section-heading {
		font-size: 32px;
	}

	.meet-ck-title {
		font-size: 32px;
	}

	.meet-ck-body h4 {
		font-size: 22px;
	}

	.more-link {
		gap: 8px;
		font-size: 14px;
	}

	.more-link span {
		width: 10px;
		height: 10px;
		flex-basis: 10px;
	}
	
	/* Visual small mobile */
	.visual-eyebrow {
		font-size: 50px;
	}
	
	.visual-title {
		font-size: 50px;
	}
	
	.visual-subtitle {
		font-size: clamp(16px, 4vw, 20px);
	}
	
	.intro-mobile-header {
		padding: 0;
	}
	
	.intro-mobile-card {
		flex: 0 0 100vw;
	}
	/* Intro small mobile */
	.eyebrow {
		font-size: 14px;
	}

	.intro-title {
		font-size: 32px;
		line-height: 1.2;
	}
	
	.school-list li {
		font-size: 18px;
		padding: 10px 14px;
	}
	
	.intro-mobile-card h4 {
		font-size: clamp(24px, 6vw, 32px);
	}
	
	.intro-mobile-card p {
		font-size: clamp(16px, 4vw, 20px);
	}
	
	/* Global small mobile */
	.global .section-heading {
		font-size: 48px;
	}
	.global-swiper {padding-bottom: 60px;}
	.global .section-sub {
		font-size: 28px;
	}
	
	.global .kpis {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 16px;
		margin: 40px 0 0;
	}
	
	.kpis .num {
		font-size: 50px;
	}
	
	.kpis .label {
		font-size: 20px;
	}
	
	.global .global-logos {
	}
	
	.global-logos img {
		height: 45px !important;
	}
	
	/* News & Global Contents small mobile */
	
	.news-global .news-list a {
		font-size: 18px;
	}
	
	.news-global .news-list .desc {
		font-size: 16px;
	}
	
	.news-global .news-list li > time {
		font-size: 16px;
	}
	
	.global-contents {
		padding: 16px;
	}
	
	.global-image {
		height: 160px;
	}
	
	.global-text h4 {
		font-size: 20px;
		line-height: 1.3;
		margin-bottom: 8px;
	}
	
	.global-text p {
		font-size: 16px;
	}
	
	/* Card grid small mobile */
	.card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.card-title {
		font-size: 18px;
	}
	.global-contents .section-heading {
		font-size: 26px
	}
	
}


/* =========================================
   Layer Popup
========================================= */
.layer-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1;
	display: none;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.layer-popup.active {
	display: flex;
	opacity: 1;
}

.layer-popup-container {
	position: relative;
	z-index: 1;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.layer-popup-container img {
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

}

.layer-popup.active .layer-popup-container {
	transform: scale(1);
}

.layer-popup-close {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.layer-popup-close:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: rotate(90deg);
}

.layer-popup-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.layer-popup-content img {
	width: 400px;
	height: auto;
	max-width: calc(100vw - 40px);
	max-height: 90vh;
	display: block;
	object-fit: contain;
}

.layer-popup-link {
	position: absolute;
	display: block;
	cursor: pointer;
	background: transparent;
	text-decoration: none;
	z-index: 5;
}

.layer-popup-link-1 {
	left: 44px;
	top: 336px;
	width: 200px;
	height: 35px;
}

.layer-popup-link-2 {
	left: 44px;
	top: 380px;
	width: 165px;
	height: 35px;
}

/* Mobile adjustments for layer popup */
@media (max-width: 960px) {
	.layer-popup-close {
		top: -40px;
		right: -40px;
		width: 36px;
		height: 36px;
		font-size: 24px;
	}
	
	.layer-popup-content img {
		max-height: 85vh;
	}
}

@media (max-width: 500px) {
	.layer-popup-container img {
		border-radius: 0;
	}
	
	.layer-popup-close {
		top: -40px;
		right: 0;
		width: 32px;
		height: 32px;
		font-size: 20px;
	}
	
	.layer-popup-close:hover {
		transform: rotate(90deg);
	}
	
	.layer-popup-content img {
		max-height: 100vh;
	}
}
