/* =========================================
   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%;
	padding-left: 40px;
	padding-right: 40px;
	margin-inline: auto;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	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: 35px;
	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%;
	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);
}




/* =========================================
   Intro - PC
========================================= */
.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: 55px;
	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 {
	position: sticky;
	top: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: start;
}

.intro-right {
	position: relative;
	height: calc(100vh - 144px);
	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: 45px;
	color: #fff;
}

.intro-section p {
	margin: 0;
	opacity: 0.95;
	font-size: 25px;
	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: 28px;
	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: 45px;
	color: #fff;
}

.intro-section p {
	margin: 0;
	opacity: 0.95;
	font-size: 25px;
	line-height: 1.4;
	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: 32px;
	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: 32px;
	font-weight: 800;
	margin: 0 0 16px;
	color: #fff;
}

.intro-mobile-slide-content p {
	font-size: 18px;
	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;
}

/* 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;
}

.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 */
.card-grid {
	display: grid;
	grid-template-columns: repeat(4, 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;
}


/* =========================================
   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: 70px;
	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: 30px;
}

/* =========================================
   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;
	}
	
	/* Visual adjustments for tablet */
	.visual-title {
		font-size: 80px;
	}
	
	.visual-eyebrow {
		font-size: 80px;
	}
	
	/* Intro adjustments for tablet */
	.intro-title {
		font-size: 54px;
	}
	
	.school-list li {
		font-size: 28px;
	}
	
	.intro-section h4 {
		font-size: 44px;
	}
	
	.intro-section p {
		font-size: 26px;
	}
	
	/* 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;
	}
	
	.admission .section-heading {
		font-size: 70px;
	}
	
	.admission-links a {
		font-size: 28px;
	}
	
}

/* Mobile (max-width: 960px) */
@media (max-width: 960px) {
	
	.section-heading {
		font-size: 38px;
		margin-bottom: 20px;
	}
	
	/* Visual mobile */
	.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: 32px;
	}
	.intro-title {
		font-size: 44px;
		margin-top: 15px;
		margin-bottom: 30px;
		color: #fff;
		line-height: 1.2;
	}
	
	/* 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 mobile */
	.admission .section-heading {
		font-size: 56px;
	}
	
	.admission .inner {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
	
	.admission .map-placeholder {
		width: 100%;
		aspect-ratio: 16/10;
	}
	
	.admission-links a {
		font-size: 28px;
	}
	
	
	/* Footer mobile */
	.site-footer {
		padding: 20px 0;
		text-align: center;
	}
	
	.footer-inner {
		flex-direction: column;
		gap: 10px;
	}
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 500px) {	
	
	.section-heading {
		font-size: 32px;
	}
	
	/* Visual small mobile */
	.visual-eyebrow {
		font-size: 50px;
	}
	
	.visual-title {
		font-size: 50px;
	}
	
	.visual-subtitle {
		font-size: clamp(16px, 4vw, 20px);
	}
	
	/* Mobile backgrounds for each school */
	.visual-slide[data-label="School of Animation"] {
		background-image: url('/wp-content/themes/ck/images/language/animation_m.jpg');
	}
	
	.visual-slide[data-label="School of Game"] {
		background-image: url('/wp-content/themes/ck/images/language/game_m.jpg');
	}
	
	.visual-slide[data-label="School of Webtoon & Manhwa"] {
		background-image: url('/wp-content/themes/ck/images/language/manhwacontents_m.jpg');
	}
	
	.visual-slide[data-label="School of Fashion & Beauty Style"] {
		background-image: url('/wp-content/themes/ck/images/language/fashion_m.jpg');
	}
	
	.visual-slide[data-label="School of Performing Arts"] {
		background-image: url('/wp-content/themes/ck/images/language/performingarts_m.jpg');
	}
	
	.visual-slide[data-label="School of Culinary Arts"] {
		background-image: url('/wp-content/themes/ck/images/language/culinaryarts_m.jpg');
	}
	
	.visual-slide[data-label="School of Content Convergence"] {
		background-image: url('/wp-content/themes/ck/images/language/convergence_m.jpg');
	}
	.intro-mobile-header {
		padding: 0;
	}
	
	.intro-mobile-card {
		flex: 0 0 100vw;
	}
	/* Intro small mobile */
	.eyebrow {
		font-size: 24px;
	}

	.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: 24px;
	}
	
	.global-text p {
		font-size: 18px;
	}
	
	/* Card grid small mobile */
	.card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.card-title {
		font-size: 18px;
	}
	
	/* Admission small mobile */
	.admission .section-heading {
		font-size: 48px;
	}
	
	.admission-links a {
		font-size: 22px;
	}
	
}