.careers-section {
	background: #f8f9fb;
}

.career-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.career-title {
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.45;
	color: #06263f;
	margin-bottom: 14px;
}

.career-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4c5b69;
	font-weight: 500;
}

.career-location i {
	color: #0d6efd;
	font-size: 1rem;
}

.career-card .btn {
	align-self: flex-start;
	min-width: 120px;
	font-weight: 600;
	border-radius: 8px;
}

.career-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 24px;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1060;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.career-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.career-modal-card {
	width: min(920px, 100%);
	max-height: min(86vh, 860px);
	overflow: hidden;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	transform: translateY(18px);
	transition: transform 0.2s ease;
}

.career-modal.is-open .career-modal-card {
	transform: translateY(0);
}

.career-modal-header,
.career-modal-footer {
	padding: 16px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eef2f7;
}

.career-modal-footer {
	justify-content: flex-end;
	border-bottom: none;
	gap: 12px;
	border-top: 1px solid #eef2f7;
}

.career-modal-header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #06263f;
}

.career-modal-close {
	border: 0;
	background: transparent;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	color: #2f3f4f;
}

.career-modal-body {
	padding: 20px 22px;
	overflow-y: auto;
	color: #2d3c4b;
	line-height: 1.6;
}

.career-modal-body h5 {
	font-weight: 700;
	color: #06263f;
	margin-bottom: 10px;
	margin-top: 0;
}

.career-modal-body ul {
	padding-left: 18px;
	margin-bottom: 0;
}

.career-modal-body li {
	margin-bottom: 8px;
}

body.career-modal-open {
	overflow: hidden;
}

#careerModalCloseFooter {
	background-color: transparent !important;
	border: 1px solid #d8e0ea;
	color: #1f2a36;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.view-job-btn {
	background-color: #06263f;
	color: #fff;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.career-badge {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: #eef5ff;
	color: #0d6efd;
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 14px;
}

.career-excerpt {
	color: #5e6d7b;
	line-height: 1.7;
}

.career-empty-state,
.career-loading {
	background: #fff;
	border: 1px solid #e7edf3;
	border-radius: 14px;
	padding: 28px;
	text-align: center;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.career-empty-state h5,
.career-loading {
	color: #06263f;
}

.career-modal-job-title {
	margin: 0 0 8px 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: #06263f;
}

.career-modal-job-location {
	margin-bottom: 20px;
	color: #5a6977;
	font-weight: 600;
}
