/* 아카데미소개 (/web/2) — premium dark + gold */
#sub-container:has(#academy_bg) {
	--academy-gold: #c5a059;
	--academy-gold-bright: #e0c07a;
	position: relative;
	margin-bottom: 0;
	/* --- ROLLBACK: 물결 배경 (마음에 안 들면 아래 NEW 블록 끄고 이 주석 해제)
	background-color: #0c1118;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath fill='%23151c26' d='M0 0h1440v400C1180 520 980 280 720 390S240 560 0 450V0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	--- */
	/* NEW: academy_bg.jpg + 어두운 반투명 톤 */
	background-color: #0c1118;
	background-image: url("/files/images/academy_bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#sub-container:has(#academy_bg)::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: rgba(12, 17, 24, 0.92);
}

#sub-container:has(#academy_bg) > * {
	position: relative;
	z-index: 1;
}

#academy_bg.academy-intro {
	position: relative;
	overflow: visible;
	width: 100%;
	max-width: none;
	margin: 0;
	aspect-ratio: auto;
	background: none;
}

.academy-intro__inner {
	display: grid;
	grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
	align-items: end;
	column-gap: clamp(20px, 3vw, 48px);
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: clamp(28px, 3.5vw, 48px) clamp(20px, 3vw, 40px) 0;
	box-sizing: border-box;
}

.academy-intro__person {
	position: relative;
	width: 100%;
	max-width: 560px;
	justify-self: start;
	margin: 0;
	line-height: 0;
	z-index: 1;
	isolation: isolate;
}

/* 인물 뒤 금빛 광원 — width 기준 1:1 (이전 보기 좋은 상태) */
.academy-intro__glow {
	position: absolute;
	left: 50%;
	top: 40%;
	width: min(640px, 130%);
	height: auto;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%) scale(1);
	z-index: -1;
	pointer-events: none;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%,
			rgba(255, 245, 210, 0.95) 0%,
			rgba(255, 230, 160, 0.72) 14%,
			rgba(232, 196, 120, 0.48) 28%,
			rgba(197, 160, 89, 0.22) 44%,
			rgba(197, 160, 89, 0.08) 58%,
			rgba(197, 160, 89, 0.02) 70%,
			transparent 82%);
	filter: blur(18px);
	animation: academyGlowBreath 7.5s ease-in-out infinite;
	will-change: transform, opacity;
}

.academy-intro__arc {
	position: absolute;
	left: 50%;
	top: 40%;
	width: min(560px, 118%);
	height: auto;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%) scale(1);
	z-index: -1;
	pointer-events: none;
	border-radius: 50%;
	border: 2px solid rgba(197, 160, 89, 0.42);
	box-shadow: 0 0 28px rgba(197, 160, 89, 0.1);
	mask-image: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.14) 48%, transparent 72%);
	-webkit-mask-image: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.14) 48%, transparent 72%);
	animation: academyArcBreath 9s ease-in-out infinite;
	animation-delay: -1.8s;
	will-change: transform, opacity;
}

@keyframes academyGlowBreath {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.88;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.08);
		opacity: 1;
	}
}

@keyframes academyArcBreath {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.85;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.06);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.academy-intro__glow,
	.academy-intro__arc {
		animation: none;
		opacity: 1;
	}
}

.academy-intro__arc::before,
.academy-intro__arc::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(197, 160, 89, 0.28);
	pointer-events: none;
}

.academy-intro__arc::before {
	inset: -14px;
	opacity: 0.75;
}

.academy-intro__arc::after {
	inset: 16px;
	opacity: 0.7;
	border-color: rgba(197, 160, 89, 0.24);
}

.academy-intro__person img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	vertical-align: bottom;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.academy-intro__main {
	position: relative;
	align-self: center;
	min-width: 0;
	padding: 8px 0 36px;
}

/* 타이틀 너비 기준으로 아이브로우·영상 폭 정렬 */
.academy-intro__panel {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	width: fit-content;
	max-width: 100%;
}

.academy-intro__eyebrow,
.academy-intro__lead,
.academy-intro__rule,
.academy-intro__feats,
.academy-intro__video {
	width: 0;
	min-width: 100%;
	box-sizing: border-box;
}

.academy-intro__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
}

.academy-intro__eyebrow-text {
	flex: 0 0 auto;
	font-family: "Noto Serif KR", "Times New Roman", serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--academy-gold);
}

.academy-intro__ornament {
	position: relative;
	flex: 1 1 auto;
	height: 1px;
	min-width: 16px;
	background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.85), transparent);
}

