/*
Theme Name: Hot Nepali Jobs
Theme URI: https://example.com
Author: Hot Nepali Jobs
Description: A modern, high-end job portal theme modeled after the Jobadri design system with pill buttons, pastel cards, arch graphics, and dynamic job listings.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hot-nepali-jobs
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root {
	--hnj-bg: #FAF9F6;
	--hnj-bg-card: #FFFFFF;
	--hnj-hero-bg: #FFFBF0;
	--hnj-purple: #6C5CE7;
	--hnj-purple-dark: #5B4BC4;
	--hnj-purple-light: #A29BFE;
	--hnj-purple-subtle: #F0EDFF;
	--hnj-text: #1E2022;
	--hnj-text-muted: #676E79;
	--hnj-border: #E8ECEF;
	--hnj-yellow-arch: #FFEAA7;
	--hnj-emerald: #00B894;
	--hnj-danger: #FF7675;
	--hnj-radius: 20px;
	--hnj-radius-lg: 32px;
	--hnj-radius-sm: 12px;
	--hnj-shadow: 0 12px 32px rgba(108, 92, 231, 0.08);
	--hnj-shadow-hover: 0 20px 40px rgba(108, 92, 231, 0.15);
	--hnj-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--hnj-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--hnj-bg);
	color: var(--hnj-text);
	font-family: var(--hnj-font);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hnj-purple); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--hnj-purple-dark); }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5em; font-weight: 800; color: var(--hnj-text); letter-spacing: -0.02em; }

.hnj-container { max-width: var(--hnj-max); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.hnj-btn, .jl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--hnj-purple);
	color: #FFFFFF;
	font-family: inherit;
	box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
}
.hnj-btn:hover, .jl-btn:hover {
	transform: translateY(-2px);
	background: var(--hnj-purple-dark);
	color: #FFFFFF;
	box-shadow: 0 12px 28px rgba(108, 92, 231, 0.35);
}
.hnj-btn--primary, .jl-btn--primary {
	background: var(--hnj-purple);
	color: #FFFFFF;
}
.hnj-btn--white {
	background: #FFFFFF;
	color: var(--hnj-purple);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.hnj-btn--white:hover {
	background: #F8F9FA;
	color: var(--hnj-purple-dark);
}
.hnj-btn--outline, .jl-btn--outline {
	background: transparent;
	border-color: var(--hnj-purple);
	color: var(--hnj-purple);
	box-shadow: none;
}
.hnj-btn--outline:hover, .jl-btn--outline:hover {
	background: var(--hnj-purple);
	color: #FFFFFF;
}
.hnj-btn--ghost, .jl-btn--ghost {
	background: var(--hnj-purple-subtle);
	color: var(--hnj-purple);
	box-shadow: none;
}
.hnj-btn--ghost:hover, .jl-btn--ghost:hover {
	background: var(--hnj-purple);
	color: #FFFFFF;
}
.hnj-btn--danger, .jl-btn--danger {
	background: rgba(255, 118, 117, 0.15);
	color: var(--hnj-danger);
	border-color: rgba(255, 118, 117, 0.3);
	box-shadow: none;
}
.hnj-btn--small, .jl-btn--small { padding: 8px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.hnj-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--hnj-border);
}
.hnj-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 18px 24px; }
.hnj-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--hnj-text); }
.hnj-brand__icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 1.1rem;
}
.hnj-brand__text { font-weight: 800; color: var(--hnj-text); letter-spacing: -0.03em; }
.hnj-nav { flex: 1; display: flex; justify-content: center; }
.hnj-nav__list { list-style: none; display: flex; gap: 36px; margin: 0; padding: 0; }
.hnj-nav__list a { color: var(--hnj-text-muted); font-weight: 600; font-size: 0.95rem; }
.hnj-nav__list a:hover, .hnj-nav__list a.is-active { color: var(--hnj-purple); }
.hnj-header__actions { display: flex; gap: 14px; align-items: center; }

/* ---------- Language Switcher ---------- */
.hnj-lang-switcher {
	position: relative;
	display: inline-block;
}
.hnj-lang-btn {
	background: #F1F5F9;
	border: 1px solid #E2E8F0;
	border-radius: 9999px;
	padding: 8px 16px;
	font-family: inherit;
	font-weight: 700;
	font-size: 0.85rem;
	color: #1E2022;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}
.hnj-lang-btn:hover {
	background: #E2E8F0;
}
.hnj-lang-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 6px;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 8px;
	margin-left: 0;
	list-style: none;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	min-width: 170px;
	display: none;
	z-index: 999;
}
/* Invisible hover bridge to eliminate gap between button and popup */
.hnj-lang-dropdown::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}
.hnj-lang-switcher:hover .hnj-lang-dropdown,
.hnj-lang-switcher.is-open .hnj-lang-dropdown,
.hnj-lang-switcher:focus-within .hnj-lang-dropdown {
	display: block;
}
.hnj-lang-dropdown li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	color: #1E2022;
	font-weight: 600;
	font-size: 0.85rem;
	transition: background 0.15s ease;
}
.hnj-lang-dropdown li a:hover,
.hnj-lang-dropdown li a.is-active {
	background: #F0EDFF;
	color: #6C5CE7;
}

