/* 여가디자인진흥센터 소개 — 가로 여백은 테마 .yeogadium-leisure-center-intro-page__inner 와 동일하게 (인사말 페이지와 동일) */
.yeogadium-lci {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding: var(--wp--preset--spacing--40, 1.5rem) 0;
	box-sizing: border-box;
}

/* 상단 로고 (탭 위, 가운데) */
.yeogadium-lci-header-logo-wrap {
	text-align: center;
	margin: 0 auto var(--wp--preset--spacing--40, 1.5rem);
	max-width: 100%;
}
.yeogadium-lci-header-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: min(100%, 42rem);
	width: 100%;
	height: auto;
	vertical-align: middle;
}

/* 탭 */
.yeogadium-lci-tabs {
	display: flex;
	gap: 0;
	margin-bottom: var(--wp--preset--spacing--50, 2.5rem);
	border-bottom: 2px solid var(--wp--preset--color--border, #e0e0e0);
}
.yeogadium-lci-tab {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--wp--preset--color--gray, #6c757d);
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.yeogadium-lci-tab:hover {
	color: var(--wp--preset--color--contrast, #212529);
}
.yeogadium-lci-tab.is-active {
	color: var(--wp--preset--color--navy, #1A2233);
	border-bottom-color: var(--wp--preset--color--navy, #1A2233);
}

/* 패널 */
.yeogadium-lci-panel {
	display: block;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	will-change: opacity, transform;
	pointer-events: none;
}
.yeogadium-lci-panel.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.yeogadium-lci-panel[hidden] {
	display: none !important;
}

/* 히어로 섹션 */
.yeogadium-lci-hero {
	padding: var(--wp--preset--spacing--50, 2.5rem) 0;
	margin-bottom: var(--wp--preset--spacing--40, 1.5rem);
}
.yeogadium-lci-hero-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	line-height: 1.25;
	color: var(--wp--preset--color--contrast, #212529);
	margin: 0 0 0.25rem;
	font-weight: 700;
}
.yeogadium-lci-hero-sub {
	font-size: 0.95rem;
	color: var(--wp--preset--color--gray, #6c757d);
	margin: 0 0 var(--wp--preset--spacing--30, 1rem);
}
.yeogadium-lci-tagline {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--wp--preset--color--navy, #1A2233);
	margin: 0 0 var(--wp--preset--spacing--30, 1rem);
}
.yeogadium-lci-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--wp--preset--color--contrast, #212529);
	margin: 0 0 1rem;
	max-width: 72ch;
}
.yeogadium-lci-intro:last-of-type {
	margin-bottom: 0;
}
/* 본문 강조 포인트 (제목 제외) */
.yeogadium-lci-point {
	color: var(--wp--preset--color--accent-purple, #6C3EB2);
	font-weight: 600;
}

/* 카드 섹션 */
.yeogadium-lci-card {
	background: var(--wp--preset--color--surface, #f8f9fa);
	border: 1px solid var(--wp--preset--color--border, #e0e0e0);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--40, 1.5rem) var(--wp--preset--spacing--50, 2rem);
	margin-bottom: var(--wp--preset--spacing--40, 1.5rem);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.yeogadium-lci-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--navy, #1A2233);
	margin: 0 0 var(--wp--preset--spacing--30, 1rem);
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--wp--preset--color--border, #e0e0e0);
}
.yeogadium-lci-card-lead {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--contrast, #212529);
	margin: 0 0 1rem;
}
/* 대표 사업 본문: 네이비 톤 */
.yeogadium-lci-flagship .yeogadium-lci-card-lead {
	color: var(--wp--preset--color--navy, #1A2233);
}
.yeogadium-lci-card-end {
	font-size: 0.9375rem;
	color: var(--wp--preset--color--gray, #6c757d);
	margin: 1rem 0 0;
	line-height: 1.5;
}

/* 리스트 — 섹션별 본문 포인트 컬러(마커만) */
.yeogadium-lci-list {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
	list-style: disc;
}
.yeogadium-lci-list li {
	margin-bottom: 0.5rem;
	line-height: 1.5;
	color: var(--wp--preset--color--contrast, #212529);
}
.yeogadium-lci-flagship .yeogadium-lci-list li::marker {
	color: var(--wp--preset--color--navy, #1A2233);
}
.yeogadium-lci-list-num {
	list-style: decimal;
}
.yeogadium-lci-list-num li {
	margin-bottom: 0.6rem;
}
.yeogadium-lci-functions .yeogadium-lci-list-num li::marker {
	color: var(--wp--preset--color--accent-purple, #6C3EB2);
}

/* 비전 — 본문 문장·리스트만 포인트 (제목 ‘비전’은 기존 유지) */
.yeogadium-lci-vision-main {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--navy, #1A2233);
	margin: 0 0 1rem;
}
.yeogadium-lci-vision-bar {
	height: 4px;
	background: var(--wp--preset--color--accent-green, #4CAF50);
	border: none;
	margin: 0 0 var(--wp--preset--spacing--30, 1rem);
	border-radius: 2px;
	max-width: 120px;
}
.yeogadium-lci-vision-list {
	margin-top: 0.5rem;
}
.yeogadium-lci-vision-list li {
	margin-bottom: 0.6rem;
}
.yeogadium-lci-vision .yeogadium-lci-vision-list li::marker {
	color: var(--wp--preset--color--accent-green, #4CAF50);
}

@media (max-width: 781px) {
	.yeogadium-lci-tab {
		padding: 0.6rem 1rem;
		font-size: 0.9375rem;
	}
	.yeogadium-lci-card {
		padding: var(--wp--preset--spacing--30, 1rem);
	}
}
