/*
 * Organization Structure Module
 */

html body .nsv-org-structure-module,
html body .nsv-org-structure-module *{
	box-sizing:border-box;
}

html body .nsv-org-structure-module{
	background:linear-gradient(180deg,#f8fafc 0%,#fff 50%,#f8fafc 100%);
	padding-bottom:90px;
	min-height:70vh;
	overflow:hidden;
}

html body .nsv-org-structure-container{
	width:min(1180px,calc(100% - 32px));
	margin-inline:auto;
}

html body .nsv-org-structure-hero{
	text-align:center;
	padding:66px 0 42px;
}

html body .nsv-org-structure-kicker{
	display:inline-flex;
	padding:9px 18px;
	border-radius:999px;
	background:rgba(35,90,130,.10);
	color:#235a82;
	font-weight:900;
	margin-bottom:18px;
}

html body .nsv-org-structure-hero h1{
	margin:0 0 14px!important;
	color:#0f172a!important;
	font-size:clamp(34px,5vw,56px)!important;
	line-height:1.25!important;
	font-weight:950!important;
}

html body .nsv-org-structure-hero p{
	max-width:760px;
	margin:0 auto!important;
	color:#64748b!important;
	font-size:18px!important;
	line-height:2!important;
}

html body .nsv-org-structure-section{
	padding:20px 0 80px;
	overflow-x:auto;
}

html body .nsv-org-tree{
	min-width:780px;
	padding:20px;
}

html body .nsv-org-level{
	position:relative;
	display:flex;
	justify-content:center;
	gap:28px;
	list-style:none;
	margin:0;
	padding:40px 0 0;
}

html body .nsv-org-level:first-child{
	padding-top:0;
}

html body .nsv-org-node{
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	list-style:none;
	margin:0;
	padding:0 10px;
}

html body .nsv-org-level .nsv-org-level::before{
	content:"";
	position:absolute;
	top:18px;
	right:50%;
	width:1px;
	height:22px;
	background:#cbd5e1;
}

html body .nsv-org-card{
	position:relative;
	min-width:210px;
	max-width:260px;
	padding:18px 20px;
	border-radius:22px;
	text-align:center;
	background:#fff;
	border:1px solid rgba(15,23,42,.08);
	box-shadow:0 16px 42px rgba(15,23,42,.08);
	overflow:hidden;
}

html body .nsv-org-card::before{
	content:"";
	position:absolute;
	top:0;
	right:0;
	left:0;
	height:8px;
	background:var(--nsv-org-color,#235a82);
}

html body .nsv-org-card strong{
	display:block;
	color:#0f172a;
	font-size:18px;
	font-weight:900;
	line-height:1.6;
}

html body .nsv-org-card p{
	margin:8px 0 0!important;
	color:#64748b!important;
	font-size:14px!important;
	line-height:1.8!important;
}

html body .nsv-org-structure-empty{
	max-width:760px;
	margin:0 auto;
	padding:38px 24px;
	background:#fff;
	border:1px dashed rgba(15,23,42,.20);
	border-radius:28px;
	text-align:center;
	box-shadow:0 16px 44px rgba(15,23,42,.06);
}

@media(max-width:768px){
	html body .nsv-org-structure-section{
		padding-inline:0;
	}
	html body .nsv-org-tree{
		min-width:680px;
	}
	html body .nsv-org-card{
		min-width:180px;
	}
}
