/* Career Jobs List Widget — 86166984 */

.cjl-86166984-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.cjl-86166984-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px 24px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	box-sizing: border-box;
}

.cjl-86166984-card + .cjl-86166984-card {
	margin-top: 12px;
}

.cjl-86166984-card:hover {
	border-color: #2563eb;
}

.cjl-86166984-hover-lift:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.10);
}

.cjl-86166984-card.cjl-86166984-hidden {
	display: none;
}

/* Content area */
.cjl-86166984-content {
	flex: 1;
	min-width: 0;
}

.cjl-86166984-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.cjl-86166984-title {
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: #1e293b;
}

.cjl-86166984-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #2563eb;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 2px 8px;
	border-radius: 4px;
	line-height: 1.4;
	white-space: nowrap;
}

/* Meta row */
.cjl-86166984-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.cjl-86166984-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #64748b;
	line-height: 1.4;
}

.cjl-86166984-meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: #94a3b8;
	line-height: 1;
}

.cjl-86166984-meta-icon svg {
	width: 13px;
	height: 13px;
	fill: #94a3b8;
}

/* Action / Button */
.cjl-86166984-action {
	flex-shrink: 0;
	margin-left: 24px;
}

.cjl-86166984-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 500;
	color: #2563eb;
	background-color: transparent;
	border: 1px solid #2563eb;
	border-radius: 6px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
	line-height: 1.4;
	font-family: inherit;
}

.cjl-86166984-btn:hover {
	color: #ffffff;
	background-color: #2563eb;
}

/* Load More */
.cjl-86166984-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.cjl-86166984-load-more {
	padding: 12px 32px;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background-color: #2563eb;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.cjl-86166984-load-more:hover {
	background-color: #1d4ed8;
}

/* ══════════════════════════════════════ */
/* POPUP MODAL STYLES                    */
/* ══════════════════════════════════════ */

.cjl-86166984-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.cjl-86166984-popup-overlay.cjl-86166984-popup-active {
	display: flex;
}

.cjl-86166984-popup-content {
	background-color: #ffffff;
	border-radius: 16px;
	width: 100%;
	max-width: 720px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
	animation: cjlPopupFadeIn_86166984 0.3s ease;
	overflow: hidden;
	position: relative;
	margin: auto;
}

@keyframes cjlPopupFadeIn_86166984 {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Popup Header */
.cjl-86166984-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px 16px;
	border-bottom: 1px solid #e2e8f0;
	gap: 16px;
	flex-shrink: 0;
}

.cjl-86166984-popup-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	min-width: 0;
}

.cjl-86166984-popup-title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
}

.cjl-86166984-popup-close {
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #94a3b8;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 8px;
	transition: color 0.2s ease, background-color 0.2s ease;
	flex-shrink: 0;
	font-family: inherit;
}

.cjl-86166984-popup-close:hover {
	color: #1e293b;
	background-color: #f1f5f9;
}

/* Popup Meta Bar */
.cjl-86166984-popup-meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 28px;
	background-color: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	flex-shrink: 0;
}

.cjl-86166984-popup-meta-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #e2e8f0;
	color: #475569;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 20px;
	line-height: 1.4;
}

.cjl-86166984-popup-meta-label {
	font-weight: 600;
	color: #334155;
}

/* Popup Body */
.cjl-86166984-popup-body {
	padding: 24px 28px;
	overflow-y: auto;
	flex: 1;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
	-webkit-overflow-scrolling: touch;
}

.cjl-86166984-popup-section {
	margin-bottom: 24px;
}

.cjl-86166984-popup-section:last-child {
	margin-bottom: 0;
}

.cjl-86166984-popup-section-title {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: #334155;
	line-height: 1.4;
}

.cjl-86166984-popup-section-content {
	font-size: 14px;
	line-height: 1.7;
	color: #475569;
}

.cjl-86166984-popup-section-content ul {
	margin: 8px 0;
	padding-left: 20px;
}

.cjl-86166984-popup-section-content ul li {
	margin-bottom: 6px;
	line-height: 1.6;
}

.cjl-86166984-popup-section-content ul li:last-child {
	margin-bottom: 0;
}

/* Popup Form */
.cjl-86166984-popup-form-section {
	background-color: #f8fafc;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.cjl-86166984-popup-form-wrap {
	margin-top: 12px;
}

/* Popup Footer */
.cjl-86166984-popup-footer {
	padding: 16px 28px 24px;
	border-top: 1px solid #e2e8f0;
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

.cjl-86166984-popup-apply-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	background-color: #2563eb;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	line-height: 1.4;
}

.cjl-86166984-popup-apply-btn:hover {
	background-color: #1d4ed8;
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 767px) {
	.cjl-86166984-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.cjl-86166984-action {
		margin-left: 0;
		width: 100%;
	}

	.cjl-86166984-btn {
		width: 100%;
		text-align: center;
	}

	.cjl-86166984-meta {
		gap: 12px;
	}

	/* Popup responsive */
	.cjl-86166984-popup-overlay {
		padding: 10px;
		align-items: flex-start;
	}

	.cjl-86166984-popup-content {
		max-height: 95vh;
		border-radius: 12px;
		margin-top: 10px;
	}

	.cjl-86166984-popup-header {
		padding: 16px 18px 12px;
	}

	.cjl-86166984-popup-title {
		font-size: 18px;
	}

	.cjl-86166984-popup-meta-bar {
		padding: 12px 18px;
	}

	.cjl-86166984-popup-body {
		padding: 18px;
	}

	.cjl-86166984-popup-footer {
		padding: 12px 18px 18px;
		justify-content: stretch;
	}

	.cjl-86166984-popup-apply-btn {
		width: 100%;
		text-align: center;
	}
}
