.member_profile {
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.member_profile_header {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border);
}
.member_profile_avatar {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: 700;
	color: white;
	flex-shrink: 0;
	overflow: hidden;
}
.member_profile_avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member_profile_info {
	flex: 1;
}
.member_profile_name {
	font-size: 32px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}
.member_profile_level {
	display: inline-block;
	padding: 6px 16px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
}
.member_profile_company {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 16px;
}
.member_profile_meta {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.member_profile_meta_item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 14px;
}
.member_profile_meta_item svg {
	width: 18px;
	height: 18px;
	color: var(--primary);
}
.member_profile_content {
	color: var(--text);
	line-height: 1.8;
	font-size: 15px;
}
.member_profile_content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text);
	padding-left: 12px;
	border-left: 4px solid var(--primary);
}
.member_profile_content p {
	margin-bottom: 16px;
}
@media (max-width: 640px) {
	.member_profile {
		padding: 24px;
	}
	.member_profile_header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.member_profile_name {
		font-size: 24px;
	}
	.member_profile_meta {
		justify-content: center;
	}
}