.hnj-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hnj-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--hnj-text); margin: 5px 0; border-radius: 2px; }
.hnj-nav--mobile { display: none; }

@media (max-width: 900px) {
	.hnj-nav, .hnj-header__actions { display: none; }
	.hnj-nav-toggle { display: block; }
	.hnj-nav--mobile.is-open { display: block; padding: 0 24px 20px; background: #FFF; border-bottom: 1px solid var(--hnj-border); }
	.hnj-nav--mobile .hnj-nav__list { flex-direction: column; gap: 16px; }
}

/* ---------- Hero Section ---------- */
.hnj-hero-wrapper {
	padding: 24px 0 40px;
}
.hnj-hero-card {
	background: var(--hnj-hero-bg);
	border-radius: var(--hnj-radius-lg);
	padding: 60px 60px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
@media (max-width: 960px) {
	.hnj-hero-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
}
.hnj-hero__content h1 {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 800;
	color: var(--hnj-text);
	margin-bottom: 20px;
	line-height: 1.15;
}
.hnj-hero__content h1 span.highlight {
	color: var(--hnj-purple);
	position: relative;
}
.hnj-hero__content p.hnj-lead {
	color: var(--hnj-text-muted);
	font-size: 1.1rem;
	margin-bottom: 32px;
	max-width: 480px;
}
@media (max-width: 960px) {
	.hnj-hero__content p.hnj-lead { margin-left: auto; margin-right: auto; }
}

/* Hero Right Graphics */
.hnj-hero__gfx {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hnj-hero__arch-bg {
	width: 360px;
	height: 440px;
	background: linear-gradient(180deg, #FDE68A 0%, #F59E0B 100%);
	border-radius: 200px 200px 40px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}
@media (max-width: 520px) {
	.hnj-hero__arch-bg { width: 280px; height: 360px; }
}
.hnj-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
/* Floating badges */
.hnj-float-badge {
	position: absolute;
	background: #FFFFFF;
	padding: 10px 14px;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.85rem;
	animation: float 4s ease-in-out infinite;
	z-index: 10;
}
.hnj-float-badge--google { top: 40px; left: 20px; animation-delay: 0s; }
.hnj-float-badge--twitter { top: 100px; right: 20px; animation-delay: 1.5s; }
.hnj-float-badge--airbnb { bottom: 60px; left: 10px; animation-delay: 2.5s; }

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* ---------- Company Logos Strip ---------- */
.hnj-logos-strip {
	padding: 32px 0 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 56px;
	flex-wrap: wrap;
}
.hnj-logo-item {
	font-size: 1.4rem;
	font-weight: 800;
	color: #B2B9C5;
	letter-spacing: -0.03em;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
}
.hnj-logo-item:hover { color: var(--hnj-purple); }

/* ---------- Section Header ---------- */
.hnj-section { padding: 64px 0; }
.hnj-section__head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.hnj-section__head h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.hnj-section__head p { color: var(--hnj-text-muted); font-size: 1.05rem; margin: 0; }

/* ---------- Latest Job Opportunities Cards ---------- */
.hnj-job-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}
.hnj-job-card-v2 {
	background: #FFFFFF;
	border-radius: 20px;
	border: 1px solid var(--hnj-border);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
}
.hnj-job-card-v2:hover {
	transform: translateY(-6px);
	box-shadow: var(--hnj-shadow-hover);
	border-color: var(--hnj-purple-light);
}
.hnj-job-card-v2__banner {
	height: 100px;
	padding: 18px 24px;
	position: relative;
}
/* Pastel gradient headers */
.hnj-card-grad-1 { background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%); }
.hnj-card-grad-2 { background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%); }
.hnj-card-grad-3 { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%); }
.hnj-card-grad-4 { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }

