:root {
	--brand-color: #0b223a;
	--text-color: #1a2a3a;
	--border-light: #dde4ef;
	--bg-light: #f8faff;
	--table-header-bg: #ffffff;
}



/* 2. 메인 패널 및 상단 배지 구역 */
.display-panel {
	width: 100%;
	margin-top: 40px;
}

.panel-header-badge {
	text-align: center;
	margin-bottom: 20px;
}

.badge-node {
	display: inline-block;
	/* background: #0070c0; */
	background: #125d9e;
	/* 도면의 밝은 푸른색 메인 탭/배지 테마 반영 */
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	padding: 8px 35px;
	border-radius: 4px;
}

/* 중앙 정렬 설명문 */
.panel-main-summary {
	width: 100%;
	text-align: center;
	margin-bottom: 35px;
}

.panel-main-summary p {
	font-size: 1.15rem;
	font-weight: 600;
	color: #111111;
	line-height: 1.7;
	margin: 0;
	word-break: keep-all;
}

/* 3. 도면 코어: 좌측 사진 + 우측 2단 테이블 분할 양식 (반응형 변환 제어) */
.grid-content-split {
	display: grid;
	grid-template-columns: 400px 1fr;
	/* 사진 고정폭 배정 및 잔여 폭 테이블 자동 확장 */
	gap: 30px;
	align-items: stretch;
	margin-bottom: 40px;
}

/* 좌측 비주얼 사진 구역 */
.visual-media-box {
	width: 100%;
	border: 1px solid var(--border-light);
	border-radius: 4px;
	overflow: hidden;
	background-color: var(--bg-light);
}

.visual-media-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 우측 2단 테이블 레이아웃 구역 */
.specification-table-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* 표 내부 2열 균등 분할 */
	gap: 20px;
	/* border: 1px solid #111111; */
	/* 도면의 짙은 아웃라인 테두리 반영 */
	border: none;
	/* border-top: 1px solid #111111; */
	/* border-top: 1px solid transparent; */
	/* 상단 테두리 유지 */
	/* border-bottom: 1px solid #111111; */
	/* border-bottom: 2px solid transparent; */
	/* 하단 테두리 유지 */
	/* border-left: 1px solid transparent; */
	/* 좌측 외곽선 투명하게 변경 */
	/* border-right: 1px solid transparent; */
	/* 우측 외곽선 투명하게 변경 */
	border-radius: 0px;
	overflow: visible;
}

.table-column-group {
	display: flex;
	flex-direction: column;
	/* border-top: 1px solid transparent; */
	border-top: 2px solid #111111;
	/* 각 열의 상단 수평선 부여 */
	/* border-bottom: 1px solid transparent; */
	border-bottom: 2px solid #111111;
	/* 각 열의 하단 수평선 부여 */
}

.table-column-group:first-child {
	/* border-right: 1px solid #111111; */
	border-right: none;
	/* 센터 분할선 */
}

/* 테이블 열 헤더 */
.table-column-header {
	background-color: var(--table-header-bg);
	/* border-bottom: 2px solid #111111; */
	border-bottom: none;
	/* font-size: 0.9rem; */
	font-size: 1.2rem;
	font-weight: 700;
	color: #111111;
	text-align: center;
	padding: 12px 10px;
	font-family: 'Arial', sans-serif;
}

/* 테이블 열 바디 데이터 리스트 */
.table-column-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-grow: 1;
	background-color: #ffffff;
}

.table-data-item {
	/* font-size: 0.95rem; */
	font-size: 1.0rem;
	color: #333333;
	text-align: center;
	line-height: 1.4;
	word-break: keep-all;
}

/* 4. 도면 하단 관련 연구 데이터 구역 */
.research-section {
	width: 100%;
	border-top: 1px dashed var(--border-light);
	padding-top: 30px;
}

.research-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111111;
	margin: 0 0 15px 0;
	font-family: 'Arial', sans-serif;
}

.research-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.research-item {
	font-size: 0.95rem;
	color: #000000;
	font-weight: 600;
	line-height: 1.5;
	font-family: 'Arial', sans-serif;
	text-align: justify;
}

/* ==========================================================================\
   5. 해상도별 흐름 최적화 - 반응형 미디어 쿼리(Media Query) 구간
   ========================================================================== */

/* 태블릿 및 패드 구간 제어선 (1024px 이하 해상도) */
@media screen and (max-width: 1024px) {
	.grid-content-split {
		grid-template-columns: 1fr;
		/* 화면 폭 부족 시 사진과 테이블을 위아래 1열 수직 정렬 */
	}

	.visual-media-box {
		height: 300px;
	}

	.panel-main-summary p {
		font-size: 1.05rem;
	}
}

/* 모바일 소화면 구간 제어선 (768px 이하 해상도) */
@media screen and (max-width: 768px) {
	/* .layout-main-title {
		font-size: 1.8rem;
	} */

	.panel-main-summary p {
		text-align: justify;
	}

	.specification-table-box {
		grid-template-columns: 1fr;
		/* 테이블 내부 좌우 열도 수직 종대 정렬로 파괴 전환 */
	}

	.table-column-group:first-child {
		border-right: none;
		border-bottom: 1px solid #111111;
	}

	.table-column-body {
		padding: 15px;
	}
}

/* ==========================================================================
   6. AI Robot 페이지 순차적 시차 나타나기 애니메이션 정의
   ========================================================================== */

/* 기본 대기 상태: 투명화 및 30px 하향 배치 */
.layout-title-area,
.panel-header-badge,
.panel-main-summary,
.visual-media-box,
.specification-table-box .table-column-group,
.research-section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 좌측 사진 박스는 미세한 줌인 효과 결합 */
.visual-media-box img {
	transform: scale(0.96);
	transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .motion_start 활성화 시 위에서 아래로 순차 등장 (0.1s 간격 딜레이) */

/* 1. 상단 대타이틀 */
.layout-wrapper.motion_start .layout-title-area {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}

/* 2. 푸른색 배지 */
.layout-wrapper.motion_start .panel-header-badge {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

/* 3. 메인 설명문 */
.layout-wrapper.motion_start .panel-main-summary {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

/* 4. 좌측 사진 박스 및 이미지 복원 */
.layout-wrapper.motion_start .visual-media-box {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.layout-wrapper.motion_start .visual-media-box img {
	transform: scale(1);
	transition-delay: 0.4s;
}

/* 5. 우측 테이블 좌측 열 (Key Capabilities) */
.layout-wrapper.motion_start .specification-table-box .table-column-group:nth-child(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

/* 6. 우측 테이블 우측 열 (Technology Relevance) */
.layout-wrapper.motion_start .specification-table-box .table-column-group:nth-child(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

/* 7. 하단 관련 연구 목록 */
.layout-wrapper.motion_start .research-section {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s;
}