
:root{
	--kafpv-bg:#0b1324;
	--kafpv-card:#101a2f;
	--kafpv-line:#25344e;
	--kafpv-cyan:#38bdf8;
	--kafpv-cyan2:#7dd3fc;
	--kafpv-text:#f8fafc;
	--kafpv-muted:#94a3b8;
}

body.single-personnel{
	background:var(--kafpv-bg);
}

.kafpv-person-page,
.kafpv-person-page *{
	box-sizing:border-box;
}

.kafpv-person-page{
	min-height:70vh;
	padding:28px 0 54px;
	background:
		radial-gradient(circle at 85% 0%,rgba(56,189,248,.07),transparent 28%),
		var(--kafpv-bg);
	color:var(--kafpv-text);
	font-family:Inter,Arial,sans-serif;
}

.kafpv-wrap{
	width:min(1280px,calc(100% - 40px));
	margin:0 auto;
}

.kafpv-back{
	display:inline-flex;
	margin:0 0 16px;
	color:var(--kafpv-muted)!important;
	text-decoration:none!important;
	font-size:13px;
	font-weight:700;
}

.kafpv-back:hover{
	color:var(--kafpv-cyan)!important;
}

.kafpv-hero{
	display:grid;
	grid-template-columns:minmax(320px,42%) 1fr;
	gap:22px;
	align-items:start;
}

.kafpv-photo-card,
.kafpv-card{
	background:rgba(16,26,47,.95);
	border:1px solid var(--kafpv-line);
	border-radius:22px;
}

.kafpv-photo-card{
	position:sticky;
	top:18px;
	padding:14px;
}

.kafpv-photo-wrap{
	width:100%;
	aspect-ratio:1/1;
	overflow:hidden;
	border-radius:16px;
	border:1px solid rgba(148,163,184,.24);
	background:#111827;
}

.kafpv-photo-wrap img{
	display:block!important;
	width:100%!important;
	height:100%!important;
	max-width:none!important;
	object-fit:cover!important;
	object-position:center 27%!important;
	margin:0!important;
}

.kafpv-photo-caption{
	padding:18px 8px 6px;
}

.kafpv-photo-caption h1{
	margin:0;
	color:#fff;
	font-size:clamp(28px,3vw,42px);
	line-height:1.03;
	font-weight:800;
	letter-spacing:-.035em;
}

.kafpv-photo-caption p{
	margin:10px 0 0;
	color:var(--kafpv-cyan2);
	font-size:15px;
	line-height:1.45;
	font-weight:700;
}

.kafpv-right{
	display:flex;
	flex-direction:column;
	gap:16px;
}

.kafpv-card{
	padding:22px;
}

.kafpv-label{
	display:block;
	margin-bottom:9px;
	color:var(--kafpv-cyan);
	font-size:11px;
	font-weight:800;
	letter-spacing:.15em;
	text-transform:uppercase;
}

.kafpv-rich p,
.kafpv-card p{
	margin:0 0 10px;
	color:#cbd5e1;
	font-size:14px;
	line-height:1.65;
}

.kafpv-rich p:last-child,
.kafpv-card p:last-child{
	margin-bottom:0;
}

.kafpv-quick-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:16px;
}

.kafpv-degree strong{
	display:block;
	color:#fff;
	font-size:17px;
	line-height:1.3;
}

.kafpv-disciplines{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px;
	margin:0;
	padding:0;
	list-style:none;
}

.kafpv-disciplines li{
	position:relative;
	padding:12px 14px 12px 34px;
	border:1px solid rgba(148,163,184,.14);
	border-radius:14px;
	background:#0d1729;
	color:#cbd5e1;
	font-size:14px;
	line-height:1.5;
}

.kafpv-disciplines li:before{
	content:"";
	position:absolute;
	left:14px;
	top:19px;
	width:7px;
	height:7px;
	border-radius:50%;
	background:var(--kafpv-cyan);
	box-shadow:0 0 10px rgba(56,189,248,.55);
}

.kafpv-links-grid{
	display:grid;
	grid-template-columns:repeat(5,minmax(0,1fr));
	gap:10px;
}

.kafpv-link{
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:64px;
	padding:10px;
	border:1px solid var(--kafpv-line);
	border-radius:14px;
	background:#0d1729;
	color:#dbeafe!important;
	text-decoration:none!important;
	text-align:center;
	font-size:12px;
	font-weight:800;
	transition:.2s ease;
}

.kafpv-link:hover{
	transform:translateY(-2px);
	border-color:rgba(56,189,248,.55);
	color:#fff!important;
}

.kafpv-bio-section{
	margin-top:22px;
}