.hnj-job-card-v2__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hnj-job-card-v2__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hnj-job-card-v2__title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.hnj-job-card-v2__salary {
	color: var(--hnj-text-muted);
	font-size: 0.9rem;
	margin-bottom: 16px;
}
.hnj-job-card-v2__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}
.hnj-pill-tag {
	background: #F3F4F6;
	color: #4B5563;
	padding: 4px 12px;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 600;
}
.hnj-pill-tag--lang {
	background: var(--hnj-purple-subtle);
	color: var(--hnj-purple);
}
.hnj-job-card-v2__footer {
	border-top: 1px solid var(--hnj-border);
	padding-top: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hnj-job-card-v2__link {
	font-weight: 700;
	color: var(--hnj-purple);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 4px;
}
.hnj-job-card-v2__link:hover { color: var(--hnj-purple-dark); gap: 8px; }

/* ---------- Two-Column Feature Section 1: Get Matched ---------- */
.hnj-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
@media (max-width: 900px) {
	.hnj-feature-grid { grid-template-columns: 1fr; text-align: center; }
}

.hnj-feature-gfx {
	position: relative;
	display: flex;
	justify-content: center;
}
.hnj-circle-arch-bg {
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: #FDE68A;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(253, 230, 138, 0.4);
}
@media (max-width: 500px) {
	.hnj-circle-arch-bg { width: 290px; height: 290px; }
}
.hnj-circle-arch-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hnj-checklist {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px;
}
.hnj-checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--hnj-text);
}
.hnj-check-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--hnj-purple);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

/* ---------- How It Works Section ---------- */
.hnj-how-works {
	background: #FFFFFF;
	border-radius: var(--hnj-radius-lg);
	padding: 60px 40px;
	margin: 40px 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
}
.hnj-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
}
@media (max-width: 800px) {
	.hnj-steps-grid { grid-template-columns: 1fr; text-align: center; }
}
.hnj-step-card {
	text-align: center;
	position: relative;
	padding: 20px;
}
.hnj-step-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--hnj-purple);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	box-shadow: 0 10px 24px rgba(108, 92, 231, 0.3);
}
.hnj-step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.hnj-step-card p { color: var(--hnj-text-muted); font-size: 0.95rem; margin: 0; }

/* Arrow connectors for desktop */
@media (min-width: 801px) {
	.hnj-step-card:not(:last-child)::after {
		content: '----->';
		position: absolute;
		right: -30px;
		top: 40px;
		color: #CBD5E1;
		font-weight: 700;
		letter-spacing: 2px;
	}
}

/* ---------- CTA Banner ---------- */
.hnj-cta-banner {
	background: linear-gradient(135deg, #6C5CE7 0%, #8C7AE6 100%);
	border-radius: 28px;
	padding: 50px 60px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	box-shadow: 0 16px 40px rgba(108, 92, 231, 0.3);
	margin: 40px 0 60px;
}
@media (max-width: 768px) {
	.hnj-cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
}
.hnj-cta-banner h2 {
	color: #FFFFFF;
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	margin: 0;
	max-width: 540px;
}

/* ---------- Footer ---------- */
.hnj-footer {
	background: #FFFFFF;
	border-top: 1px solid var(--hnj-border);
	padding-top: 60px;
}
.hnj-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
	gap: 36px;
	padding-bottom: 48px;
}
@media (max-width: 960px) {
	.hnj-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.hnj-footer__grid { grid-template-columns: 1fr; }
}

.hnj-footer__col h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: var(--hnj-text);
}
.hnj-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hnj-footer__col ul li {
	margin-bottom: 10px;
}
.hnj-footer__col ul a {
	color: var(--hnj-text-muted);
	font-size: 0.9rem;
}
.hnj-footer__col ul a:hover {
	color: var(--hnj-purple);
}

.hnj-newsletter-form {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.hnj-newsletter-form input {
	flex: 1;
	padding: 10px 14px;
	border-radius: 9999px;
	border: 1px solid var(--hnj-border);
	font-size: 0.85rem;
	outline: none;
}
.hnj-newsletter-form button {
	padding: 10px 20px;
	border-radius: 9999px;
	border: none;
	background: var(--hnj-purple);
	color: #FFF;
	font-weight: 700;
	cursor: pointer;
	font-size: 0.85rem;
}

.hnj-footer__bottom {
	border-top: 1px solid var(--hnj-border);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--hnj-text-muted);
	font-size: 0.85rem;
}
@media (max-width: 640px) {
	.hnj-footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}