.academy-intro__ornament::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 5px;
	height: 5px;
	background: var(--academy-gold);
	transform: translateY(-50%) rotate(45deg);
	box-shadow: 0 0 8px rgba(197, 160, 89, 0.45);
}

.academy-intro__ornament--left::before {
	right: 0;
}

.academy-intro__ornament--right::before {
	left: 0;
}

.academy-intro__title {
	position: relative;
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0 0 18px;
	padding: 0;
	font-family: "Pretendard", Sans-serif;
	font-size: clamp(1.85rem, 3.3vw, 2.85rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.045em;
}

.academy-intro__title-text {
	position: relative;
	display: block;
	z-index: 1;
	white-space: nowrap;
	padding: 0 0.9em;
	box-sizing: border-box;
}

/* 타이틀 양옆 작은 장식 */
.academy-intro__title-text::before,
.academy-intro__title-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 6px;
	height: 6px;
	border: 1.5px solid var(--academy-gold);
	border-radius: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	opacity: 0.9;
	box-shadow: 0 0 8px rgba(197, 160, 89, 0.35);
}

.academy-intro__title-text::before {
	left: 0;
}

.academy-intro__title-text::after {
	right: 0;
}

.academy-intro__title-tone--a {
	color: #7ed9c7;
}

.academy-intro__title-tone--b {
	color: #e8c98a;
}

.academy-intro__lead {
	margin: 0 0 13px;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.82);
	word-break: keep-all;
	text-align: left;
	white-space: nowrap;
}

.academy-intro__rule {
	height: 1px;
	margin: 0 0 20px;
	background: linear-gradient(90deg, rgba(197, 160, 89, 0.7), rgba(197, 160, 89, 0.15), transparent);
	position: relative;
}

.academy-intro__rule::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	background: var(--academy-gold);
	transform: translateY(-50%) rotate(45deg);
}

/* 우측 아이콘 리스트 */
.academy-intro__feats {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.academy-intro__feats li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.academy-intro__feat-icon {
	flex: 0 0 auto;
	margin-top: 1px;
	font-size: 24px !important;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	color: var(--academy-gold);
	line-height: 1;
}

.academy-intro__feat-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: clamp(calc(1rem - 1px), calc(1.15vw - 1px), calc(1.1rem - 1px));
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.88);
	word-break: keep-all;
}

.academy-intro__video {
	position: relative;
	margin-top: 14px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
	background: #0a121a;
	border: 1px solid rgba(197, 160, 89, 0.22);
}

.academy-intro__video::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 236, 190, 0.08);
}

.academy-intro__video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 1024px) {
	.academy-intro__inner {
		grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
		column-gap: 22px;
	}
}

