.strategic_layout {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

@media only screen and (max-width: 768px) {
	.strategic_layout {
		flex-direction: column;
		gap: 28px;
	}
}

/* 왼쪽 */
.left_content {
	flex: 1;
}

.section_title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.objective_list {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.objective_list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 22px;
}

/* 아이콘 (동그라미 + 체크) */
.objective_list .icon {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: #fde9e2; /* 연한 주황 배경 */
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* 체크 아이콘 직접 생성 */
.objective_list .icon::after {
	content: "✔";
	font-size: 16px;
	color: #d84a1b;
	font-weight: bold;
}

/* 텍스트 */
.objective_list .text strong {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
.objective_list .text p {
	color: #777;
	font-size: 14px;
	line-height: 1.5;
}

.objective_list p {
	color: #777;
	font-size: 14px;
}

/* 오른쪽 카드 */
.right_card {
	flex: 1;
	background: #cc6946;
	color: #fff;
	padding: 30px;
	border-radius: 12px;
}

.right_card h3 {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 700;
}

.right_card ol {
	padding-left: 20px;
}

.right_card li {
	margin-bottom: 20px;
}

.right_card strong {
	display: block;
	margin-bottom: 6px;
}

.right_card p {
	font-size: 14px;
	opacity: 0.9;
}

/* 리스트 기본 제거 */
.project_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 각 항목 */
.project_list li {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
	align-items: flex-start;
}

/* 숫자 동그라미 */
.project_list .num {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2); /* 반투명 흰색 */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
}

/* 텍스트 */
.project_list .desc strong {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
}

.project_list .desc p {
	font-size: 13px;
	line-height: 1.4;
	opacity: 0.9;
}

:root {
	--main-color: #cc6946;
	--main-light: #f5e3dc;
	--main-border: #e7b7a6;
	--text-dark: #2f2f2f;
}

/* 🔥 모든 카드 공통 */
.ui-card {
	background: #f5e3dc;
	border: 1px solid #e7b7a6;
	border-radius: 16px;
    margin-top: 32px;
	padding: 24px;
    
}

/* 헤더 */
.ui-card__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.ui-card__head-icon {
	display: flex;
	color: #cc6946;
}

.ui-card__title {
	font-size: 18px;
	font-weight: 700;
	color: #cc6946;
}

/* 설명 */
.ui-card__desc {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 18px;
	color: #333;
}

/* 내부 아이템 박스 */
.ui-card__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border: 1.5px solid #e7b7a6;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 12px;
}

/* 아이콘 박스 */
.ui-card__icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #e8edf5;
	color: #e7b7a6;
}

.ui-card__icon.green {
	background: #dff5ec;
	color: #1aa36f;
}

/* 강조 박스 (Paradigm용) */
.ui-card__highlight {
	border: 2px solid #cc6946;
}

/* 화살표 */
.ui-card__arrow {
	display: flex;
	justify-content: center;
	margin: 10px 0;
	color: #cc6946;
}

/* (구) si-domain-hero는 si-side-layout로 통일됨 */

/* 공통: 섹션 타이틀/설명 옆 이미지 (PC: 좌우, 모바일: 상하) */
.si-side-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.si-side-layout__text {
	flex: 1;
	min-width: 0;
}

.si-side-layout__media {
	flex: 0 0 340px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.si-side-layout__media img {
	width: 100%;
	max-width: 340px;
	height: auto;
	border-radius: 12px;
	object-fit: contain;
}

/* si-data: iScroll 제거 후 네이티브 스크롤 — 풋터·저작권까지 스크롤 */
/* .wrap.pc.info .fp-section[data-anchor="si-data"] .fp-tableCell {
	justify-content: flex-start;
	min-height: 0;
}

.wrap.pc.info .fp-section[data-anchor="si-data"] .fp-scrollable {
	overflow-y: auto !important;
	overflow-x: hidden !important;
	height: 100% !important;
	max-height: 100% !important;
	-webkit-overflow-scrolling: touch;
} */

/* 본문 래퍼가 flex:1로 늘어나며 풋터 아래까지 흰 빈칸이 생기지 않도록 */
/* .wrap.pc.info .fp-section[data-anchor="si-data"] .partner_section_wrapper {
	flex: 0 0 auto;
	justify-content: flex-start;
}

.wrap.pc.info .fp-section[data-anchor="si-data"] .partner_container {
	flex: 0 1 auto;
	align-items: flex-start;
}

.wrap.pc.info .fp-section[data-anchor="si-data"] .partner_content_area {
	flex: 0 1 auto;
	justify-content: flex-start;
}

.wrap.pc.info .fp-section[data-anchor="si-data"] .partner_content.active {
	justify-content: flex-start;
} */

/* margin-top:auto는 flex 부모 안에서 카드~풋터 사이 빈 공간을 과하게 벌림 */
/* .wrap.pc.info .fp-section[data-anchor="si-data"] footer {
	margin-top: 28px;
} */

/* 플러그인이 넣은 min-height로 스크롤 끝에 흰 여백이 남는 경우 제거, 하단은 짧게만 */
/* .wrap.pc.info .fp-section[data-anchor="si-data"] .fp-scroller {
	transform: none !important;
	min-height: 0 !important;
	padding-bottom: 20px;
	box-sizing: border-box;
} */

/* SI: 마지막 섹션과 footer 간격 */
.si-footer-spacer {
	height: 48px;
}

@media only screen and (max-width: 768px) {
	.si-side-layout {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.si-side-layout__media {
		flex: none;
		width: 100%;
		justify-content: flex-start;
	}

	.si-side-layout__media img {
		max-width: 420px;
	}

	.si-footer-spacer {
		height: 28px;
	}
}

/* 안쪽 흰 상자: 얇은 진한 테두리 */
.paradigm-shift-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #64748b;
	border-radius: 8px;
	box-sizing: border-box;
	min-height: 48px;
}

.paradigm-shift-row__text {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: right;
	flex: 1;
	min-width: 0;
	line-height: 1.35;
}

.paradigm-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px 5px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
	line-height: 1.2;
}

.paradigm-badge__ico {
	flex-shrink: 0;
	vertical-align: middle;
}

.paradigm-badge--existing {
	background: #e3f2fd;
	color: #0d47a1;
	border: 1px solid #90caf9;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.paradigm-badge--future {
	background: #e8f5e9;
	color: #1b5e20;
	border: 1px solid #a5d6a7;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.paradigm-shift-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2px 0 4px;
	color: #1976d2;
}

.paradigm-shift-arrow svg {
	display: block;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.8));
}


@media only screen and (max-width: 480px) {
	.paradigm-shift-card {
		max-width: none;
		margin-top: 20px;
		padding: 16px 12px 18px;
	}

	.paradigm-shift-card__title {
		font-size: 16px;
	}

	.paradigm-shift-row {
		flex-wrap: nowrap;
		padding: 10px 10px;
		gap: 8px;
		min-height: 0;
	}

	.paradigm-badge {
		font-size: 11px;
		padding: 4px 8px 4px 6px;
	}

	.paradigm-badge__ico {
		width: 12px;
		height: 12px;
	}

	.paradigm-shift-row__text {
		font-size: 13px;
		text-align: right;
		flex: 1;
	}
}