.hnj-social-icons {
	display: flex;
	gap: 12px;
}
.hnj-social-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--hnj-purple-subtle);
	color: var(--hnj-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

/* ---------- Dashboard Compat & Forms ---------- */
.jl-form, .hnj-form { max-width: 640px; margin: 0 auto; background: #FFF; padding: 32px; border-radius: 20px; border: 1px solid var(--hnj-border); }
.jl-form p, .hnj-form p { margin-bottom: 18px; }
.jl-form label, .hnj-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.jl-form input[type="text"], .jl-form input[type="email"], .jl-form input[type="number"],
.jl-form input[type="date"], .jl-form input[type="password"], .jl-form input[type="file"],
.jl-form textarea, .jl-form select,
.hnj-form input[type="text"], .hnj-form input[type="email"], .hnj-form input[type="password"], .hnj-form select {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--hnj-border);
	background: #FAFAFA;
	color: var(--hnj-text);
	font-family: inherit;
	font-size: 0.95rem;
}
.jl-form label.jl-checkbox, label.jl-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	margin: 0 16px 8px 0;
}
.jl-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; background: #FFF; border-radius: 16px; overflow: hidden; border: 1px solid var(--hnj-border); }
.jl-table th, .jl-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--hnj-border); font-size: 0.9rem; }
.jl-table th { background: #FAFAFA; color: var(--hnj-text-muted); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.03em; }
.jl-dashboard { padding: 48px 0; max-width: var(--hnj-max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.jl-dashboard__tabs { display: flex; gap: 12px; margin-bottom: 32px; border-bottom: 1px solid var(--hnj-border); flex-wrap: wrap; }
.jl-dashboard__tabs a { padding: 12px 20px; color: var(--hnj-text-muted); font-weight: 600; border-bottom: 3px solid transparent; }
.jl-dashboard__tabs a.is-active, .jl-dashboard__tabs a:hover { color: var(--hnj-purple); border-color: var(--hnj-purple); }
.jl-flash { background: #E0F2FE; border: 1px solid #BAE6FD; color: #0369A1; padding: 14px 18px; border-radius: 12px; margin-bottom: 24px; font-weight: 600; }

/* ==========================================================================
   LUCKYJOB COLORFUL CATEGORY-BASED JOB LISTING LAYOUT STYLES
   ========================================================================== */

.hnj-lj-listing-page {
	background: #EBF0F5;
	min-height: 100vh;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	color: #121318;
	padding-bottom: 60px;
}

/* ---------- Top Dark Header & Filter Section ---------- */
.hnj-lj-dark-header-wrap {
	padding: 24px 0 0;
}
.hnj-lj-dark-header {
	background: #121318;
	border-radius: 28px;
	padding: 24px 32px 28px;
	color: #FFFFFF;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.hnj-lj-dark-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hnj-lj-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 1.35rem;
}
.hnj-lj-brand__icon {
	width: 32px;
	height: 32px;
	background: #FFFFFF;
	color: #121318;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.hnj-lj-brand__title {
	letter-spacing: -0.02em;
}

.hnj-lj-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}
.hnj-lj-nav__item {
	color: #94A3B8;
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	padding: 8px 0;
	transition: color 0.2s ease;
}
.hnj-lj-nav__item:hover, .hnj-lj-nav__item.is-active {
	color: #FFFFFF;
}
.hnj-lj-nav__item.is-active::after {
	content: '';
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
	height: 3px;
	background: #FFFFFF;
	border-radius: 3px 3px 0 0;
}

.hnj-lj-user-bar {
	display: flex;
	align-items: center;
	gap: 16px;
}
.hnj-lj-location-picker {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	padding: 8px 14px;
	border-radius: 9999px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #E2E8F0;
	cursor: pointer;
}
.hnj-lj-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #334155;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
}
.hnj-lj-icon-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background 0.2s ease;
}
.hnj-lj-icon-btn:hover {
	background: rgba(255, 255, 255, 0.16);
}

/* ---------- Embedded Dark Filter Bar ---------- */
.hnj-lj-filter-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.4fr;
	gap: 16px;
	align-items: center;
	padding-top: 20px;
}

