.profile-card-wrapper-10ebc895 {
	font-family: inherit;
	color: #333;
}

.profile-card-header {
	text-align: center;
	margin-bottom: 40px;
}

.profile-subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	color: #333;
}

.yellow-square {
	width: 10px;
	height: 10px;
	background-color: #ffc107;
	margin-right: 10px;
	display: inline-block;
}

.profile-title {
	font-size: 32px;
	font-weight: 500;
	margin: 0;
	color: #1a1a1a;
}

.profile-card-content {
	display: flex;
	gap: 50px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.profile-image-col {
	flex: 0 0 40%;
}

.profile-image-bg {
	background-color: #3b1c67;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 400px;
}

.profile-image-bg::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40%;
	height: 40%;
	background-color: rgba(0, 0, 0, 0.2);
	border-top-left-radius: 24px;
	z-index: 1;
}

.profile-image-bg img {
	position: relative;
	z-index: 2;
	max-width: 90%;
	height: auto;
	display: block;
}

.profile-info-col {
	flex: 1;
	position: relative;
	padding: 20px 0;
}

.profile-name {
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 5px 0;
	color: #1a1a1a;
}

.profile-role {
	font-size: 18px;
	font-weight: 500;
	color: #3b1c67;
	margin: 0 0 25px 0;
}

.profile-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 30px;
	max-width: 85%;
}

.profile-btn {
	display: inline-block;
	background-color: #3b1c67;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: opacity 0.3s ease;
	position: relative;
	z-index: 2;
}

.profile-btn:hover {
	opacity: 0.9;
	color: #ffffff;
}

.profile-bg-text {
	position: absolute;
	bottom: -30px;
	left: 0;
	font-size: 90px;
	font-weight: 700;
	color: #f2f2f2;
	z-index: 0;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	line-height: 1;
}

@media (max-width: 767px) {
	.profile-card-content {
		flex-direction: column;
		gap: 30px;
	}
	.profile-image-col {
		width: 100%;
		flex: 1;
	}
	.profile-desc {
		max-width: 100%;
	}
	.profile-bg-text {
		font-size: 50px;
		bottom: -15px;
	}
}
