.el-b00b8ef9-wrapper {
	position: relative;
	width: 100%;
	background-color: #FAFAFC;
	padding: 6rem 2rem;
	font-family: inherit;
	overflow: hidden;
}

.el-b00b8ef9-bg-glow {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 60%;
	background: radial-gradient(ellipse at top, rgba(46, 156, 202, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.el-b00b8ef9-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	z-index: 1;
}

/* Header */
.el-b00b8ef9-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.el-b00b8ef9-eyebrow {
	font-family: 'Inconsolata', monospace, sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #2E9CCA;
	margin-bottom: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.el-b00b8ef9-eyebrow::before,
.el-b00b8ef9-eyebrow::after {
	content: '';
	display: block;
	width: 24px;
	height: 1px;
	background-color: #2E9CCA;
}

.el-b00b8ef9-headline {
	font-size: 2.5rem;
	line-height: 1.2;
	font-weight: 700;
	color: #101A3F;
	margin: 0 0 1.5rem 0;
}

.el-b00b8ef9-supporting {
	font-size: 1.125rem;
	line-height: 1.6;
	color: #4A5568;
	margin: 0;
}

/* Grid */
.el-b00b8ef9-grid {
	display: grid;
	grid-template-columns: repeat(var(--el-cols, 3), 1fr);
	gap: 2rem;
}

@media (max-width: 991px) {
	.el-b00b8ef9-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.el-b00b8ef9-grid {
		grid-template-columns: 1fr !important;
	}
	.el-b00b8ef9-headline {
		font-size: 2rem;
	}
}

/* Flip Card Container */
.el-b00b8ef9-card {
	perspective: 1500px;
	height: 440px; /* Fixed height for reliable flipping */
}

.el-b00b8ef9-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
	transform-style: preserve-3d;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.el-b00b8ef9-card:hover .el-b00b8ef9-card-inner {
	transform: rotateY(180deg);
}

/* Front & Back Sides */
.el-b00b8ef9-card-front,
.el-b00b8ef9-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 12px;
	border: 1px solid rgba(16, 26, 63, 0.05);
	overflow: hidden;
}

/* --- FRONT STYLING --- */
.el-b00b8ef9-card-front {
	background-color: #FFFFFF;
	padding: 2.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.el-b00b8ef9-avatar-wrapper {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 1.25rem;
	padding: 4px;
	background: linear-gradient(135deg, #2E9CCA 0%, #101A3F 100%);
	position: relative;
	flex-shrink: 0;
}

.el-b00b8ef9-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	border: 3px solid #FFFFFF;
}

.el-b00b8ef9-avatar-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #E2E8F0;
	border: 3px solid #FFFFFF;
}

.el-b00b8ef9-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.el-b00b8ef9-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #101A3F;
	margin: 0 0 0.25rem 0;
}

.el-b00b8ef9-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #2E9CCA;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.el-b00b8ef9-desc {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #718096;
	margin: 0 0 1.5rem 0;
}

.el-b00b8ef9-social {
	display: flex;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 26, 63, 0.05);
	width: 100%;
	justify-content: center;
}

.el-b00b8ef9-icon {
	color: #A0AEC0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #F7FAFC;
	transition: all 0.2s ease;
}

.el-b00b8ef9-icon:hover {
	color: #FFFFFF;
	background-color: #101A3F;
	transform: translateY(-2px);
}

/* --- BACK STYLING --- */
.el-b00b8ef9-card-back {
	background-color: #101A3F; /* Default dark back */
	color: #FFFFFF;
	transform: rotateY(180deg);
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.el-b00b8ef9-name-back {
	font-size: 1.25rem;
	font-weight: 700;
	color: inherit;
	margin: 0 0 1rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.el-b00b8ef9-bio {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	flex-grow: 1;
	overflow-y: auto;
	margin-bottom: 1.5rem;
	padding-right: 0.5rem;
}

/* Custom scrollbar for bio if too long */
.el-b00b8ef9-bio::-webkit-scrollbar {
	width: 4px;
}
.el-b00b8ef9-bio::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}
.el-b00b8ef9-bio::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

.el-b00b8ef9-bio p {
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.el-b00b8ef9-bio p:last-child {
	margin-bottom: 0;
}

.el-b00b8ef9-social-back {
	display: flex;
	gap: 1rem;
	margin-top: auto;
}

.el-b00b8ef9-icon-back {
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	transition: all 0.2s ease;
}

.el-b00b8ef9-icon-back:hover {
	color: #101A3F;
	background-color: #FFFFFF;
}