@media (max-width: 840px) {
	#sub-container:has(#academy_bg) {
		background-position: center top;
	}

	.academy-intro__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 20px 18px 40px;
		gap: 0;
		box-sizing: border-box;
	}

	/* 1. 인물 — 최상단 */
	.academy-intro__person {
		order: 1;
		width: min(78%, 320px);
		max-width: 320px;
		margin: 0 auto 20px;
		justify-self: center;
	}

	.academy-intro__glow {
		width: min(380px, 135%);
		top: 40%;
		opacity: 0.9;
		filter: blur(14px);
		/* PC 대각선 마스크 유지 — 모바일에서 mask 덮어쓰지 않음 */
	}

	.academy-intro__arc {
		width: min(340px, 125%);
		top: 40%;
		opacity: 0.72;
		border-color: rgba(197, 160, 89, 0.28);
		/* PC 대각선 마스크 유지 — 선이 과도하게 선명해지지 않도록 */
	}

	.academy-intro__arc::before,
	.academy-intro__arc::after {
		opacity: 0.45;
	}

	.academy-intro__person img {
		filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
		/* 하단만 서서히 투명 — 허리~손 구간에서 배경으로 페이드 */
		-webkit-mask-image: linear-gradient(
			to bottom,
			#000 0%,
			#000 72%,
			rgba(0, 0, 0, 0.65) 84%,
			rgba(0, 0, 0, 0.25) 93%,
			transparent 100%
		);
		mask-image: linear-gradient(
			to bottom,
			#000 0%,
			#000 72%,
			rgba(0, 0, 0, 0.65) 84%,
			rgba(0, 0, 0, 0.25) 93%,
			transparent 100%
		);
	}

	/* 2. 텍스트 — 중앙 */
	.academy-intro__main {
		order: 2;
		padding: 4px 0 0;
		text-align: center;
		align-self: stretch;
		min-width: 0;
	}

	.academy-intro__panel {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.academy-intro__eyebrow,
	.academy-intro__lead,
	.academy-intro__rule,
	.academy-intro__feats,
	.academy-intro__video {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.academy-intro__eyebrow {
		justify-content: center;
		margin: 0 0 14px;
		gap: 10px;
	}

	.academy-intro__eyebrow-text {
		font-size: 0.62rem;
		letter-spacing: 0.14em;
	}

	.academy-intro__title {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 16px;
		font-size: clamp(1.35rem, 5.6vw, 1.85rem);
		line-height: 1.35;
		text-align: center;
	}

	.academy-intro__title-text {
		display: inline-block;
		white-space: normal;
		padding: 0 0.75em;
		max-width: 100%;
		box-sizing: border-box;
	}

	.academy-intro__title-text::before,
	.academy-intro__title-text::after {
		width: 5px;
		height: 5px;
	}

	.academy-intro__lead {
		margin: 0 0 12px;
		padding: 0 2px;
		font-size: 14px;
		line-height: 1.75;
		letter-spacing: -0.02em;
		text-align: center;
		white-space: normal;
		word-break: keep-all;
		overflow-wrap: break-word;
		color: rgba(255, 255, 255, 0.86);
	}

	.academy-intro__lead br {
		display: none;
	}

	.academy-intro__lead + .academy-intro__lead {
		margin-top: 2px;
	}

	.academy-intro__feats {
		align-items: stretch;
		text-align: left;
		margin: 0 0 8px;
	}

	/* 3. 유튜브 — 최하단 + 여백 */
	.academy-intro__video {
		width: 100%;
		max-width: 100%;
		margin: 28px 0 12px;
		border-radius: 12px;
		box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
	}
}

@media (max-width: 400px) {
	.academy-intro__inner {
		padding: 16px 14px 36px;
	}

	.academy-intro__person {
		width: min(84%, 280px);
		max-width: 280px;
	}

	.academy-intro__title {
		font-size: clamp(1.25rem, 6vw, 1.55rem);
	}

	.academy-intro__lead {
		font-size: 13px;
		line-height: 1.7;
	}

	.academy-intro__video {
		margin: 24px 0 8px;
	}
}

/* 강사/CEO/가치/찾아오시는길 등 공통 서브 본문 */
#sub_content_full {
	width: 100%;
	padding: 35px 0 30px;
	box-sizing: border-box;
}

#sub_content_full h3 {
	margin: 0 0 20px;
	padding-bottom: 10px;
	font-size: 1.5em;
	font-weight: 700;
	color: #222;
}

#sub_content_full > .section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

@media (max-width: 768px) {
	#sub_content_full {
		padding: 20px 0 24px;
	}

	#sub_content_full h3 {
		font-size: 1.25em;
		margin-bottom: 14px;
	}
}

/* 강사소개 (/web/3) — balanceinvest stw=3 레이아웃 */
#teacher_bg {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
	aspect-ratio: 970 / 1479;
	background: url('/files/images/academy/b_teacher_2.png') no-repeat center top;
	background-size: 100% 100%;
}

@media (max-width: 768px) {
	#teacher_bg {
		aspect-ratio: 970 / 1479;
	}
}

/* CEO 메시지 (/web/4) — balanceinvest stw=4 레이아웃 */
#ceo_bg {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
	aspect-ratio: 917 / 733;
	background: url('/files/images/academy/b_ceo.png') no-repeat center top;
	background-size: 100% 100%;
}

@media (max-width: 768px) {
	#ceo_bg {
		aspect-ratio: 917 / 733;
	}
}

/* 핵심가치 (/web/5) — balanceinvest stw=5 레이아웃 */
#bvalue_bg {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
	aspect-ratio: 970 / 600;
	background: url('/files/images/academy/b_value.png') no-repeat center top;
	background-size: 100% 100%;
}

@media (max-width: 768px) {
	#bvalue_bg {
		aspect-ratio: 970 / 600;
	}
}

/* 밸런스투자란? (/web/7) — balanceinvest stw=7 레이아웃 */
/* ===== 모던 인터랙티브 스타일 ===== */

/* 컨테이너 */
.balance-visual {
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
}

/* 각 파트 */
.balance-visual__part {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.balance-visual__part + .balance-visual__part {
	padding-top: 10px;
}

/* 이미지 — 줌 인/아웃 부드러운 전환 */
.balance-visual__part img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
	            filter 0.8s ease;
	filter: saturate(0.92) brightness(1.02);
}

