/* Editorial Board UI Improvements */
.editorial-section-title {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 25px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e2e8f0;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.editorial-section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: #0b4c68;
}

/* Chief Editor Card Styling */
.chief-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #cbd5e1;
	border-left: 4px solid #0b4c68;
	border-radius: 16px;
	padding: 35px;
	margin-bottom: 45px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	display: flex;
	gap: 30px;
	align-items: flex-start;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chief-card:hover {
	transform: translateY(-2px);
	border-color: #94a3b8;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.chief-photo-wrapper {
	flex-shrink: 0;
}

.chief-photo {
	width: 170px;
	height: 210px;
	object-fit: cover;
	border-radius: 12px;
	border: 4px solid #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.chief-info {
	flex-grow: 1;
}

.chief-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(11, 76, 104, 0.1);
	color: #0b4c68;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.chief-info p {
	font-size: 14px;
	line-height: 1.75;
	color: #334155;
	margin-bottom: 10px;
}

.chief-info p strong {
	color: #0f172a;
}

.chief-info p a {
	color: #0b4c68;
	text-decoration: underline;
	word-break: break-all;
}

.chief-info p a:hover {
	color: #07374b;
}

/* Grid for Editorial Members */
.members-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-bottom: 40px;
}

.member-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 26px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.member-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.045);
}

.member-header {
	display: flex;
	gap: 20px;
	align-items: center;
}

.member-photo {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.member-header-details {
	flex-grow: 1;
}

.member-header-details h4 {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.35;
}

.member-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid #f1f5f9;
	padding-top: 18px;
}

.member-details p {
	font-size: 13.5px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 0;
}

.member-details p strong {
	color: #1e293b;
}

.member-details p a {
	color: #0b4c68;
	text-decoration: underline;
	word-break: break-all;
}

.member-details p a:hover {
	color: #07374b;
}

/* Responsive Settings */
@media (max-width: 991px) {
	.members-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.chief-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px;
	}

	.chief-photo {
		width: 150px;
		height: 185px;
	}

	.member-header {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
}
