/* Executive Board View Page Custom Styles */

/* Modern Page Title Override */
.pageTitle.modern-title {
	border-bottom: none !important;
	color: #ffffff !important;
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	margin-bottom: 25px;
	padding-bottom: 12px;
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.pageTitle.modern-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #a855f7, #c084fc);
	border-radius: 3px;
}

.executive-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	padding: 15px 0;
}

.executive-card {
	background-color: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	display: inline-block;
	margin: 0;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 210px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.executive-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(168, 85, 247, 0.25);
	border-color: rgba(168, 85, 247, 0.4);
}

.executive-img-wrapper {
	width: 100%;
	height: 210px;
	overflow: hidden;
	position: relative;
	background: #0f172a;
}

.executive-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.executive-card:hover .executive-img {
	transform: scale(1.05);
}

.executive-badge {
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
	border-radius: 0 0 0 12px;
	color: #ffffff;
	font-size: 10.5px;
	font-weight: 700;
	padding: 6px 14px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	letter-spacing: 0.03em;
}

.executive-info {
	padding: 14px 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.executive-name {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	transition: color 0.2s ease;
}

.executive-card:hover .executive-name {
	color: #c084fc;
}

.executive-role {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	color: #94a3b8;
	font-size: 12.5px;
	font-style: italic;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.executive-empty-alert {
	background: rgba(168, 85, 247, 0.08);
	border: 1px solid rgba(168, 85, 247, 0.2);
	color: #cbd5e1;
	border-radius: 12px;
	padding: 24px;
	margin-top: 15px;
	text-align: center;
}

.executive-empty-alert h4 {
	color: #c084fc;
	margin-bottom: 8px;
}

.theme-light .pageTitle.modern-title {
	background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.theme-light .executive-card {
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.theme-light .executive-card:hover {
	box-shadow: 0 15px 35px rgba(168, 85, 247, 0.18);
	border-color: rgba(168, 85, 247, 0.4);
}

.theme-light .executive-img-wrapper {
	background: #f1f5f9;
}

.theme-light .executive-info {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-light .executive-name {
	color: #0f172a;
}

.theme-light .executive-card:hover .executive-name {
	color: #7e22ce;
}

.theme-light .executive-role {
	color: #64748b;
}

.theme-light .executive-empty-alert {
	background: rgba(168, 85, 247, 0.04);
	border: 1px solid rgba(168, 85, 247, 0.15);
	color: #334155;
}

.theme-light .executive-empty-alert h4 {
	color: #7e22ce;
}

