/* ============================================
   의료진 — doctor 
   ============================================ */

.doctor {
	margin-top: 0;
}

.doctor .doctor-card {
	display: flex;
	align-items: flex-start;
	margin: 0 0 200px;
	gap: 120px;
}

.doctor .doctor-card:last-child {
	margin-bottom: 0;
	padding: 0;
}

.doctor .doctor-card:nth-of-type(2n) {
	flex-direction: row-reverse;
	justify-content: space-between;
	padding-left: 40px;
}

.doctor .doctor-photo {
	width: 550px;
	min-width: 550px;
	display: flex;
	flex-direction: column;
}

.doctor .doctor-img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: top center;
	display: block;
	flex-shrink: 0;
}

.doctor .doctor-content {
	flex: 1;
	min-width: 0;
	text-align: left;
	align-self: flex-start;
	padding-top: 0;
}

.doctor .doctor-content .doctor-role {
	font-size: 15px;
	font-weight: 300;
	text-align: center;
	width: fit-content;
	background-color: rgba(224, 230, 230, 0.6);
	border-radius: 32px;
	margin-bottom: 16px;
	padding: 4px 16px;
}

.doctor .doctor-content div.doctor-name {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	align-items: baseline;
	padding-left: 20px;
}

.doctor .doctor-content div.doctor-name p {
	margin: 0;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #2f2c39;
	line-height: 1.3;
}

.doctor .doctor-content div.doctor-name > span {
	font-size: 19px;
	font-weight: 300;
	display: inline;
	letter-spacing: 0.02em;
}

.doctor .doctor-content > .doctor-quote {
	font-size: 17px;
	font-weight: 500;
	color: #2f2c39;
	display: block;
	margin-top: 16px;
	padding-left: 20px;
	line-height: 1.6;
}

.doctor .doctor-content .doctor-history {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 0 0 20px;
	margin: 25px 0 0;
	list-style: none;
}

.doctor .doctor-content .doctor-history li {
	font-size: 16px;
	font-weight: 300;
	display: flex;
	align-items: flex-start;
	line-height: 1.6;
	color: #333;
}

.doctor .doctor-content .doctor-history li::before {
	content: '';
	display: inline-block;
	min-width: 4px;
	height: 4px;
	background-color: #555;
	border-radius: 50%;
	margin-right: 8px;
	margin-top: 0.55em;
	flex-shrink: 0;
}

@media (max-width: 1200px) {
	.doctor .doctor-card {
		gap: 60px;
		margin-bottom: 120px;
	}
	.doctor .doctor-photo {
		width: 45%;
		min-width: 0;
		max-width: 480px;
	}
	.doctor .doctor-img {
		height: 520px;
	}
	.doctor .doctor-card:nth-of-type(2n) {
		padding-left: 0;
	}
}

@media (max-width: 1024px) {
	.doctor .doctor-content div.doctor-name p {
		font-size: 30px;
	}
	.doctor .doctor-content div.doctor-name > span {
		font-size: 15px;
	}
	.doctor .doctor-content .doctor-role {
		font-size: 14px;
	}
	.doctor .doctor-content > .doctor-quote,
	.doctor .doctor-content .doctor-history li {
		font-size: 17px;
	}
}

@media (max-width: 900px) {
	.doctor .doctor-card,
	.doctor .doctor-card:nth-of-type(2n) {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		margin-bottom: 80px;
		padding-left: 0;
	}
	.doctor .doctor-photo {
		width: 100%;
		max-width: 420px;
	}
	.doctor .doctor-img {
		height: 480px;
	}
	.doctor .doctor-content {
		width: 100%;
		text-align: center;
	}
	.doctor .doctor-content div.doctor-name {
		padding-left: 0;
	}
	.doctor .doctor-content > .doctor-quote {
		padding-left: 0;
		text-align: left;
		max-width: 100%;
	}
	.doctor .doctor-content .doctor-history {
		padding-left: 0;
		text-align: left;
		max-width: 100%;
		margin: 20px 0 0;
		gap: 8px;
	}
}

@media (max-width: 768px) {
	.inner {
		padding: 0 20px;
		margin-bottom: 60px;
	}
	.doctor {
		margin-top: 0;
	}
	.doctor .doctor-content div.doctor-name p {
		font-size: 26px;
	}
	.doctor .doctor-content div.doctor-name > span {
		font-size: 14px;
	}
	.doctor .doctor-content > .doctor-quote,
	.doctor .doctor-content .doctor-history li {
		font-size: 14px;
	}
	.doctor .doctor-img {
		height: 360px;
	}
}
