/* 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;
}

.ethics-workspace {
	display: flex;
	gap: 24px;
	margin-top: 20px;
}

@media (max-width: 992px) {
	.ethics-workspace {
		flex-direction: column;
	}
}

.ethics-pdf-card {
	flex: 2;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pdf-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
}

.pdf-title {
	margin: 0;
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pdf-download-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}

.pdf-download-btn:hover {
	background: rgba(168, 85, 247, 0.2);
	border-color: rgba(168, 85, 247, 0.4);
	color: #ffffff;
	transform: translateY(-1px);
}

.pdf-embed-wrapper {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	height: 520px;
}

.pdf-embed {
	width: 100%;
	height: 100%;
	display: block;
	background: #0f172a;
}

.ethics-values-card {
	flex: 1.1;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
}

.values-header {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
	position: relative;
}

.values-header::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1.5px;
	width: 40px;
	height: 2.5px;
	background: linear-gradient(90deg, #a855f7, #c084fc);
	border-radius: 2px;
}

.values-intro {
	font-size: 13.5px;
	line-height: 1.5;
	color: #cbd5e1;
	margin-bottom: 20px;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.value-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	padding: 14px 18px;
	color: #e2e8f0;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
	background: rgba(168, 85, 247, 0.05);
	border-color: rgba(168, 85, 247, 0.25);
	color: #ffffff;
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
}

.value-icon {
	color: #a855f7;
	font-size: 16px;
	transition: transform 0.2s ease;
}

.value-item:hover .value-icon {
	transform: scale(1.2);
	color: #c084fc;
}

.ethics-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;
	width: 100%;
}

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