/* ============================================================
   Department Pages - shared professional styles
   ============================================================ */

.dep-nav {
	background: #ffffff;
	border-bottom: 1px solid #eef0f4;
	box-shadow: 0 2px 10px rgba(28, 30, 60, 0.05);
	position: relative;
	z-index: 6;
}
.dep-nav-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	padding: 14px 0;
}
.dep-nav-inner a {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 24px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #5a5f7a;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	transition: all 0.25s ease;
}
.dep-nav-inner a:hover {
	color: #4c1864;
	background: #f5f0fa;
	text-decoration: none;
}
.dep-nav-inner a.active {
	background: #4c1864;
	color: #ffffff;
	border-color: #4c1864;
}

.dep-lead {
	font-size: 15px;
	color: #4a4e63;
	line-height: 1.8;
}

.dep-section {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #eef0f5;
}
.dep-section h4 {
	font-size: 17px;
	font-weight: 700;
	color: #23263a;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.dep-section h4 i {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 8px;
	background: rgba(76, 24, 100, 0.08);
	color: #4c1864;
	font-size: 15px;
	flex: 0 0 34px;
}
.dep-section h5 {
	font-size: 15px;
	font-weight: 700;
	color: #4c1864;
	margin: 18px 0 10px;
}

.dep-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.dep-list li {
	position: relative;
	padding: 6px 0 6px 26px;
	color: #55586b;
	line-height: 1.65;
	font-size: 14.5px;
}
.dep-list li::before {
	content: "\f058";
	font-family: "FontAwesome";
	color: #4c1864;
	position: absolute;
	left: 0;
	top: 7px;
	font-size: 13px;
}
.dep-list.two-col {
	columns: 2;
	column-gap: 36px;
}
@media (max-width: 575px) {
	.dep-list.two-col {
		columns: 1;
	}
}

.dep-quote {
	margin: 22px 0 0;
	padding: 16px 20px;
	border-left: 4px solid #4c1864;
	background: #f8f5fc;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: #4a4e63;
}
.dep-quote cite {
	display: block;
	margin-top: 6px;
	font-style: normal;
	font-weight: 700;
	color: #4c1864;
	font-size: 13px;
}

.dep-btn {
	display: inline-block;
	margin-top: 6px;
	padding: 10px 22px;
	border-radius: 24px;
	background: #4c1864;
	color: #ffffff;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}
.dep-btn:hover {
	background: #3a114f;
	color: #ffffff;
	text-decoration: none;
}

.voc-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 18px 0 6px;
}
.voc-card {
	display: block;
	background: #ffffff;
	border: 1px solid #e9e6f2;
	border-radius: 10px;
	padding: 22px 16px;
	text-align: center;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 2px 8px rgba(28, 30, 60, 0.06);
}
.voc-card:hover {
	border-color: #4c1864;
	box-shadow: 0 8px 20px rgba(76, 24, 100, 0.15);
	transform: translateY(-3px);
	text-decoration: none;
}
.voc-card i {
	font-size: 26px;
	color: #4c1864;
	margin-bottom: 10px;
	display: block;
}
.voc-card h5 {
	font-size: 15px;
	font-weight: 700;
	color: #23263a;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
@media (max-width: 575px) {
	.voc-cards {
		grid-template-columns: 1fr;
	}
}