.balance-visual__part:hover img {
	transform: scale(1.015);
	filter: saturate(1) brightness(1.05);
}

/* 오버레이 */
.balance-visual__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: clamp(14px, 1.72vw, 18px);
}

/* 상단 영역 */
.balance-visual__upper {
	position: absolute;
	top: 12%;
	left: 3.5%;
	width: 52%;
}

/* 타이틀 — underline 애니메이션 */
.balance-visual__title {
	margin: 0 0 0.55em;
	font-size: 2em;
	font-weight: 700;
	line-height: 1.28;
	color: #a32035;
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
}

.balance-visual__title::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #a32035, #e06070);
	border-radius: 2px;
	transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.balance-visual__title.animate::after {
	width: 100%;
}

/* 리스트 */
.balance-visual__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.balance-visual__list li {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-bottom: 0.32em;
	padding-bottom: 0;
	font-size: calc(1em - 1px);
	line-height: 1.45;
	color: #555;
	border-bottom: 1px solid #c5c5c5;
	word-break: keep-all;
	position: relative;
	padding-left: 0;
	transition: all 0.3s ease;
}

.balance-visual__list li:hover {
	color: #a32035;
	border-bottom-color: #a32035;
	padding-left: 6px;
}

/* 카드 — 모던 백드롭 블러 + 호버 효과 */
.balance-visual__card {
	position: absolute;
	top: 55%;
	left: 3.5%;
	width: 52%;
	margin: 0;
	padding: 1.15em 1.3em;
	background: rgba(255, 255, 255, 0.68);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	word-break: keep-all;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 32px rgba(163, 32, 53, 0.08);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.4s ease,
	            background 0.4s ease;
}

.balance-visual__card:hover {
	transform: translateY(-4px) scale(1.01);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 16px 48px rgba(163, 32, 53, 0.15);
}

.balance-visual__card p {
	margin: 0;
	font-weight: 400;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(12px);
	animation: cardTextFadeIn 0.6s ease forwards;
}

.balance-visual__card p:nth-child(1) { animation-delay: 0.1s; }
.balance-visual__card p:nth-child(2) { animation-delay: 0.2s; }
.balance-visual__card p:nth-child(3) { animation-delay: 0.3s; }
.balance-visual__card p:nth-child(4) { animation-delay: 0.45s; }
.balance-visual__card p:nth-child(5) { animation-delay: 0.6s; }

@keyframes cardTextFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 수식 */
.balance-visual__formula {
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.6;
	color: #a32035;
	background: linear-gradient(135deg, #a32035, #d94a5e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.01em;
}

/* 키워드 */
.balance-visual__keyword {
	font-size: calc(1.15em + 4px);
	font-weight: 600;
	line-height: 1;
	color: #a32035;
	vertical-align: baseline;
	position: relative;
	display: inline-block;
}

.balance-visual__keyword::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #a32035;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.balance-visual__keyword:hover::after {
	transform: scaleX(1);
}

/* 두 번째 이미지 파트 — 진입 애니메이션 AOS 보강 */
.balance-visual__part--bottom {
	position: relative;
	overflow: hidden;
}

.balance-visual__part--bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(163, 32, 53, 0.03), transparent 60%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.balance-visual__part--bottom:hover::before {
	opacity: 1;
}

/* ===== AOS 커스텀 오버라이드 ===== */
.balance-visual [data-aos] {
	pointer-events: none;
}
.balance-visual [data-aos].aos-animate {
	pointer-events: auto;
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
	.balance-visual__upper,
	.balance-visual__card {
		width: 54%;
	}

	.balance-visual__card {
		top: 46%;
		padding: 1em 1.1em;
		border-radius: 14px;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.balance-visual__overlay {
		font-size: clamp(12px, 1.6vw, 15px);
	}

	.balance-visual__title {
		font-size: 1.85em;
	}

	.balance-visual__card p {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.balance-visual__part:hover img {
		transform: none;
	}
}

@media (max-width: 480px) {
	.balance-visual__upper {
		top: 5%;
		left: 5%;
		width: 88%;
	}

	.balance-visual__card {
		top: 44%;
		left: 5%;
		width: 88%;
		padding: 0.9em 1em;
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
	}

	.balance-visual__overlay {
		font-size: 11px;
	}

	.balance-visual__title {
		font-size: 1.6em;
	}
}

/*
  ===== 찾아오시는길 LOCATION v4 (2026-07-21) =====
  - /web/45(개인정보 취급방침) policy-hero와 동일한 상단 타이틀/배경 구성
  원상복귀:
  - HTML: location.20260720.bak.html → location.html
  - CSS : academy_intro.location.v1.bak.css 내용을 이 블록 자리에 붙여넣기
*/
#sub-container.location-page {
	--loc-hero: #202230;
	--loc-hero-2: #45464b;
	--loc-accent: #45464b;
	--loc-ink: #1c222c;
	--loc-muted: #66707d;
	--loc-line: rgba(28, 34, 44, 0.12);
	position: relative;
	isolation: isolate;
	margin-bottom: 0;
	padding-bottom: 0;
	background: #f3f4f6;
}

#sub-container.location-page::before {
	display: none;
}

