/* ─────────────────────────────────────────
   OFFICE-BEARERS.CSS
   ───────────────────────────────────────── */

/* ─── PAGE HERO ─── */
.page-hero {
	background: linear-gradient(150deg, #0f0173 0%, #1a3a6e 100%);
	padding: 24px 18px 22px;
}

.page-hero h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 5px;
}

.page-hero p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin: 0;
}

/* ─── BEARER CARD ─── */
.bearer-card {
	background: #fff;
	border-radius: 13px;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 9px;
}

.bearer-photo {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid #e8edf7;
	background: #eef0f4;
}

.bearer-initials {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #e8edf7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #0f0173;
	flex-shrink: 0;
	letter-spacing: 0.5px;
}

.bearer-info {
	flex: 1;
	min-width: 0;
}

.bearer-info h4 {
	font-size: 14px;
	font-weight: 700;
	color: #0f0173;
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bearer-position {
	display: inline-block;
	background: #e8f4ff;
	color: #1a56db;
	font-size: 10.5px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 20px;
	margin-bottom: 5px;
}

.bearer-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 4px;
}

.bearer-meta span {
	font-size: 11px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bearer-meta svg {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	opacity: 0.5;
}

/* ─── EMPTY STATE ─── */
.empty-state {
	background: #fff;
	border-radius: 13px;
	padding: 30px 20px;
	text-align: center;
	font-size: 13px;
	color: #888;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
}