.hnj-lj-filter-field {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	transition: border-color 0.2s ease;
}
.hnj-lj-filter-field:hover, .hnj-lj-filter-field:focus-within {
	border-color: rgba(255, 255, 255, 0.3);
}
.hnj-lj-field-icon {
	flex-shrink: 0;
}
.hnj-lj-filter-field input, .hnj-lj-filter-field select {
	background: transparent;
	border: none;
	outline: none;
	color: #FFFFFF;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.9rem;
	width: 100%;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
.hnj-lj-filter-field select option {
	background: #121318;
	color: #FFFFFF;
}
.hnj-lj-filter-field input::placeholder {
	color: #94A3B8;
	font-weight: 500;
}
.hnj-lj-arrow {
	color: #94A3B8;
	font-size: 0.8rem;
	pointer-events: none;
}

/* Salary Range Slider */
.hnj-lj-salary-range {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 8px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hnj-lj-salary-range__labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: #94A3B8;
	margin-bottom: 4px;
}
.hnj-lj-salary-range__labels strong {
	color: #FFFFFF;
	font-weight: 700;
}
.hnj-lj-range-slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.hnj-lj-range-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	background: #334155;
	border-radius: 4px;
	outline: none;
}
.hnj-lj-range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #38BDF8;
	border: 2px solid #FFFFFF;
	cursor: pointer;
	box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

/* ---------- Main Layout (Sidebar + Grid) ---------- */
.hnj-lj-body {
	padding-top: 32px;
}
.hnj-lj-layout {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 32px;
	align-items: start;
}

/* ---------- Left Sidebar ---------- */
.hnj-lj-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hnj-lj-promo-card {
	background: #121318;
	border-radius: 24px;
	padding: 32px 24px;
	color: #FFFFFF;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 250px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.hnj-lj-promo-card__lines {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	pointer-events: none;
}
.hnj-lj-promo-card__lines::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.hnj-lj-promo-card h3 {
	color: #FFFFFF;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 24px;
	position: relative;
	z-index: 2;
}
.hnj-lj-promo-btn {
	background: #56CCF2;
	color: #121318;
	font-weight: 800;
	font-size: 0.9rem;
	padding: 12px 24px;
	border-radius: 9999px;
	text-align: center;
	display: inline-block;
	width: max-content;
	transition: transform 0.2s ease, background 0.2s ease;
	position: relative;
	z-index: 2;
}
.hnj-lj-promo-btn:hover {
	background: #38BDF8;
	color: #121318;
	transform: translateY(-2px);
}

/* Sidebar Filters */
.hnj-lj-filter-group {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 24px;
	border: 1px solid #E2E8F0;
}
.hnj-lj-filter-group__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 800;
	font-size: 1.1rem;
	color: #121318;
	margin-bottom: 24px;
}
.hnj-lj-filter-arrow {
	font-size: 0.75rem;
	color: #94A3B8;
}

.hnj-lj-filter-section {
	margin-bottom: 24px;
}
.hnj-lj-filter-section:last-child {
	margin-bottom: 0;
}
.hnj-lj-filter-section h4 {
	font-size: 0.85rem;
	font-weight: 700;
	color: #94A3B8;
	margin: 0 0 14px;
	text-transform: none;
}

.hnj-lj-checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	cursor: pointer;
	user-select: none;
}
.hnj-lj-checkbox input {
	display: none;
}
.hnj-lj-checkbox__box {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #CBD5E1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.hnj-lj-checkbox input:checked + .hnj-lj-checkbox__box {
	background: #121318;
	border-color: #121318;
}
.hnj-lj-checkbox input:checked + .hnj-lj-checkbox__box::after {
	content: '✓';
	color: #FFFFFF;
	font-size: 0.7rem;
	font-weight: 900;
}
.hnj-lj-checkbox__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #121318;
}

/* ---------- Main Job Grid Area ---------- */
.hnj-lj-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hnj-lj-main__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.hnj-lj-title-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}
.hnj-lj-title-wrap h2 {
	font-size: 1.8rem;
	font-weight: 800;
	color: #121318;
	margin: 0;
	letter-spacing: -0.02em;
}
.hnj-lj-badge-count {
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	color: #121318;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 4px 14px;
	border-radius: 9999px;
}

.hnj-lj-sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #64748B;
}
.hnj-lj-sort__label {
	font-weight: 600;
}
.hnj-lj-sort__select {
	background: transparent;
	border: none;
	font-family: inherit;
	font-weight: 800;
	color: #121318;
	font-size: 0.9rem;
	cursor: pointer;
	outline: none;
}
.hnj-lj-sort-icon {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
}