#sub-container.location-page > * {
	position: relative;
	z-index: 1;
}

/* ----- 상단 타이틀 히어로 (web/45 policy-hero와 동일 톤) ----- */
.location-page .location-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--loc-hero);
	background-image:
		linear-gradient(90deg, var(--loc-hero-2) 50%, transparent 50%),
		linear-gradient(var(--loc-hero-2) 50%, transparent 50%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
	color: #fff;
	animation: locationFadeUp 0.65s ease both;
}

.location-page .location-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(12px, calc(6vw - 50px), 22px) clamp(20px, 4vw, 36px);
}

.location-page .location-hero__title {
	margin: 0 0 14px;
	padding: 0;
	border: 0;
	font-size: clamp(calc(1.9em - 10px), calc(3.4vw - 10px), calc(2.7em - 10px));
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.15;
	color: #fff;
}

.location-page .location-hero__lead {
	margin: 0;
	max-width: 22em;
	font-size: clamp(1em, 1.4vw, 1.15em);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.68);
	word-break: keep-all;
}

/* ----- 컨텐츠 영역 ----- */
#sub-container.location-page > .section.sub-body {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 28px) clamp(64px, 8vw, 100px);
	box-sizing: border-box;
	background: transparent;
}

.location-page #sub_content_full {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.location-page #sub_content_full > .section {
	max-width: none;
	margin: 0;
	padding: 0;
}

.location_con {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 28px);
	animation: locationFadeUp 0.75s ease 0.08s both;
}

/* 요약 정보 카드 (라이트 톤 + 레드 포인트) */
.location_summary {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
	padding: clamp(26px, 3.5vw, 40px) clamp(22px, 3vw, 40px);
	background: #fff;
	border: 1px solid var(--loc-line);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(28, 34, 44, 0.08);
}

.location_summary::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: var(--loc-accent);
}

.location_summary__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 52px;
}

.location_summary__fact {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.location_summary__fact + .location_summary__fact {
	padding-left: 52px;
	border-left: 1px solid rgba(61, 143, 209, 0.3);
}

.location_summary__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(61, 143, 209, 0.1);
	border: 1px solid rgba(61, 143, 209, 0.25);
	color: var(--loc-accent);
}

.location_summary__ico .material-symbols-outlined {
	font-size: 22px;
	line-height: 1;
}

.location_summary__fact .location_summary__label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--loc-accent);
}

.location_summary__fact p {
	margin: 0;
	font-size: 1.02em;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -0.02em;
	color: var(--loc-ink);
	word-break: keep-all;
}

.location_summary__fact a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(28, 34, 44, 0.25);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.location_summary__fact a:hover {
	color: var(--loc-accent);
	border-bottom-color: rgba(61, 143, 209, 0.6);
}

.location_summary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.location_summary__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 132px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-size: 0.95em;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.location_summary__btn .material-symbols-outlined {
	font-size: 19px;
	line-height: 1;
}

.location_summary__btn--primary {
	background: var(--loc-accent);
	box-shadow: 0 10px 22px rgba(61, 143, 209, 0.38);
}

.location_summary__btn--primary:hover {
	background: #2b76b4;
	box-shadow: 0 12px 26px rgba(61, 143, 209, 0.48);
	transform: translateY(-2px);
	color: #fff;
}

/* 지도 */
.location_con .map {
	position: relative;
	width: 100%;
	height: clamp(360px, 48vw, 480px);
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #c9d0d8;
	box-shadow: 0 6px 24px rgba(28, 34, 44, 0.06);
	animation: locationFadeUp 0.85s ease 0.14s both;
}

.location_con .map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.92) contrast(1.04);
}

/* 오시는 방법 (아이콘 카드 3단) */
.location_ways {
	animation: locationFadeUp 0.9s ease 0.2s both;
}

