.educator-bio-wrapper {
	font-family: 'Segoe UI', sans-serif;
	background-color: #fff;
	color: #333;
	padding: 24px;
	max-width: 1000px;
	margin: 40px auto;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.educator-bio-container {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	gap: 32px;
}

.profile-pic img {
	width: 100%;
	max-width: 300px;
	object-fit: cover;
}

.profile-content {
	flex: 1;
	min-width: 300px;
}

.profile-content h1 {
	margin-top: 0;
	font-size: 32px;
	color: #0e2f68;
}

.profile-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.blue-button {
	background-color: #0e2f68;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
}

.blue-button:hover {
	background-color: #003366;
	text-decoration: underline;
}

.circle-img {
	width: 300px; /* 根据需要调整大小 */
	height: 300px; /* 根据需要调整大小 */
	border-radius: 50%; /* 关键属性，使图片变成圆形 */
	overflow: hidden; /* 隐藏超出圆形部分的图像 */
}

@media (max-width: 768px) {
	.educator-bio-container {
		flex-direction: column;
		align-items: center;
	}

	.profile-content {
		text-align: center;
	}
}
