@charset "utf-8";
/*==========================
    Team
==========================*/
.s0103 {
	max-width: 1400px;
	margin: 0 auto;
}

/* 제목 */
.s0103 .team-title {
	margin: 80px 0 40px;
	text-align: center;
}

.s0103 .team-title h3 {
	font-size: 42px;
	color: #006940;
	font-weight: 700;
}

.s0103 .team-title p {
	margin-top: 15px;
	color: #666;
	font-size: 18px;
}

/* 센터장 */
.s0103 .leader-box {
	display: flex;
	align-items: flex-start; /* 가운데 정렬 대신 위 정렬 */
	gap: 35px;
	margin-bottom: 60px;
	padding: 35px;
	background: #fff;
	border: 1px solid #dfe9e5;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.s0103 .leader-img {
	flex: 0 0 142px;
	max-width: 142px;
}

.s0103 .leader-img img {
	display: block;
	width: 100%;
	border-radius: 10px;
}

.s0103 .leader-info {
	flex: 1;
	padding: 0; /* 기존 45~60px 제거 */
}

.s0103 .leader-info h4 {
	font-size: 34px;
	color: #222;
	margin-bottom: 8px;
}

.s0103 .leader-info .position {
	display: inline-block;
	padding: 6px 18px;
	border-radius: 30px;
	background: #006940;
	color: #fff;
	font-size: 15px;
	margin-bottom: 25px;
}

.s0103 .leader-info dl {
	margin-bottom: 25px;
}

.s0103 .leader-info dt {
	display: inline-block;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 2px solid #006940;
	font-size: 22px;
	font-weight: 700;
	color: #006940;
}

.s0103 .leader-info dd {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	color: #555;
	line-height: 1.8;
}

.s0103 .leader-info dd:before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3b8f74;
}

/* 팀원 */
.s0103 .member-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.s0103 .member-card {
	position: relative;
	padding: 35px;
	border: 1px solid #d9e5e0;
	border-top: 4px solid #006940;
	border-radius: 20px;
	background: #fff;
	transition: .3s;
}

.s0103 .member-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.s0103 .member-card h5 {
	margin-bottom: 8px;
	font-size: 28px;
	color: #222;
}

.s0103 .member-card span {
	display: block;
	margin-bottom: 20px;
	color: #006940;
	font-weight: 600;
}

.s0103 .member-card ul li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 8px;
	line-height: 1.7;
	color: #666;
}

.s0103 .member-card ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3b8f74;
}

@media ( max-width :1024px) {
	.s0103 .leader-box {
		display: block;
	}
	.s0103 .leader-img {
		width: 280px;
		margin: 40px auto 0;
	}
	.s0103 .leader-info {
		padding: 40px;
	}
	.s0103 .member-wrap {
		grid-template-columns: 1fr;
	}
}

@media ( max-width :768px) {
	.s0103 .leader-box {
		display: block;
		padding: 25px;
	}
	.s0103 .leader-img {
		width: 142px;
		max-width: 142px;
		margin: 0 auto 25px;
	}
}