@font-face {
	font-family: 'HyundaiSansTextKRBold';
	src: url('../font/HyundaiSansTextKRBold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'HyundaiSansTextKRMedium';
	src: url('../font/HyundaiSansTextKRMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'HyundaiSansTextKRRegular';
	src: url('../font/HyundaiSansTextKRRegular.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'HyundaiSansHeadKRLight';
	src: url('../font/HyundaiSansHeadKRLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'HyundaiSansHeadKRRegular';
	src: url('../font/HyundaiSansHeadKRRegular.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'HyundaiSansHeadKRMedium';
	src: url('../font/HyundaiSansHeadKRMedium.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

/* reset */
* { box-sizing:border-box; margin:0; padding:0; }

html, body {
	background:#fff;
	color:#111;
	font-family:'HyundaiSansTextKRMedium', system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

/* 메인 3패널 그리드 */
#mainpage {
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	padding: 60px;
	min-height: 100vh;
	align-items: stretch;
}

/* 개별 패널 카드 */
#mainpage .panel {
	background:#f6f3f2;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
	position:relative;
}

/* 제목 */
#mainpage .headline {
	position:absolute;
	font-family: 'HyundaiSansTextKRBold';
	font-size: 44px;
	letter-spacing:-0.02em;
	width:100%;
	top:48%;
	left:50%;
	transform:translate(-50%, -50%);
	text-align:center;
	justify-content:center;
	align-items:center;
}

#mainpage .headline2 {
	position:absolute;
	font-family: 'HyundaiSansTextKRBold';
	font-size: 44px;
	letter-spacing:-0.02em;
	width:100%;
	top:190px;
	left:50%;
	transform:translateX(-50%);
	text-align:center;
	justify-content:center;
	align-items:center;
}

#mainpage .feature-group {
	position:absolute;
	top:35%;
	left:50%;
	transform:translateX(-50%);
	width:100%;
	height:42%;
}

/* 특징 박스 (진밤 파란 박스) */
#mainpage .feature {
	width: 367px;
	height: 114px;
	background: #082f57;
	color: #fff;
	position: relative; /* 안쪽 absolute 기준 */
	margin: 0 auto 25px;
}

#mainpage .feature-text {
	position: absolute;
	left: 44px; /* 왼쪽에서 44px */
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	font-size: 24px;
	line-height: 1.2;
	font-family: 'HyundaiSansHeadKRRegular';
	color: #fff;
}

#mainpage .feature-icon {
	position: absolute;
	right: 44px; /* 오른쪽에서 44px */
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 10px;
	display: grid;
	place-items: center;
}

#mainpage .feature-text.single { font-size:30px; }

#mainpage .feature-icon {
	width:56px;
	height:56px;
	border-radius:10px;
	display:grid;
	place-items:center;
	margin-left:16px;
	flex: 0 0 56px;
}

/* 터치 CTA */
#mainpage .touch-cta {
	position:absolute;
	display:flex;
	align-items:center;
	gap:10px;
	color:#9a9a9a;
	font-family: 'HyundaiSansTextKRRegular';
	font-size:24px;
	bottom:63px;
	left:50%;
	transform:translateX(-50%);
}

#mainpage .touch-cta img {margin-bottom:10px; width:24px;}

#mainpage .touch-cta.center { justify-content:center; }

#mainpage .icon-hand {
	width:22px;
	height:22px;
}

#subpage01 {
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 60px;
	padding: 60px;
	min-height: 100vh;
	align-items: stretch;
}

#subpage01 .panel {
	background: #f6f3f2;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
	position: relative;
	display: flex;              /* flex 컨테이너 */
	justify-content: center;    /* 가로 중앙 */
	align-items: center;        /* 세로 중앙 */
	text-align: center;         /* 텍스트 중앙 */
	padding: 80px;              /* 텍스트 주변 여백 */
	min-height: calc(100vh - 120px); /* 화면 기준 가운데 정렬 유지 */
}

/* 닫기 버튼 */
#subpage01 .close-btn {
	position: absolute;
	top: 60px;
	right: 60px;
}

/* 본문 텍스트 */
#subpage01 .panel-text p {
	font-family: 'HyundaiSansHeadKRRegular', sans-serif;
	font-size: 30px;
	line-height: 1.4;
	color: #111;
	margin-bottom: 55px;
}
#subpage01 .panel-text p:last-child {
	margin-bottom: 0;
}

#detail_info {
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 60px;
	padding: 60px;
	min-height: 100vh;
	align-items: stretch;
}

#detail_info .panel {
	background: #f6f3f2;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
	position: relative;
	min-height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#detail_info .close-btn {
	position: absolute;
	top: 60px;
	right: 60px;
}

/* 내부 컨텐츠 (사진+텍스트 좌우 배치) */
#detail_info .panel-inner {
	display: flex;
	align-items: center;
}

/* 사진 */
#detail_info .panel-image {
	margin-left: 110px; /* 사진과 텍스트 사이 거리 */
}
#detail_info .panel-image img {
	max-width: 672px; /* 필요 시 조정 */
	height: auto;
	display: block;
}

/* 텍스트 */
#detail_info .panel-text {
    margin-left: 140px;
    height: 672px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 상하 중앙 정렬 */
}
#detail_info .panel-text h2 {
	font-family: 'HyundaiSansHeadKRRegular';
	font-size: 55px;
	margin-bottom: 118px;
	text-align: left;
}
#detail_info .panel-text p {
	font-family: 'HyundaiSansTextKRRegular';
	font-size: 30px;
	line-height: 1.4;
	margin-bottom: 60px;
	text-align: left;
}

#detail_info .panel-text .small-descript {
	font-size: 24px;
	margin-bottom:0px;
	}