/* ---------- Colorful Grid Layout (3 Columns) ---------- */
.hnj-lj-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ---------- Colorful Category Card ---------- */
.hnj-lj-card {
	background: var(--card-bg, #FDF0E6);
	border: 1px solid var(--card-border, #F7D7C4);
	border-radius: 24px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 290px;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}
.hnj-lj-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.hnj-lj-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.hnj-lj-card__date {
	background: #FFFFFF;
	color: #121318;
	font-weight: 700;
	font-size: 0.8rem;
	padding: 6px 14px;
	border-radius: 9999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.hnj-lj-card__bookmark {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #FFFFFF;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, background 0.2s ease;
}
.hnj-lj-card__bookmark:hover {
	transform: scale(1.08);
	background: #F8F9FA;
}

.hnj-lj-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
}
.hnj-lj-card__company {
	font-size: 0.82rem;
	font-weight: 700;
	color: #64748B;
	display: block;
	margin-bottom: 4px;
}
.hnj-lj-card__title {
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
}
.hnj-lj-card__title a {
	color: #121318;
	text-decoration: none;
}
.hnj-lj-card__title a:hover {
	color: #38BDF8;
}

.hnj-lj-card__logo-wrap {
	flex-shrink: 0;
}
.hnj-lj-card__logo-img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}
.hnj-lj-card__logo-badge {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	background: #FFFFFF;
}
.hnj-logo-amazon { background: #000000; }
.hnj-logo-twitter { background: #1DA1F2; }
.hnj-logo-google { background: #FFFFFF; }
.hnj-logo-dribbble { background: #FFFFFF; }
.hnj-logo-airbnb { background: #FFFFFF; }
.hnj-logo-apple { background: #F1F5F9; }
.hnj-logo-default { background: #121318; color: #FFF; font-weight: 800; }

/* Tag Pills */
.hnj-lj-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 24px;
}
.hnj-lj-card__tag {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(0, 0, 0, 0.04);
	color: #334155;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 9999px;
}

/* Card Footer */
.hnj-lj-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
}
.hnj-lj-card__price-loc {
	display: flex;
	flex-direction: column;
}
.hnj-lj-card__price {
	font-size: 1.05rem;
	font-weight: 800;
	color: #121318;
	line-height: 1.2;
}
.hnj-lj-card__location {
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748B;
}

.hnj-lj-card__btn {
	background: #121318;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 9px 20px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}
.hnj-lj-card__btn:hover {
	background: #334155;
	color: #FFFFFF;
	transform: translateY(-1px);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
	.hnj-lj-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hnj-lj-filter-bar {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.hnj-lj-layout {
		grid-template-columns: 1fr;
	}
	.hnj-lj-dark-header__top {
		flex-direction: column;
		align-items: flex-start;
	}
	.hnj-lj-nav {
		flex-wrap: wrap;
		gap: 16px;
	}
	.hnj-lj-filter-bar {
		grid-template-columns: 1fr;
	}
	.hnj-lj-grid {
		grid-template-columns: 1fr;
	}
}

/* Modern Pagination Component */
.hnj-lj-pagination,
.pagination,
.nav-links,
ul.page-numbers {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	margin: 40px 0 20px 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.hnj-lj-pagination .page-numbers,
.pagination .page-numbers,
.nav-links .page-numbers,
ul.page-numbers li a,
ul.page-numbers li span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 44px !important;
	height: 44px !important;
	margin: 0 4px !important;
	padding: 0 16px !important;
	border-radius: 12px !important;
	background: #FFFFFF !important;
	border: 1px solid #CBD5E1 !important;
	color: #1E293B !important;
	font-weight: 700 !important;
	font-size: 0.95rem !important;
	text-decoration: none !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hnj-lj-pagination .page-numbers:hover,
.pagination .page-numbers:hover,
.nav-links .page-numbers:hover,
ul.page-numbers li a:hover {
	background: #EFF6FF !important;
	border-color: #93C5FD !important;
	color: #2563EB !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15) !important;
}

.hnj-lj-pagination .page-numbers.current,
.pagination .page-numbers.current,
.nav-links .page-numbers.current,
ul.page-numbers li span.current {
	background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
	border-color: #2563EB !important;
	color: #FFFFFF !important;
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
}

.hnj-lj-pagination .page-numbers.dots,
.pagination .page-numbers.dots,
ul.page-numbers li span.dots {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #94A3B8 !important;
}