.location_ways__title {
	position: relative;
	margin: 0 0 18px;
	padding-left: 14px;
	font-size: 1.2em;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--loc-ink);
	line-height: 1.3;
}

.location_ways__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 1.05em;
	border-radius: 2px;
	background: var(--loc-accent);
}

.location_ways__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.location_ways__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 24px 22px;
	background: #eff6fc;
	border: 1px solid rgba(61, 143, 209, 0.14);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(28, 34, 44, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.location_ways__item:hover {
	transform: translateY(-4px);
	border-color: rgba(61, 143, 209, 0.35);
	box-shadow: 0 14px 28px rgba(28, 34, 44, 0.12);
}

.location_ways__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 12px;
	border-radius: 12px;
	background: rgba(61, 143, 209, 0.1);
	border: 1px solid rgba(61, 143, 209, 0.25);
	color: var(--loc-accent);
}

.location_ways__ico .material-symbols-outlined {
	font-size: 24px;
	line-height: 1;
}

.location_ways__key {
	font-size: 1em;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--loc-ink);
}

.location_ways__val {
	font-size: 0.94em;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -0.02em;
	color: var(--loc-muted);
	word-break: keep-all;
}

/* 레거시 호환 */
.location_con__head,
.location_con__eyebrow,
.location_con__info,
.location_con__meta,
.location_con__cards,
.location_con__card,
.location_con__intro,
.location_con .text01,
.location_con .text02 {
	display: none;
}

.location_con .map_table {
	width: 100%;
	border-top: 2px solid #333;
	border-collapse: collapse;
}

.location_con .map_table th,
.location_con .map_table td {
	padding: 14px 16px;
	border-bottom: 1px solid #ddd;
	font-size: 0.95em;
	line-height: 1.6;
	text-align: left;
	vertical-align: top;
}

.location_con .map_table th {
	width: 120px;
	font-weight: 700;
	color: #222;
	background: #f8f8f8;
}

.location_con .map_table td {
	color: #444;
}

@keyframes locationFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.location-page .location-hero,
	.location_con,
	.location_con .map,
	.location_ways {
		animation: none;
	}
}

@media (max-width: 960px) {
	.location_summary {
		flex-direction: column;
		align-items: stretch;
	}

	.location_summary__actions {
		padding-top: 4px;
	}

	.location_ways__list {
		grid-template-columns: 1fr;
	}

	.location_ways__item {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr);
		grid-template-areas:
			"ico key"
			"ico val";
		align-items: center;
		column-gap: 16px;
	}

	.location_ways__ico {
		grid-area: ico;
		margin-bottom: 0;
	}

	.location_ways__key {
		grid-area: key;
	}

	.location_ways__val {
		grid-area: val;
	}
}

@media (max-width: 560px) {
	.location_summary__facts {
		flex-direction: column;
		gap: 18px;
	}

	.location_summary__fact + .location_summary__fact {
		padding-left: 0;
		padding-top: 18px;
		border-left: 0;
		border-top: 1px solid rgba(61, 143, 209, 0.3);
	}

	.location_summary__actions {
		flex-direction: column;
	}

	.location_summary__btn {
		width: 100%;
	}

	.location_con .map {
		height: 280px;
	}
}

/* 찾아오시는길: 사이트 공통 차콜 톤 */
.location_summary,
.location_ways__item { background: #fff; border-color: var(--loc-line); }
.location_summary::before { height: 4px; background-color: #45464b; background-image: linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%), linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%); background-size: 4px 4px; background-position: 0 0, 2px 2px; }
.location_summary__ico,
.location_ways__ico { color: #45464b; background: #f1f2f4; border-color: rgba(69,70,75,.18); }
.location_summary__fact + .location_summary__fact { border-color: rgba(69,70,75,.18); }
.location_summary__btn--primary { color: #fff !important; background-color: #45464b; background-image: linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%), linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.08) 75%); background-size: 4px 4px; background-position: 0 0, 2px 2px; box-shadow: 0 10px 22px rgba(32,34,48,.24); }
.location_summary__btn--primary .material-symbols-outlined { color: #fff !important; opacity: 1; }
.location_summary__btn--primary:hover { color: #fff !important; background-color: #202230; box-shadow: 0 12px 26px rgba(32,34,48,.32); }
.location_con .map { border: 1px solid var(--loc-line); border-radius: 12px; }
.location_ways__title::before { background: #45464b; }
.location_ways__item:hover { border-color: rgba(69,70,75,.38); }