.kafpv-bio-section>h2{
	margin:0 0 12px;
	color:#fff;
	font-size:26px;
	letter-spacing:-.03em;
}

.kafpv-bio{
	position:relative;
}

.kafpv-bio-content{
	color:#cbd5e1;
	font-size:14px;
	line-height:1.7;
}

.kafpv-bio-content p{
	margin:0 0 12px;
}

.kafpv-collapsible:not(.is-open) .kafpv-bio-content{
	position:relative;
	max-height:255px;
	overflow:hidden;
}

.kafpv-collapsible:not(.is-open) .kafpv-bio-content:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height:90px;
	background:linear-gradient(to bottom,rgba(11,19,36,0),var(--kafpv-bg));
	pointer-events:none;
}

.kafpv-toggle{
	width:100%;
	min-height:44px;
	margin-top:10px;
	border:1px solid #334155;
	border-radius:13px;
	background:#101a2f;
	color:#fff;
	font-size:13px;
	font-weight:800;
	cursor:pointer;
}

.kafpv-toggle:hover{
	border-color:rgba(56,189,248,.55);
}

.kafpv-mobile{
	display:none;
}

/* Tablet */
@media(max-width:950px) and (min-width:651px){
	.kafpv-hero{
		grid-template-columns:1fr;
	}
	.kafpv-photo-card{
		position:relative;
		top:auto;
		width:min(620px,100%);
		margin:0 auto;
	}
	.kafpv-links-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

/* Phone */
@media(max-width:650px){
	.kafpv-person-page{
		padding:7px 0 32px;
	}

	.kafpv-wrap{
		width:calc(100% - 18px);
	}

	.kafpv-desktop{
		display:none!important;
	}

	.kafpv-mobile{
		display:block;
	}

	.kafpv-back{
		margin-bottom:9px;
		font-size:12px;
	}

	.kafpv-mobile-photo{
		display:block!important;
		width:100%!important;
		height:auto!important;
		aspect-ratio:1/1;
		object-fit:cover!important;
		object-position:center 27%!important;
		border:1px solid #2a3a55;
		border-radius:18px;
	}

	.kafpv-mobile-top h1{
		margin:15px 0 0;
		color:#fff;
		text-align:center;
		font-size:28px;
		line-height:1.05;
		font-weight:800;
		letter-spacing:-.035em;
	}

	.kafpv-mobile-role{
		max-width:92%;
		margin:8px auto 20px;
		color:var(--kafpv-cyan2);
		text-align:center;
		font-size:14px;
		line-height:1.4;
		font-weight:700;
	}

	.kafpv-mobile-content{
		padding-top:16px;
		border-top:1px solid #263650;
	}

	.kafpv-mobile-content h2{
		margin:23px 0 8px;
		color:var(--kafpv-cyan);
		font-size:17px;
		line-height:1.2;
		font-weight:800;
	}

	.kafpv-mobile-content h2:first-child{
		margin-top:0;
	}

	.kafpv-mobile-content p,
	.kafpv-mobile-content li,
	.kafpv-mobile-content .kafpv-bio-content{
		color:#cbd5e1;
		font-size:14px;
		line-height:1.65;
	}

	.kafpv-mobile-content p{
		margin:0 0 11px;
	}

	.kafpv-mobile-content ul{
		margin:0;
		padding-left:20px;
	}

	.kafpv-mobile-content li{
		margin-bottom:7px;
	}

	.kafpv-mobile-links a{
		display:block;
		padding:9px 0;
		border-bottom:1px solid rgba(148,163,184,.14);
		color:var(--kafpv-cyan2)!important;
		text-decoration:none!important;
		font-size:14px;
		font-weight:700;
	}

	.kafpv-mobile-links a:last-child{
		border-bottom:0;
	}

	.kafpv-collapsible:not(.is-open) .kafpv-bio-content{
		max-height:245px;
	}
}


/* v1.1 compact fallback layout for records with only basic imported data */
.kafpv-right:has(.kafpv-card:nth-child(1):last-child){
	align-self:start;
}

.kafpv-right:has(.kafpv-card:nth-child(1):last-child) .kafpv-card{
	min-height:0;
}

.kafpv-right:has(.kafpv-quick-grid:last-child){
	align-self:start;
}

.kafpv-photo-wrap:empty{
	display:none;
}

.kafpv-photo-card:has(.kafpv-photo-wrap:empty){
	padding-top:18px;
}

@media(min-width:951px){
	.kafpv-right{
		min-width:0;
	}

	.kafpv-card{
		width:100%;
	}

	.kafpv-quick-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}
