@charset "UTF-8";

/* 공통 래퍼 */
.sp-wrap{
	max-width:1280px;
	margin:0 auto;
	color:#111;
}

/* 검진 그룹 */
.exam-group{
	margin-bottom:40px;
}

/* 검진 제목 */
.exam-title{
	margin:0 0 14px;
	font-size:22px;
	font-weight:900;
	letter-spacing:-0.4px;
	padding-left:4px;
}

/* 카드 */
.sp-card{
	border:1px solid #2b2b2b;
	border-radius:12px;
	margin-bottom:18px;
	background:#fff;
	overflow:hidden;
}

/* 헤더 */
.sp-head{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:14px;
	padding:14px 16px;
	border-bottom:1px solid #2b2b2b;
}

.sp-chip{
	font-weight:900;
	font-size:14px;
	padding:7px 12px;
	border-radius:999px;
	background:#b0bcea;
	border:1px solid #d4d4e6;
}

.sp-head-right{
	text-align:right;
}

.sp-cost-title{
	font-size:12px;
	font-weight:900;
	color:#333;
}
.sp-cost{
	font-size:14px;
}
.sp-cost b{ font-size:15px; }

/* 본문 그리드 */
.sp-body{ padding:16px; }

.sp-grid{
	display:grid;
	gap:12px;
	grid-template-columns: 2.2fr 1.2fr 1.2fr;
}

/* 박스 */
.sp-box{
	border:1px solid #2b2b2b;
	border-radius:12px;
	overflow:hidden;
	background:#fff;
}

.sp-box-title{
	margin:0;
	padding:10px 12px;
	font-size:13px;
	background:#96a6e8;
	border-bottom:1px solid #2b2b2b;
}

.sp-box-yellow{ background:#fbf7d9; }
.sp-box-yellow .sp-box-title{ background:rgba(0,0,0,0.08); }

.sp-badge{
	margin:12px;
	display:inline-block;
	padding:8px 10px;
	border-radius:10px;
	border:1px solid #cfcfe0;
	background:#f6f6fb;
	font-size:13px;
}

.sp-list{
	margin:0;
	padding:12px 12px 12px 22px;
}
.sp-list li{ margin:3px 0; }

.sp-hr{
	border:none;
	border-top:1px dashed #cfcfcf;
	margin:8px 12px;
	display:block;
}

.red{ color:#c70000; }
.del{ text-decoration:line-through; }

/* 반응형 */
@media (max-width:1100px){
	.sp-wrap{
		padding:18px;
	}
	.sp-grid{ grid-template-columns:1.7fr 1fr; }
}

@media (max-width:720px){
	.sp-wrap{
		padding:18px;
	}
	.sp-head{
		flex-direction:column;
		align-items:flex-start;
	}
	.sp-head-right{
		text-align:left;
		width:100%;
	}
	.sp-grid{ grid-template-columns:1fr; }
}