/* ─── NestBoard Design System ─────────────────────────────────────────────── */
:root {
	--nb-black:       #111111;
	--nb-white:       #ffffff;
	--nb-grey:        #f9f9f9;
	--nb-grey-mid:    #f3f3f3;
	--nb-border:      #e8e8e8;
	--nb-muted:       #666666;
	--nb-muted-light: #999999;
	--nb-green:       #16a34a;
	--nb-red:         #dc2626;
	--nb-yellow:      #d97706;
	--nb-blue:        #f97316;
	--nb-accent:      #f97316;
	--nb-accent-dark: #ea6c0a;
	--nb-shadow-sm:   0 1px 3px rgba(0,0,0,.08);
	--nb-shadow:      0 4px 16px rgba(0,0,0,.10);
	--nb-radius:      8px;
	--nb-radius-sm:   5px;
	--nb-radius-pill: 100px;
	--nb-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--nb-header-h:    52px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nb-site {
	font-family: var(--nb-font);
	font-size: 13px;
	line-height: 1.55;
	color: var(--nb-black);
	background: var(--nb-white);
	margin: 0;
}
body.nb-site a          { color: inherit; }
body.nb-site img        { max-width: 100%; height: auto; }
body.nb-site ul, body.nb-site ol { margin: 0; padding: 0; list-style: none; }
body.nb-site h1, body.nb-site h2, body.nb-site h3 { line-height: 1.25; }

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.nb-container       { max-width: 960px;  margin: 0 auto; padding: 0 24px; }
.nb-container-wide  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nb-page            { padding-bottom: 48px; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
/* Base */
.nb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 18px;
	border-radius: 6px;
	font-family: var(--nb-font);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border: 1.5px solid transparent;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	line-height: 1;
	white-space: nowrap;
	letter-spacing: 0.01em;
}
.nb-btn:active { transform: translateY(0) !important; box-shadow: none !important; }

/* Group A — Primary CTA (orange, high-emphasis) */
/* Used: Search, Find My Job Now, Apply Now, Get Job Alerts, Get Alerts */
.nb-btn-primary {
	background: var(--nb-accent);
	color: #fff;
	border-color: var(--nb-accent);
	font-weight: 700;
}
.nb-btn-primary:hover {
	background: var(--nb-accent-dark);
	border-color: var(--nb-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.30);
}

/* Group B — Secondary (outline, light backgrounds) */
/* Used: View Job, Browse all jobs, View similar, Send */
.nb-btn-secondary,
.nb-btn-outline,
.nb-btn-outline-dark {
	background: transparent;
	color: #374151;
	border-color: #d1d5db;
	font-weight: 600;
}
.nb-btn-secondary:hover,
.nb-btn-outline:hover,
.nb-btn-outline-dark:hover {
	background: #f5f5f5;
	border-color: #111;
	color: #111;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

/* Group C — Ghost (white outline, dark backgrounds only — header) */
/* Used: Sign In, Dashboard */
.nb-btn-ghost {
	background: transparent;
	color: rgba(255,255,255,0.75);
	border-color: rgba(255,255,255,0.22);
	font-weight: 600;
}
.nb-btn-ghost:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.5);
	color: #fff;
	transform: translateY(-1px);
}

/* Apply Now — outline dark (light bg equivalent of Sign In) */
.nb-btn-apply {
	background: transparent;
	color: #1a1a1a;
	border-color: #374151;
	font-weight: 600;
}
.nb-btn-apply:hover {
	background: #f5f5f5;
	border-color: #111;
	color: #111;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Get Job Alerts footer button — keep primary orange */
.nb-btn-white {
	background: var(--nb-accent);
	color: #fff !important;
	border-color: var(--nb-accent);
	font-weight: 700;
}
.nb-btn-white:hover {
	background: var(--nb-accent-dark);
	border-color: var(--nb-accent-dark);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.30);
}

/* Sizes */
.nb-btn-sm   { padding: 6px 12px; font-size: 12px; }
.nb-btn-lg   { padding: 11px 24px; font-size: 14px; font-weight: 700; }
.nb-btn-full { width: 100%; }

/* Mobile filter ghost — stays neutral */
.nb-mobile-filter-btn {
	background: transparent;
	color: var(--nb-muted);
	border-color: var(--nb-border);
}

/* ─── Top Announcement Bar ────────────────────────────────────────────────── */
.nb-topbar {
	background: #1e1a16;
	border-bottom: 1px solid rgba(249,115,22,.25);
	text-align: center;
	padding: 5px 16px;
	font-size: 9px;
	color: #a8a29e;
	line-height: 1.3;
}
.nb-topbar strong { color: #f97316; font-weight: 600; }
.nb-topbar-text { display: inline-flex; align-items: center; gap: 6px; }
.nb-topbar-close {
	background: none;
	border: none;
	color: #444;
	font-size: 10px;
	cursor: pointer;
	padding: 0 2px;
	line-height: 1;
	flex-shrink: 0;
}
.nb-topbar-close:hover { color: #888; }
.nb-topbar-icon { vertical-align: middle; color: #f97316; flex-shrink: 0; width: 12px; height: 12px; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.nb-site-header {
	background: var(--nb-black);
	position: sticky;
	top: 0;
	z-index: 200;
	height: var(--nb-header-h);
}
.nb-header-inner {
	display: flex;
	align-items: center;
	height: var(--nb-header-h);
	gap: 16px;
}

/* Logo */
.nb-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	line-height: 0;
}
.nb-header-logo-img {
	height: 36px;
	width: auto;
	max-width: 160px;
	display: block;
	object-fit: contain;
}
@media (max-width: 640px) {
	.nb-header-logo-img { height: 30px; max-width: 130px; }
}

/* Header search */
.nb-header-search {
	flex: 1;
	display: flex;
	gap: 8px;
	max-width: 520px;
	position: relative;
}
.nb-header-search-inner {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}
.nb-search-icon {
	position: absolute;
	left: 12px;
	color: var(--nb-muted);
	pointer-events: none;
}
.nb-header-search input[type="search"] {
	width: 100%;
	height: 40px;
	padding: 0 12px 0 40px;
	border: 1px solid #333;
	border-radius: var(--nb-radius-sm);
	background: #1a1a1a;
	color: var(--nb-white);
	font-family: var(--nb-font);
	font-size: 14px;
	outline: none;
}
.nb-header-search input[type="search"]::placeholder { color: #888; }
.nb-header-search input[type="search"]:focus { border-color: #555; }
.nb-header-search-btn {
	height: 40px;
	padding: 0 20px;
	background: var(--nb-accent);
	color: #fff;
	border: 1.5px solid var(--nb-accent);
	border-radius: 6px;
	font-family: var(--nb-font);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nb-header-search-btn:hover {
	background: var(--nb-accent-dark);
	border-color: var(--nb-accent-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}

/* Search dropdown */
.nb-search-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0; right: 0;
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	box-shadow: var(--nb-shadow);
	z-index: 300;
	display: none;
}
.nb-search-dropdown.visible { display: block; }
.nb-search-result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	text-decoration: none;
	color: var(--nb-black);
	transition: background .1s;
	gap: 8px;
}
.nb-search-result:hover { background: var(--nb-grey); }
.nb-search-result-title { font-weight: 600; font-size: 14px; }
.nb-search-result-meta  { font-size: 12px; color: var(--nb-muted); }
.nb-search-result-salary { font-size: 12px; color: var(--nb-green); font-weight: 600; white-space: nowrap; }

/* Main nav */
.nb-main-nav {
	display: none;
	align-items: center;
	gap: 4px;
}
@media (min-width: 1100px) { .nb-main-nav { display: flex; } }
.nb-site-header .nb-nav-item,
.nb-site-header .nb-nav-item:visited {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	color: #cccccc !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--nb-radius-sm);
	position: relative;
	transition: color .15s, background .15s;
}
.nb-site-header .nb-nav-item:hover,
.nb-site-header .nb-nav-item:focus { color: #ffffff !important; background: rgba(255,255,255,.08); }
.nb-site-header .nb-nav-employers,
.nb-site-header .nb-nav-employers:visited {
	color: rgba(255,255,255,0.75) !important;
	background: transparent !important;
	border: 1.5px solid rgba(255,255,255,0.22) !important;
	border-radius: 6px !important;
	padding: 5px 12px !important;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}
.nb-site-header .nb-nav-employers:hover {
	background: rgba(255,255,255,0.07) !important;
	border-color: rgba(255,255,255,0.5) !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

/* Mega menu */
.nb-mega-menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	box-shadow: var(--nb-shadow);
	padding: 24px;
	min-width: 640px;
	gap: 32px;
	z-index: 300;
}
.nb-nav-has-dropdown:hover .nb-mega-menu,
.nb-nav-has-dropdown:focus-within .nb-mega-menu { display: flex; }
.nb-mega-col { flex: 1; min-width: 160px; }
.nb-mega-col--cta { flex: 0 0 200px; }
.nb-mega-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nb-muted); margin-bottom: 12px; }
.nb-mega-col ul li { margin-bottom: 4px; }
.nb-mega-col ul li a { font-size: 13px; color: var(--nb-black); text-decoration: none; display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.nb-mega-col ul li a:hover { color: var(--nb-blue); }
.nb-term-count { font-size: 11px; color: var(--nb-muted-light); background: var(--nb-grey); padding: 1px 6px; border-radius: 10px; }
.nb-mega-view-all { color: var(--nb-blue) !important; font-weight: 600; }
.nb-mega-cta { background: var(--nb-grey); border-radius: var(--nb-radius); padding: 16px; }
.nb-mega-cta-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.nb-mega-cta p { font-size: 13px; color: var(--nb-muted); margin-bottom: 12px; }

/* Auth */
.nb-header-auth { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
@media (min-width: 900px) { .nb-header-auth { display: flex; } }

/* ─── User Avatar Dropdown ─────────────────────────────────────────────────── */
.nb-user-menu { position: relative; }

.nb-user-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.22);
	border-radius: 100px;
	padding: 4px 10px 4px 4px;
	cursor: pointer;
	font-family: var(--nb-font);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.nb-user-trigger:hover {
	border-color: rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.05);
}
.nb-user-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--nb-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: 0.03em;
}
.nb-user-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.25;
}
.nb-user-name  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.nb-user-plan  { font-size: 10px; color: rgba(255,255,255,0.40); }
.nb-user-chevron { flex-shrink: 0; color: rgba(255,255,255,0.5); transition: transform 0.2s ease; }
.nb-user-menu.open .nb-user-chevron { transform: rotate(180deg); }

.nb-user-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 10px;
	min-width: 220px;
	padding: 6px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	z-index: 400;
}
.nb-user-dropdown-email {
	padding: 8px 12px 12px;
	font-size: 11px;
	color: #666;
	border-bottom: 1px solid #2e2e2e;
	margin-bottom: 6px;
}
.nb-user-dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	color: #e0e0e0 !important;
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease;
}
.nb-user-dropdown-item svg { flex-shrink: 0; color: #888 !important; transition: color 0.15s ease; }
.nb-user-dropdown-item:hover { background: #2a2a2a; color: #ffffff !important; }
.nb-user-dropdown-item:hover svg { color: #fff !important; }
.nb-user-dropdown-divider { height: 1px; background: #2e2e2e; margin: 6px 0; }
.nb-user-dropdown-logout { color: #ef4444 !important; }
.nb-user-dropdown-logout svg { color: #ef4444 !important; }
.nb-user-dropdown-logout:hover { background: rgba(239,68,68,0.12) !important; color: #ef4444 !important; }

/* Force all ghost buttons in header (Post a Job / Sign In / Dashboard) to be pixel-identical */
.nb-site-header .nb-btn-ghost,
.nb-site-header .nb-btn-ghost:visited {
	display: inline-flex !important;
	align-items: center !important;
	padding: 6px 12px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	border-radius: 6px !important;
	border: 1.5px solid rgba(255,255,255,0.22) !important;
	background: transparent !important;
	color: rgba(255,255,255,0.75) !important;
	text-decoration: none !important;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	letter-spacing: 0.01em !important;
}
.nb-site-header .nb-btn-ghost:hover,
.nb-site-header .nb-btn-ghost:focus {
	background: rgba(255,255,255,0.07) !important;
	border-color: rgba(255,255,255,0.50) !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
}

/* Mobile menu button */
.nb-mobile-menu-btn {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
}
.nb-mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--nb-white); border-radius: 2px; }
@media (min-width: 1100px) { .nb-mobile-menu-btn { display: none; } }

/* Mobile nav */
.nb-mobile-nav {
	background: #1a1a1a;
	border-top: 1px solid #2a2a2a;
	padding: 16px 24px 24px;
}
.nb-mobile-nav[hidden] { display: none; }
.nb-mobile-search { display: flex; gap: 8px; margin-bottom: 16px; }
.nb-mobile-search input { flex: 1; height: 40px; background: #333; border: none; border-radius: var(--nb-radius-sm); padding: 0 12px; color: var(--nb-white); font-family: var(--nb-font); font-size: 14px; }
.nb-mobile-search button { height: 40px; width: 40px; background: var(--nb-white); border: none; border-radius: var(--nb-radius-sm); cursor: pointer; font-size: 16px; }
.nb-mobile-nav nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.nb-mobile-nav nav a { color: #ccc; text-decoration: none; padding: 10px 0; font-size: 15px; border-bottom: 1px solid #2a2a2a; }
.nb-mobile-nav nav a:last-child { border: none; }
.nb-mobile-cta { color: var(--nb-white) !important; font-weight: 700; }
.nb-mobile-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.nb-mobile-cats-title { width: 100%; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #666; margin-bottom: 4px; }
.nb-mobile-cats a { font-size: 12px; color: #aaa; text-decoration: none; background: #2a2a2a; padding: 4px 10px; border-radius: var(--nb-radius-pill); }

/* ─── Tags / Badges ───────────────────────────────────────────────────────── */
.nb-tag {
	display: inline-flex;
	align-items: center;
	font-size: 10px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 4px;
	letter-spacing: 0;
	white-space: nowrap;
}
.nb-tag--new  { background: #111; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border-radius: var(--nb-radius-pill); }
.nb-tag--cat  { background: #eef2ff; color: #4361ee; border: 1px solid #c5d0fa; }
.nb-tag--type { background: var(--nb-grey-mid); color: #555; border: 1px solid var(--nb-border); }

/* ─── Letter Avatar ──────────────────────────────────────────────────────── */
.nb-letter-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--nb-radius);
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	flex-shrink: 0;
}
.nb-letter-avatar--lg  { width: 44px; height: 44px; font-size: 17px; }
.nb-letter-avatar--xl  { width: 52px; height: 52px; font-size: 20px; }

/* ─── Job Card ─────────────────────────────────────────────────────────────── */
.nb-job-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 12px 16px;
	text-decoration: none;
	color: var(--nb-black);
	transition: box-shadow .15s, border-color .15s;
	position: relative;
}
.nb-job-card:hover { box-shadow: var(--nb-shadow); border-color: #ccc; }
.nb-job-card-logo img { width: 38px; height: 38px; border-radius: var(--nb-radius-sm); object-fit: contain; border: 1px solid var(--nb-border); background: var(--nb-white); }
.nb-job-card-body { flex: 1; min-width: 0; }
.nb-job-card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 4px; }
.nb-job-card-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.nb-job-card-title a { text-decoration: none; color: var(--nb-black); }
.nb-job-card-title a:hover { color: var(--nb-blue); }
.nb-job-card-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 11px; color: var(--nb-muted); margin-bottom: 5px; align-items: center; }
.nb-job-card-company { font-weight: 600; color: var(--nb-black); }
.nb-job-card-salary { color: var(--nb-green); font-weight: 600; }
.nb-job-card-footer { display: flex; gap: 8px; font-size: 11px; color: var(--nb-muted-light); align-items: center; }
.nb-deadline--urgent { color: var(--nb-red) !important; font-weight: 600; }
.nb-job-card-actions { display: flex; flex-direction: column; gap: 6px; align-items: stretch; flex-shrink: 0; width: 90px; }
.nb-card-action-btn  { width: 100%; justify-content: center; font-size: 11px !important; padding: 6px 10px !important; gap: 4px; }
.nb-card-view-btn    { background: #111 !important; color: #fff !important; border-color: #111 !important; }
.nb-card-view-btn:hover { background: #333 !important; border-color: #333 !important; color: #fff !important; }
/* Override Neve's global `button { fill: currentColor }` which overrides fill="none" on SVG HTML attributes */
.nb-card-action-btn svg,
.nb-hero-apply-btn svg,
.nb-save-job-btn svg,
.nb-btn-apply svg,
.nb-sidebar-apply svg {
	display: inline-block !important;
	flex-shrink: 0;
	fill: none !important;
	stroke: currentColor !important;
	vertical-align: middle;
	overflow: visible;
}

/* ─── Job Grids / Lists ──────────────────────────────────────────────────── */
.nb-jobs-list { display: flex; flex-direction: column; gap: 8px; }
.nb-jobs-grid { display: grid; gap: 10px; }
.nb-jobs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nb-jobs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.nb-infeed-ad { grid-column: 1 / -1; }
@media (max-width: 768px) {
	.nb-jobs-grid--2, .nb-jobs-grid--3 { grid-template-columns: 1fr; }
}

/* ─── Save button ──────────────────────────────────────────────────────────── */
.nb-save-job-btn {
	background: transparent;
	border: 1.5px solid #374151;
	border-radius: 6px;
	padding: 8px 14px;
	cursor: pointer;
	color: #1a1a1a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	font-family: var(--nb-font);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}
.nb-save-job-btn:hover {
	background: #f5f5f5;
	border-color: #111;
	color: #111;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}
.nb-save-job-btn.saved { color: var(--nb-green); border-color: var(--nb-green); background: #f0fff4; }
.nb-save-job-btn.saved svg { fill: var(--nb-green) !important; stroke: var(--nb-green) !important; }
.nb-save-job-btn--lg  { padding: 10px 18px; font-size: 14px; }
.nb-save-job-btn--outline { width: 100%; justify-content: center; padding: 10px 18px; font-size: 14px; }

/* ─── Save Job Login Modal ─────────────────────────────────────────────────── */
.nb-modal-overlay { display: none; }
.nb-modal-overlay.is-open {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	backdrop-filter: blur(3px);
	animation: nb-modal-fade-in 0.2s ease;
}
@keyframes nb-modal-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.nb-modal-box {
	background: #fff;
	border-radius: 14px;
	padding: 36px 32px 32px;
	max-width: 380px;
	width: 100%;
	text-align: center;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.20);
	animation: nb-modal-slide-up 0.22s ease;
}
@keyframes nb-modal-slide-up {
	from { transform: translateY(16px); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}
.nb-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: none;
	font-size: 14px;
	color: #aaa;
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}
.nb-modal-close:hover { color: #333; }
.nb-modal-icon { margin-bottom: 14px; }
.nb-modal-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: #111; }
.nb-modal-text  { font-size: 13px; color: #666; margin: 0 0 24px; line-height: 1.55; }
.nb-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.nb-modal-actions .nb-btn { justify-content: center; padding: 11px 20px; font-size: 13px; }

/* ─── Archive Page ─────────────────────────────────────────────────────────── */
.nb-archive-hero {
	background: var(--nb-black);
	color: var(--nb-white);
	padding: 28px 0 22px;
}
.nb-archive-hero-flag { font-size: 24px; margin-bottom: 6px; }
.nb-archive-hero-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.nb-archive-hero-desc { color: #aaa; font-size: 13px; margin-bottom: 16px; }
.nb-archive-search {
	display: flex;
	gap: 8px;
	max-width: 480px;
}
.nb-archive-search input {
	flex: 1;
	height: 36px;
	padding: 0 12px;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: var(--nb-radius-sm);
	color: var(--nb-white);
	font-size: 13px;
	font-family: var(--nb-font);
	outline: none;
}
.nb-archive-search input:focus { border-color: #555; }
.nb-archive-search button { height: 36px; padding: 0 14px; }

.nb-archive-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 24px;
	padding-top: 20px;
}
@media (max-width: 900px) {
	.nb-archive-layout { grid-template-columns: 1fr; }
	.nb-archive-sidebar { display: none; }
	.nb-archive-sidebar.mobile-open { display: block; }
}

/* Sidebar filters */
.nb-archive-sidebar { position: sticky; top: calc(var(--nb-header-h) + 16px); max-height: calc(100vh - var(--nb-header-h) - 32px); overflow-y: auto; padding-right: 4px; }
.nb-filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 15px; font-weight: 700; }
.nb-filter-clear { font-size: 13px; color: var(--nb-blue); text-decoration: none; font-weight: 500; }
.nb-filter-group { margin-bottom: 24px; }
.nb-filter-group-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nb-muted); margin-bottom: 10px; }
.nb-filter-radio-list, .nb-filter-check-list { display: flex; flex-direction: column; gap: 4px; }
.nb-filter-radio, .nb-filter-check {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 4px 8px;
	border-radius: var(--nb-radius-sm);
	text-decoration: none;
	font-size: 11px;
	color: var(--nb-black);
	transition: background .1s;
}
.nb-filter-radio:hover, .nb-filter-check:hover { background: var(--nb-grey); }
.nb-filter-radio.active, .nb-filter-check.active { background: rgba(249,115,22,.1); color: var(--nb-accent); font-weight: 600; }
.nb-filter-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--nb-border); flex-shrink: 0; }
.nb-filter-dot.active { border-color: var(--nb-black); background: var(--nb-black); }
.nb-filter-checkbox { width: 16px; height: 16px; border-radius: 3px; border: 2px solid var(--nb-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nb-filter-checkbox.checked { background: var(--nb-black); border-color: var(--nb-black); }
.nb-filter-count { margin-left: auto; font-size: 11px; color: var(--nb-muted-light); background: var(--nb-grey); padding: 1px 6px; border-radius: 10px; }

/* Archive toolbar */
.nb-archive-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--nb-border); }
.nb-archive-count { font-size: 14px; color: var(--nb-muted); }
.nb-archive-count strong { color: var(--nb-black); font-weight: 700; }
.nb-mobile-filter-btn { display: none; }
@media (max-width: 900px) { .nb-mobile-filter-btn { display: flex; } }

/* No results */
.nb-no-results { text-align: center; padding: 64px 24px; }
.nb-no-results-icon { font-size: 48px; margin-bottom: 16px; }
.nb-no-results h2 { font-size: 22px; margin-bottom: 8px; }
.nb-no-results p { color: var(--nb-muted); margin-bottom: 24px; }

/* Pagination */
.nb-pagination { margin-top: 32px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.nb-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius-sm);
	font-size: 14px; font-weight: 600;
	text-decoration: none; color: var(--nb-black);
	transition: background .1s, border-color .1s;
}
.nb-pagination .page-numbers:hover { background: var(--nb-grey); }
.nb-pagination .current { background: var(--nb-black); color: var(--nb-white); border-color: var(--nb-black); }
.nb-pagination .prev, .nb-pagination .next { width: auto; padding: 0 16px; }

/* ─── Single Job Page ──────────────────────────────────────────────────────── */
.nb-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--nb-muted); margin-bottom: 24px; padding-top: 24px; flex-wrap: wrap; }
.nb-breadcrumb a { color: var(--nb-muted); text-decoration: none; }
.nb-breadcrumb a:hover { color: var(--nb-blue); }
.nb-breadcrumb-sep { color: var(--nb-border); }

.nb-job-hero {
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 18px 22px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	box-shadow: var(--nb-shadow-sm);
}
.nb-job-hero-left { display: flex; gap: 14px; align-items: flex-start; flex: 1; min-width: 0; }
.nb-job-hero-logo img { width: 52px; height: 52px; border-radius: var(--nb-radius); border: 1px solid var(--nb-border); object-fit: contain; }
.nb-job-hero-info { flex: 1; min-width: 0; }
.nb-job-hero-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.nb-job-hero-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.nb-job-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--nb-muted); align-items: center; }
.nb-job-hero-company { font-weight: 700; color: var(--nb-black); display: inline-flex; align-items: center; gap: 5px; }
.nb-job-hero-company svg { fill: none !important; stroke: currentColor !important; flex-shrink: 0; }
.nb-inline-logo { width: 16px; height: 16px; border-radius: 3px; object-fit: contain; }
.nb-urgency { color: var(--nb-red) !important; font-weight: 700; }
.nb-job-hero-location { display: inline-flex; align-items: center; gap: 4px; max-width: 240px; }
.nb-job-hero-location svg { flex-shrink: 0; }
.nb-job-hero-location-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nb-job-hero-right { display: flex; flex-direction: column; gap: 8px; align-items: stretch; flex-shrink: 0; width: 128px; }
.nb-hero-apply-btn {
	background: #111 !important;
	color: #fff !important;
	border-color: #111 !important;
	font-weight: 700 !important;
	font-size: 12px !important;
	padding: 8px 12px !important;
	justify-content: center;
}
.nb-hero-apply-btn:hover {
	background: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
	transform: translateY(-1px);
}
/* Single-column — sidebar flows below main content */
.nb-job-layout { display: block; }
.nb-job-main { min-width: 0; overflow-x: hidden; }

/* TOC */
.nb-toc {
	background: var(--nb-grey);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 20px 24px;
	margin-bottom: 32px;
}
.nb-toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nb-muted); margin-bottom: 12px; }
.nb-toc-list { counter-reset: toc; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 16px; }
.nb-toc-list li a { font-size: 13px; color: var(--nb-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nb-toc-list li a::before { content: counter(toc, decimal-leading-zero); counter-increment: toc; font-size: 10px; color: var(--nb-muted-light); font-weight: 700; flex-shrink: 0; }
.nb-toc-list li a:hover { color: #f97316; }

/* ── Job content prose — normalised typography (consistent across all posts) ─ */
.nb-prose {
	font-size:   15px;
	line-height: 1.75;
	color:       #374151;
}
/* Force scraped content to inherit our font stack and reset inline overrides */
.nb-prose *               { font-family: inherit; }
.nb-prose [style]         { font-size: inherit !important; font-family: inherit !important; color: inherit !important; line-height: inherit !important; }

/* H1 inside content — hide, job title is in the hero */
.nb-prose h1 { display: none; }

/* H2 — main section divider */
.nb-prose h2 {
	font-size:    18px;
	font-weight:  700;
	color:        #111111;
	margin:       28px 0 10px;
	padding-top:  22px;
	border-top:   1px solid var(--nb-border);
	line-height:  1.35;
}
.nb-prose h2:first-child  { margin-top: 0; padding-top: 0; border-top: none; }

/* H3 — subsection */
.nb-prose h3 {
	font-size:   15px;
	font-weight: 700;
	color:       #111111;
	margin:      20px 0 8px;
	line-height: 1.4;
}

/* H4 — minor label */
.nb-prose h4 {
	font-size:   14px;
	font-weight: 600;
	color:       #374151;
	margin:      14px 0 6px;
}

/* Body text */
.nb-prose p               { font-size: 15px; margin-bottom: 14px; color: #374151; }
.nb-prose ul, .nb-prose ol { padding-left: 22px; margin-bottom: 14px; }
.nb-prose li               { font-size: 15px; margin-bottom: 5px; color: #374151; line-height: 1.6; }
.nb-prose strong, .nb-prose b { font-weight: 700; color: #111111; }
.nb-prose em, .nb-prose i     { font-style: italic; }
.nb-prose a                { color: var(--nb-accent); text-decoration: underline; }

/* Tables from scraped content */
.nb-prose table  { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.nb-prose th, .nb-prose td { padding: 8px 12px; border: 1px solid var(--nb-border); text-align: left; }
.nb-prose th     { background: var(--nb-grey); font-weight: 700; }

/* Skills */
.nb-skills-section { margin: 32px 0; }
.nb-skills-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.nb-skills-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nb-skill-tag {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	background: var(--nb-grey-mid);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius-pill);
	color: var(--nb-black);
}

/* ─── FAQ — SaaS Premium Style ─────────────────────────────────────────────── */
.nb-faq-section { margin: 40px 0; }

.nb-faq-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--nb-border);
}
.nb-faq-header-icon {
	width: 40px;
	height: 40px;
	background: #fff7ed;
	border: 1.5px solid #fed7aa;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f97316;
	flex-shrink: 0;
}
.nb-faq-title { font-size: 19px; font-weight: 800; color: #111; margin: 0 0 3px; }
.nb-faq-subtitle { font-size: 12px; color: #6b7280; margin: 0; }

.nb-faq-list { display: flex; flex-direction: column; gap: 6px; }

.nb-faq-card {
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color .15s, box-shadow .15s;
	background: #fff;
}
.nb-faq-card:hover { border-color: #f97316; }
.nb-faq-card--open { border-color: #f97316; box-shadow: 0 2px 12px rgba(249,115,22,.08); }

.nb-faq-trigger {
	width: 100%;
	background: none;
	border: none;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	font-family: var(--nb-font);
	text-align: left;
}
.nb-faq-num {
	font-size: 11px;
	font-weight: 800;
	color: #f97316;
	background: #fff7ed;
	border-radius: 6px;
	padding: 3px 7px;
	flex-shrink: 0;
	letter-spacing: .04em;
	font-variant-numeric: tabular-nums;
}
.nb-faq-q {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
}
.nb-faq-arrow {
	flex-shrink: 0;
	color: #9ca3af;
	transition: transform .2s;
}
.nb-faq-trigger[aria-expanded="true"] .nb-faq-arrow { transform: rotate(180deg); color: #f97316; }
.nb-faq-trigger[aria-expanded="true"] .nb-faq-num { background: #f97316; color: #fff; }

/* Override Neve default button colours — high-specificity selectors to beat theme overrides */
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:hover,
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:focus {
  background: #f97316 !important;
  background-color: #f97316 !important;
  color: #fff !important;
  outline: none;
}
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:hover .nb-faq-q,
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:focus .nb-faq-q { color: #fff !important; }
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:hover .nb-faq-num,
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:focus .nb-faq-num { background: #fff !important; color: #f97316 !important; }
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:hover .nb-faq-arrow,
.nb-faq-section .nb-faq-list .nb-faq-card .nb-faq-trigger:focus .nb-faq-arrow { color: #fff !important; }

.nb-faq-section .nb-faq-list .nb-faq-card--open .nb-faq-trigger {
  background: #111 !important;
  background-color: #111 !important;
  color: #fff !important;
}
.nb-faq-section .nb-faq-list .nb-faq-card--open .nb-faq-trigger .nb-faq-q { color: #fff !important; }
.nb-faq-section .nb-faq-list .nb-faq-card--open .nb-faq-trigger .nb-faq-arrow { color: #f97316 !important; }

.nb-faq-body { background: #fafafa; border-top: 1px solid #f3f4f6; }
.nb-faq-body[hidden] { display: none; }
.nb-faq-body-inner {
	padding: 16px 20px 20px 54px;
	font-size: 13.5px;
	line-height: 1.75;
	color: #374151;
}
.nb-faq-body-inner p { margin: 0 0 10px; }
.nb-faq-body-inner p:last-child { margin-bottom: 0; }
@media (max-width: 480px) {
	.nb-faq-body-inner { padding-left: 20px; }
}

/* ─── Smart Internal Links ──────────────────────────────────────────────────── */
.nb-internal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	margin: 28px 0;
	font-size: 12px;
}
.nb-internal-links-label {
	font-weight: 700;
	color: #64748b;
	white-space: nowrap;
	flex-shrink: 0;
}
.nb-internal-link {
	display: inline-block;
	padding: 4px 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	color: #1e40af;
	text-decoration: none;
	font-size: 11.5px;
	font-weight: 500;
	transition: border-color .15s, color .15s, background .15s;
	white-space: nowrap;
	overflow: hidden;
	max-width: 220px;
	text-overflow: ellipsis;
}
.nb-internal-link:hover { border-color: #f97316; color: #f97316; background: #fff7ed; }

/* Related jobs */
.nb-related-jobs { margin-top: 48px; }
.nb-related-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.nb-related-header h2 { font-size: 20px; font-weight: 700; margin: 0; }
.nb-related-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.nb-related-filter { background: none; border: 1px solid var(--nb-border); color: var(--nb-muted); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all .15s; white-space: nowrap; }
.nb-related-filter:hover { border-color: var(--nb-accent); color: var(--nb-accent); }
.nb-related-filter.active { background: var(--nb-accent); border-color: var(--nb-accent); color: #fff; }
#nb-related-grid.nb-loading { opacity: .35; pointer-events: none; transition: opacity .2s; }
.nb-related-jobs-more { margin-top: 20px; text-align: center; }
@media (max-width: 640px) {
	.nb-related-header { flex-direction: column; align-items: flex-start; }
}

/* Sidebar — below content, wraps into a horizontal row of cards */
.nb-job-sidebar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	order: 0;
	position: static;
	max-height: none;
	overflow-y: visible;
	align-items: flex-start;
	margin-top: 48px;
	padding-top: 36px;
	border-top: 2px solid var(--nb-border);
}

/* Apply card: full width, internal items flow horizontally */
.nb-job-sidebar > .nb-sidebar-apply {
	flex: 1 1 100%;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	padding: 20px 24px;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-sidebar-deadline-bar {
	flex: 1 1 100%;
	margin-bottom: 4px;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-sidebar-apply-btn {
	flex: 1 1 200px;
	width: auto;
	justify-content: center;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-save-job-btn--outline {
	flex: 0 0 auto;
	width: auto;
	min-width: 140px;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-sidebar-views {
	flex: 0 0 auto;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-sidebar-share {
	flex: 1 1 auto;
	border-top: none;
	border-bottom: none;
	padding: 0;
}
.nb-job-sidebar > .nb-sidebar-apply .nb-sidebar-company-jobs {
	flex: 0 0 100%;
	text-align: left;
	border-top: 1px solid var(--nb-border);
	padding-top: 10px;
}

/* All other items (ads, company card, alert, email): ~half width each */
.nb-job-sidebar > *:not(.nb-sidebar-apply):not([class*="sidebar_half_page"]) {
	flex: 1 1 calc(50% - 10px);
	min-width: 260px;
}

/* Half-page ad: full width, centred */
.nb-job-sidebar > [class*="sidebar_half_page"] {
	flex: 1 1 100%;
	display: flex;
	justify-content: center;
}

/* Mobile: single column */
@media (max-width: 700px) {
	.nb-job-sidebar > *:not(.nb-sidebar-apply):not([class*="sidebar_half_page"]) {
		flex: 1 1 100%;
	}
}

.nb-sidebar-apply {
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nb-sidebar-views { font-size: 12px; color: var(--nb-muted); text-align: center; }
.nb-sidebar-deadline { font-size: 12px; text-align: center; padding: 8px; background: var(--nb-grey); border-radius: var(--nb-radius-sm); }
.nb-sidebar-deadline--urgent { background: #fff1f0; color: var(--nb-red); }

/* Company card */
.nb-company-card {
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
}
.nb-company-card-logo img { width: 56px; height: 56px; border-radius: var(--nb-radius); object-fit: contain; border: 1px solid var(--nb-border); }
.nb-company-card-name { font-weight: 700; font-size: 15px; }
.nb-company-card-jobs { font-size: 13px; color: var(--nb-muted); }
.nb-company-card-link { font-size: 13px; font-weight: 600; color: var(--nb-blue); text-decoration: none; }
.nb-company-card-link:hover { text-decoration: underline; }

/* Alert widget */
.nb-alert-widget {
	background: var(--nb-grey);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 20px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.nb-alert-widget-icon { font-size: 24px; flex-shrink: 0; }
.nb-alert-widget-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.nb-alert-widget-desc { font-size: 13px; color: var(--nb-muted); margin-bottom: 12px; }
.nb-alert-form { display: flex; gap: 6px; }
.nb-alert-form input[type="email"] {
	flex: 1;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius-sm);
	font-size: 13px;
	font-family: var(--nb-font);
	background: var(--nb-white);
	outline: none;
	min-width: 0;
}
.nb-alert-form input:focus { border-color: var(--nb-black); }
.nb-alert-form-msg { font-size: 13px; margin-top: 8px; padding: 8px 12px; border-radius: var(--nb-radius-sm); }
.nb-alert-form-msg.ok  { background: #e7f5e8; color: #2a6a2a; }
.nb-alert-form-msg.err { background: #ffe8e8; color: var(--nb-red); }

/* Email job widget */
.nb-email-job-widget {
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 16px 20px;
}
.nb-email-job-title { font-size: 13px; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.nb-email-job-form { display: flex; gap: 6px; }
.nb-email-job-form input[type="email"] {
	flex: 1;
	height: 34px;
	padding: 0 10px;
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius-sm);
	font-size: 13px;
	font-family: var(--nb-font);
	background: var(--nb-white);
	outline: none;
	min-width: 0;
}
.nb-email-job-form input:focus { border-color: var(--nb-black); }
.nb-email-job-msg { font-size: 12px; margin-top: 6px; }

/* ─── Homepage ──────────────────────────────────────────────────────────────── */
.nb-hero {
	background: var(--nb-black);
	color: var(--nb-white);
	min-height: 580px;
	display: flex;
	align-items: center;
	padding: 40px 0 64px;
	overflow: hidden;
}

/* Two-column layout */
.nb-hero-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start;
	width: 100%;
}
.nb-hero-left { padding-top: 24px; min-width: 0; overflow: hidden; }
@media (max-width: 860px) {
	.nb-hero-layout { grid-template-columns: 1fr; }
	.nb-hero-right   { display: none; }
}

/* ── Left column ── */
.nb-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--nb-radius-pill);
	padding: 3px 10px;
	margin-bottom: 14px;
	color: #bbb;
}
.nb-hero-title { font-size: 38px; font-weight: 800; line-height: 1.12; margin-bottom: 8px; }
.nb-hero-title span { color: #888888; }
.nb-hero-subtitle { font-size: 13px; color: #999; margin-bottom: 20px; line-height: 1.6; }
.nb-hero-subtitle em { color: #fff; font-style: normal; font-weight: 600; }
.nb-hero-free { color: #f97316; font-weight: 800; font-style: normal; font-size: 14px; }
.nb-hero-browse-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: #fff; text-decoration: underline; text-underline-offset: 3px; vertical-align: middle; transition: color .15s; }
.nb-hero-browse-link:hover { color: var(--nb-accent); }

/* ── Search engine ─────────────────────────────────────────────────── */
.nb-search-engine {
	margin-bottom: 0;
}

.nb-search-main {
	display: flex;
	align-items: stretch;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: var(--nb-radius-sm);
	overflow: visible;
	margin-bottom: 8px;
	position: relative;
}
.nb-search-main:focus-within { border-color: #555; }

.nb-search-field {
	display: flex;
	align-items: center;
	padding: 0 14px;
	position: relative;
	min-width: 0;
	flex: 1;
	height: 46px;
}
.nb-search-field--where { max-width: 210px; }

.nb-search-field-body {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.nb-search-field-icon { color: #888; flex-shrink: 0; }

.nb-search-field input,
.nb-search-engine input[type="text"],
.nb-search-engine input[type="search"] {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none;
	font-family: var(--nb-font);
	font-size: 13px;
	color: var(--nb-white) !important;
	width: 100%;
	padding: 0;
	height: auto;
	border-radius: 0;
}
.nb-search-field input::placeholder,
.nb-search-engine input::placeholder { color: #888 !important; }

/* Kill browser autofill white flash */
.nb-search-engine input:-webkit-autofill,
.nb-search-engine input:-webkit-autofill:hover,
.nb-search-engine input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
	-webkit-text-fill-color: #fff !important;
	caret-color: #fff;
}

.nb-search-sep {
	width: 1px;
	background: #333;
	margin: 8px 0;
	flex-shrink: 0;
}

.nb-search-engine-btn {
	height: auto;
	align-self: stretch;
	padding: 0 28px;
	background: var(--nb-accent);
	color: #fff;
	border: 1.5px solid var(--nb-accent);
	border-radius: 0 6px 6px 0;
	font-family: var(--nb-font);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	letter-spacing: 0.01em;
}
.nb-search-engine-btn:hover {
	background: var(--nb-accent-dark);
	border-color: var(--nb-accent-dark);
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.30);
}

/* Location autocomplete dropdown */
.nb-location-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: -1px;
	width: 320px;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: var(--nb-radius-sm);
	box-shadow: 0 8px 28px rgba(0,0,0,.5);
	z-index: 500;
	overflow: hidden;
}
.nb-loc-suggestion {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 9px 14px;
	background: none;
	border: none;
	border-bottom: 1px solid #2a2a2a;
	font-family: var(--nb-font);
	font-size: 12px;
	color: #ccc;
	text-align: left;
	cursor: pointer;
	transition: background .1s, color .1s;
}
.nb-loc-suggestion:last-child { border-bottom: none; }
.nb-loc-suggestion:hover { background: #252525; color: #fff; }
.nb-loc-suggestion svg { color: #555; flex-shrink: 0; }

/* Filter row */
.nb-search-filters {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.nb-type-pills {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	flex: 1;
}
.nb-type-pill {
	background: transparent;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #666;
	font-family: var(--nb-font);
	font-size: 10px;
	font-weight: 500;
	padding: 3px 9px;
	cursor: pointer;
	transition: background .1s, color .1s, border-color .1s;
	white-space: nowrap;
}
.nb-type-pill:hover { border-color: #555; color: #ccc; }
.nb-type-pill--active { background: #fff; color: #111; border-color: #fff; font-weight: 600; }

.nb-salary-select {
	background: transparent;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #666;
	font-family: var(--nb-font);
	font-size: 10px;
	padding: 3px 8px;
	outline: none;
	cursor: pointer;
	flex-shrink: 0;
}
.nb-salary-select option { background: #111; color: #ccc; }

@media (max-width: 640px) {
	.nb-search-field--where { max-width: none; }
	.nb-search-main { flex-direction: column; border-radius: 8px; }
	.nb-search-sep { width: auto; height: 1px; margin: 0 8px; }
	.nb-search-engine-btn { border-radius: 0 0 7px 7px; padding: 10px 20px; }
}

/* ── Right column ── */
.nb-hero-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-bottom: 8px;
}
.nb-hero-stat-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 6px;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
	display: block;
}
.nb-hero-stat-card--link {
	transition: background .15s, border-color .15s;
	cursor: pointer;
}
.nb-hero-stat-card--link:hover {
	background: rgba(255,255,255,.10);
	border-color: rgba(255,255,255,.18);
	color: inherit;
}
.nb-stat-num {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 3px;
}
.nb-stat-label {
	font-size: 10px;
	color: #555;
	font-weight: 500;
}

/* Category panel */
.nb-hero-catpanel {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 6px;
	overflow: hidden;
}
.nb-hero-catpanel-title {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #444;
	white-space: normal;
	line-height: 1.3;
	padding: 8px 12px 5px;
}
.nb-hero-catrow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 12px;
	border-top: 1px solid rgba(255,255,255,.04);
	text-decoration: none;
	color: #aaa;
	font-size: 11px;
	transition: background .1s, color .1s;
}
.nb-hero-catrow:hover { background: rgba(255,255,255,.05); color: #ddd; }
.nb-hero-catrow-count { font-size: 10px; color: #444; font-weight: 600; }
.nb-hero-catrow--all { color: #444; font-size: 10px; justify-content: flex-end; padding: 6px 12px 8px; border-top: 1px solid rgba(255,255,255,.06); }
.nb-hero-catrow--all:hover { background: none; color: #777; }

/* Home sections */
.nb-home-section { padding: 40px 0; }
.nb-home-section--grey { background: var(--nb-grey); }
.nb-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.nb-section-title { font-size: 18px; font-weight: 800; }
.nb-section-link { font-size: 12px; color: var(--nb-blue); text-decoration: none; font-weight: 600; }
.nb-section-link:hover { text-decoration: underline; }

/* Category slider */
.nb-cat-slider-wrap { overflow: hidden; }
.nb-cat-slider {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 2px;
}
.nb-cat-slider::-webkit-scrollbar { display: none; }
.nb-cat-slider-nav { display: flex; gap: 6px; align-items: center; }
.nb-cat-slider-btn {
	background: var(--nb-dark, #111);
	color: #fff;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 15px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .2s;
	flex-shrink: 0;
}
.nb-cat-slider-btn:hover { opacity: .7; }
.nb-cat-card {
	background: var(--nb-white);
	border: 1px solid var(--nb-border);
	border-radius: var(--nb-radius);
	padding: 10px;
	text-decoration: none;
	color: var(--nb-black);
	transition: box-shadow .15s, border-color .15s;
	text-align: center;
	flex: 0 0 auto;
	min-width: 150px;
	width: 150px;
}
.nb-cat-card:hover { box-shadow: var(--nb-shadow); border-color: #ccc; }
.nb-cat-card-name { font-size: 11px; font-weight: 700; margin-bottom: 3px; line-height: 1.3; }
.nb-cat-card-count { font-size: 10px; color: var(--nb-muted); }

/* How it works */
.nb-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .nb-how-grid { grid-template-columns: 1fr; } }
.nb-how-step { text-align: center; }
.nb-how-step-num { font-size: 28px; font-weight: 900; color: var(--nb-grey-mid); margin-bottom: 8px; }
.nb-how-step h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.nb-how-step p { font-size: 12px; color: var(--nb-muted); line-height: 1.55; }

/* Alert CTA section */
.nb-home-alert-cta {
	background: var(--nb-black);
	padding: 40px 0;
	color: var(--nb-white);
}
.nb-home-alert-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}
@media (max-width: 768px) { .nb-home-alert-inner { grid-template-columns: 1fr; } }
.nb-home-alert-text h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.nb-home-alert-text p { font-size: 13px; color: #aaa; }
.nb-home-alert-form .nb-alert-widget { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
.nb-home-alert-form .nb-alert-widget-title { color: var(--nb-white); }
.nb-home-alert-form .nb-alert-widget-desc { color: #aaa; }

/* ─── Company archive page ──────────────────────────────────────────────── */
.nb-company-hero { background: var(--nb-grey); border-bottom: 1px solid var(--nb-border); padding: 28px 0; }
.nb-company-hero-inner { display: flex; gap: 16px; align-items: center; }
.nb-company-hero-logo img { width: 56px; height: 56px; border-radius: var(--nb-radius); border: 1px solid var(--nb-border); object-fit: contain; }
.nb-company-hero-info h1 { font-size: 20px; font-weight: 800; margin-bottom: 3px; }
.nb-company-hero-info p { color: var(--nb-muted); font-size: 13px; }
.nb-jobs-list--company { padding-top: 20px; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */

/* Newsletter bar */
.nb-footer-alert-bar { background: #0f172a; color: var(--nb-white); padding: 36px 0; border-top: 3px solid var(--nb-accent); }
.nb-footer-alert-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.nb-footer-alert-text { flex: 1; min-width: 240px; }
.nb-footer-alert-text strong { font-size: 20px; font-weight: 700; display: block; margin-bottom: 6px; line-height: 1.3; }
.nb-footer-alert-text > span { font-size: 14px; color: #94a3b8; display: block; margin-bottom: 14px; }
.nb-footer-trust-pills { display: flex; gap: 16px; flex-wrap: wrap; }
.nb-footer-trust-pills span { font-size: 12px; color: #64748b; display: flex; align-items: center; gap: 5px; }
.nb-footer-trust-pills svg { color: #22c55e; flex-shrink: 0; }
.nb-footer-alert-right { flex-shrink: 0; min-width: 280px; }
.nb-footer-alert-form { display: flex; gap: 8px; }
.nb-footer-alert-form input[type="email"] {
	flex: 1;
	height: 44px;
	padding: 0 16px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--nb-radius-sm);
	color: var(--nb-white);
	font-size: 14px;
	font-family: var(--nb-font);
	outline: none;
	transition: border-color .2s;
}
.nb-footer-alert-form input::placeholder { color: #64748b; }
.nb-footer-alert-form input:focus { border-color: var(--nb-accent); }
.nb-footer-alert-msg { font-size: 12px; color: #94a3b8; margin-top: 8px; }

/* Main footer */
.nb-footer-main { background: #0f172a; padding: 56px 0 44px; border-top: 1px solid rgba(255,255,255,.06); }
.nb-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
@media (max-width: 960px) { .nb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px)  { .nb-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Brand col */
.nb-footer-logo { display: block; text-decoration: none; margin-bottom: 16px; line-height: 0; }
.nb-footer-logo-img { height: 32px; width: auto; max-width: 140px; display: block; object-fit: contain; }
.nb-footer-col--about p { font-size: 13px; color: #64748b; line-height: 1.65; margin-bottom: 20px; }

/* Stats */
.nb-footer-stats { display: flex; align-items: center; gap: 0; margin-bottom: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; }
.nb-footer-stat { flex: 1; padding: 10px 0; text-align: center; }
.nb-footer-stat strong { display: block; font-size: 15px; font-weight: 700; color: #f1f5f9; line-height: 1; margin-bottom: 3px; }
.nb-footer-stat span { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #475569; }
.nb-footer-stat-divider { width: 1px; background: rgba(255,255,255,.07); align-self: stretch; }

/* Social icons */
.nb-footer-social { display: flex; gap: 8px; }
.nb-social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #94a3b8; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .15s, color .15s; }
.nb-social-btn:hover { background: var(--nb-accent); border-color: var(--nb-accent); color: #fff; }

/* Columns */
.nb-footer-col-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #475569; margin-bottom: 16px; }
.nb-footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.nb-footer-col ul li a { font-size: 13px; color: #64748b; text-decoration: none; transition: color .15s; }
.nb-footer-col ul li a:hover { color: #e2e8f0; }
.nb-footer-link-accent { color: var(--nb-accent) !important; font-weight: 500; }
.nb-footer-link-accent:hover { color: var(--nb-accent-dark) !important; }

/* Employer CTA card */
.nb-footer-employer-cta { margin-top: 28px; background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.nb-footer-employer-icon { color: var(--nb-accent); }
.nb-footer-employer-cta strong { display: block; font-size: 13px; font-weight: 700; color: #f1f5f9; margin-bottom: 3px; }
.nb-footer-employer-cta span { font-size: 12px; color: #64748b; line-height: 1.5; }

/* Bottom bar */
.nb-footer-bar { background: #080d14; border-top: 1px solid rgba(255,255,255,.05); padding: 16px 0; }
.nb-footer-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.nb-footer-bar p { font-size: 12px; color: #334155; margin: 0; }
.nb-footer-legal { display: flex; gap: 20px; }
.nb-footer-legal a { font-size: 12px; color: #334155; text-decoration: none; transition: color .15s; }
.nb-footer-legal a:hover { color: #94a3b8; }

/* ─── Ad zones ──────────────────────────────────────────────────────────── */
.nb-ad-zone { margin: 24px 0; text-align: center; }
.nb-ad-zone:empty { display: none; }
.nb-ad-after_title, .nb-ad-archive_top, .nb-ad-homepage_top { border-radius: var(--nb-radius); overflow: hidden; background: var(--nb-grey); min-height: 90px; display: flex; align-items: center; justify-content: center; }

/* ─── Breadcrumb (reused) ────────────────────────────────────────────────── */
.nb-single-job .nb-container { padding-bottom: 0; }

/* ─── Responsive tweaks ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.nb-hero-title         { font-size: 44px; }
	.nb-hero               { padding: 48px 0 40px; }
	.nb-job-hero           { flex-direction: column; }
	.nb-job-hero-right     { flex-direction: column; align-items: stretch; }
	.nb-toc-list           { grid-template-columns: 1fr; }
	.nb-alert-widget       { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AD SYSTEM
   Every zone is wrapped in .nb-ad-slot — a flex column that adds a tiny
   "Advertisement" label above the unit. Real ads and placeholders share the
   same wrapper so the layout is identical in both states.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Slot wrapper (used for both real ads and placeholders) ─────────────── */
.nb-ad-slot {
	display:        flex;
	flex-direction: column;
	align-items:    center;
	gap:            4px;
	margin:         20px auto;
	max-width:      100%;
	box-sizing:     border-box;
}

/* Micro label — "Advertisement" in site typography, very quiet */
.nb-ad-label {
	font-family:    var(--nb-font);
	font-size:      9px;
	font-weight:    500;
	text-transform: uppercase;
	letter-spacing: .14em;
	color:          #b0b0b0;
	line-height:    1;
	user-select:    none;
}

/* ── Placeholder box (admin-only preview) ───────────────────────────────── */
.nb-ad-placeholder .nb-ad-label { color: #999; }

.nb-ad-box {
	background:       repeating-linear-gradient(
		-45deg,
		#f0f0f0 0px, #f0f0f0 6px,
		#e8e8e8 6px, #e8e8e8 12px
	);
	border:           1.5px dashed #c8c8c8;
	border-radius:    2px;
	display:          flex;
	align-items:      center;
	justify-content:  center;
	max-width:        100%;
	box-sizing:       border-box;
	overflow:         hidden;
	/* exact width + height set inline by nb_ad_zone() */
}
.nb-ad-box-info {
	font-family:     var(--nb-font);
	font-size:       8px;
	font-weight:     400;
	color:           #bbb;
	text-align:      center;
	padding:         2px 6px;
	white-space:     nowrap;
	overflow:        hidden;
	text-overflow:   ellipsis;
	max-width:       90%;
}

/* ── Context-specific slot margins ─────────────────────────────────────── */

/* Sidebar: no top/bottom margin — let the sidebar flex gap handle spacing */
.nb-archive-sidebar .nb-ad-slot,
.nb-job-sidebar .nb-ad-slot { margin: 0; }

/* In-feed: full width in the list */
.nb-infeed-ad { width: 100%; }
.nb-infeed-ad .nb-ad-slot { margin: 4px auto; }

/* In-article: floated right, text wraps around it */
.nb-in-article-ad { float: right; margin: 4px 0 20px 24px; clear: right; }
.nb-in-article-ad .nb-ad-slot { margin: 0; }
@media (max-width: 640px) { .nb-in-article-ad { float: none; margin: 16px auto; } }

/* Homepage in-feed spans both job card columns */
.nb-home-infeed-ad { grid-column: 1 / -1; }
.nb-home-infeed-ad .nb-ad-slot { margin: 4px auto; }

/* Between-section centered ad (homepage) */
.nb-ad-section { padding: 8px 0; }
.nb-ad-section--centered .nb-ad-slot { margin: 0 auto; }

/* ── Above-footer strip ─────────────────────────────────────────────────── */
.nb-above-footer {
	background:  var(--nb-white);
	border-top:  1px solid var(--nb-border);
	padding:     12px 0;
	text-align:  center;
}
.nb-above-footer .nb-ad-slot { margin: 0 auto; }

/* ── Hero gutters — absolute in hero section, scroll away with hero ─────── */
.nb-hero,
.nb-archive-hero { position: relative; overflow: visible; }

.nb-hero-gutter {
	position:        absolute;
	top:             24px;
	bottom:          24px;
	width:           160px;
	display:         none;
	overflow:        hidden;
	border-radius:   4px;
}
.nb-hero-gutter-left  { right: calc(50vw + 500px); }
.nb-hero-gutter-right { left:  calc(50vw + 500px); }
.nb-hero-gutter .nb-ad-slot {
	height:          100%;
	margin:          0;
	justify-content: center;
}
.nb-hero-gutter .nb-ad-box {
	width:           160px !important;
	height:          560px !important;
	max-height:      100%;
}
@media (min-width: 1440px) {
	.nb-hero-gutter { display: flex; flex-direction: column; align-items: center; }
}

/* ── Body rail — sticky gutters, contained, stop before footer ───────────── */
.nb-body-rail { position: relative; }

.nb-body-gutter {
	position:        fixed;
	top:             120px;
	width:           160px;
	display:         none;   /* shown + positioned by JS */
	pointer-events:  none;
	z-index:         1;
}
.nb-body-gutter-sticky {
	width:           160px;
	pointer-events:  all;
}
.nb-body-gutter .nb-ad-slot { margin: 0; }
.nb-body-gutter .nb-ad-box  { width: 160px !important; height: 600px !important; }

/* ── Mobile anchor — 320×50 fixed bottom on phones ─────────────────────── */
.nb-mobile-anchor {
	position:    fixed;
	bottom:      0; left: 0; right: 0;
	z-index:     500;
	background:  var(--nb-white);
	border-top:  1px solid var(--nb-border);
	box-shadow:  0 -2px 8px rgba(0,0,0,.10);
	display:     flex;
	align-items: center;
	justify-content: center;
	padding:     6px 36px 6px 6px;
	min-height:  62px;
}
.nb-mobile-anchor-close {
	position:   absolute;
	top:        50%; right: 8px;
	transform:  translateY(-50%);
	background: none;
	border:     none;
	font-size:  20px;
	color:      var(--nb-muted);
	cursor:     pointer;
	padding:    4px 8px;
	line-height: 1;
}
.nb-mobile-anchor .nb-ad-slot { margin: 0; }
@media (min-width: 768px) { .nb-mobile-anchor { display: none !important; } }
@media (max-width: 767px)  { body.nb-site { padding-bottom: 62px; } }

/* ══ Neve ══════════════════════════════════════════════════════════════════ */
body.nb-site .neve-main { padding: 0 !important; }
body.nb-site .container { max-width: none; padding: 0; }
body.nb-site .container { max-width: none; padding: 0; }

/* ══ Company ticker (hero section) ════════════════════════════════════════ */
.nb-company-ticker {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
	overflow: hidden;
	width: 100%;
}
.nb-ticker-header {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.nb-ticker-label {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.85);
	letter-spacing: 0;
	text-transform: none;
}
.nb-live-dot {
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
}
.nb-ticker-sub {
	font-size: 13px;
	color: rgba(255,255,255,.75);
	font-weight: 400;
	line-height: 1.4;
}
.nb-ticker-viewport {
	overflow: hidden;
	width: 100%;
	min-width: 0;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.nb-ticker-track {
	display: flex;
	gap: 10px;
	width: max-content;
	animation: nb-ticker-scroll 35s linear infinite;
}
.nb-ticker-track:hover { animation-play-state: paused; }
@keyframes nb-ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.nb-ticker-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 12px 5px 6px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 20px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s, border-color .2s;
	flex-shrink: 0;
}
.nb-ticker-chip:hover {
	background: rgba(255,255,255,.15);
	border-color: rgba(255,255,255,.25);
}
.nb-ticker-chip img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	background: rgba(255,255,255,.12);
	flex-shrink: 0;
}
.nb-ticker-chip span {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,.85);
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 600px) {
	.nb-ticker-sub { font-size: 12px; }
	.nb-ticker-chip span { max-width: 90px; font-size: 11px; }
	.nb-ticker-chip { padding: 4px 8px 4px 5px; gap: 5px; }
	.nb-ticker-chip img { width: 18px; height: 18px; }
	.nb-company-ticker { margin-top: 16px; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE JOB — ENHANCED COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Urgency Banner ───────────────────────────────────────────────────────── */
.nb-urgency-banner {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-left: 3px solid var(--nb-accent);
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 12px;
	color: #9a3412;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.nb-urgency-banner svg { flex-shrink: 0; color: var(--nb-accent); }
.nb-urgency-banner--critical {
	background: #fef2f2;
	border-color: #fecaca;
	border-left-color: #ef4444;
	color: #991b1b;
}
.nb-urgency-banner--critical svg { color: #ef4444; }
.nb-urgency-apply-link {
	margin-left: auto;
	font-weight: 700;
	color: var(--nb-accent);
	text-decoration: none;
	white-space: nowrap;
	font-size: 12px;
	padding: 3px 10px;
	border: 1px solid var(--nb-accent);
	border-radius: 4px;
}
.nb-urgency-apply-link:hover { background: var(--nb-accent); color: #fff; }

/* ─── Urgent tag ───────────────────────────────────────────────────────────── */
.nb-tag--urgent {
	background: #fff7ed;
	color: #c2410c;
	border: 1px solid #fed7aa;
	font-weight: 700;
}

/* ─── Hero: company meta item ──────────────────────────────────────────────── */
.nb-job-hero-company {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 700;
	color: var(--nb-black);
}
.nb-job-hero-salary { color: var(--nb-green); font-weight: 600; }

/* ─── Hero share bar ───────────────────────────────────────────────────────── */
.nb-job-hero-share {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--nb-border);
	flex-wrap: wrap;
}
.nb-share-label { font-size: 11px; color: var(--nb-muted-light); flex-shrink: 0; }
.nb-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--nb-font);
	border: 1px solid var(--nb-border);
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	color: #374151;
	transition: all 0.15s ease;
	line-height: 1.4;
}
.nb-share-btn:hover { border-color: #aaa; background: #f5f5f5; color: #111; }
.nb-share-btn--whatsapp { color: #15803d; border-color: #bbf7d0; background: #f0fdf4; }
.nb-share-btn--whatsapp:hover { background: #dcfce7; border-color: #22c55e; color: #15803d; }
.nb-share-btn svg { flex-shrink: 0; fill: currentColor !important; stroke: none !important; }
.nb-share-btn--copy svg { fill: none !important; stroke: currentColor !important; }
.nb-hero-sync-signal {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	color: #22c55e;
	margin-left: auto;
	white-space: nowrap;
}

/* ─── Sidebar: deadline progress bar ──────────────────────────────────────── */
.nb-sidebar-deadline-bar {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 10px 14px;
}
.nb-sidebar-deadline-bar--urgent { background: #fff7ed; border-color: #fed7aa; }
.nb-sidebar-deadline-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #166534;
	margin-bottom: 8px;
}
.nb-sidebar-deadline-bar--urgent .nb-sidebar-deadline-top { color: #c2410c; }
.nb-sidebar-deadline-date { font-size: 11px; color: var(--nb-muted); }
.nb-sidebar-deadline-progress {
	height: 5px;
	background: #d1fae5;
	border-radius: 3px;
	overflow: hidden;
}
.nb-sidebar-deadline-bar--urgent .nb-sidebar-deadline-progress { background: #fed7aa; }
.nb-sidebar-deadline-fill {
	height: 100%;
	background: #22c55e;
	border-radius: 3px;
	transition: width 0.4s ease;
}
.nb-sidebar-deadline-bar--urgent .nb-sidebar-deadline-fill { background: var(--nb-accent); }

/* ─── Sidebar: Apply Now button (black, full-width) ────────────────────────── */
.nb-sidebar-apply-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 13px 18px;
	background: #111;
	color: #fff !important;
	border: none;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--nb-font);
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.nb-sidebar-apply-btn svg { fill: none !important; stroke: currentColor !important; flex-shrink: 0; }
.nb-sidebar-apply-btn:hover {
	background: #222;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

/* ─── Sidebar: share mini ──────────────────────────────────────────────────── */
.nb-sidebar-share {
	padding: 10px 0;
	border-top: 1px solid var(--nb-border);
	border-bottom: 1px solid var(--nb-border);
}
.nb-sidebar-share-label { font-size: 11px; color: var(--nb-muted-light); display: block; margin-bottom: 6px; }
.nb-sidebar-share-btns { display: flex; gap: 6px; }
.nb-sidebar-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--nb-font);
	border: 1px solid var(--nb-border);
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	color: #374151;
	transition: all 0.15s ease;
	flex: 1;
	justify-content: center;
}
.nb-sidebar-share-btn:hover { background: #f5f5f5; border-color: #aaa; color: #111; }
.nb-sidebar-share-btn--wa { color: #15803d; border-color: #bbf7d0; background: #f0fdf4; }
.nb-sidebar-share-btn--wa:hover { background: #dcfce7; border-color: #22c55e; }
.nb-sidebar-share-btn svg { flex-shrink: 0; fill: currentColor !important; stroke: none !important; }
.nb-sidebar-share-btn:not(.nb-sidebar-share-btn--wa) svg { fill: none !important; stroke: currentColor !important; }

/* ─── Sidebar: company jobs link ───────────────────────────────────────────── */
.nb-sidebar-company-jobs {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: var(--nb-accent);
	text-decoration: none;
	padding: 6px 0;
	transition: color 0.15s;
}
.nb-sidebar-company-jobs:hover { color: var(--nb-accent-dark); }

/* ─── Dark Hero Theme ────────────────────────────────────────────────────────
   .nb-job-hero--dark — charcoal card with orange CTAs, 3-col lower strip
   ─────────────────────────────────────────────────────────────────────────── */
.nb-job-hero--dark {
	background: #111827;
	border-color: #1f2937;
	color: #f9fafb;
	flex-direction: column;
	gap: 0;
	padding: 28px 28px 0;
}
/* Top row wrapper keeps logo + info + buttons side-by-side */
.nb-job-hero-top {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
	padding-bottom: 24px;
}
/* Title */
.nb-job-hero--dark .nb-job-hero-title { color: #fff; }
/* Meta chips */
.nb-job-hero--dark .nb-job-hero-meta { color: #9ca3af; }
.nb-job-hero--dark .nb-job-hero-company { color: #d1d5db; }
.nb-job-hero--dark .nb-job-hero-salary,
.nb-job-hero--dark .nb-job-hero-posted,
.nb-job-hero--dark .nb-job-hero-views { color: #9ca3af; }
.nb-job-hero--dark .nb-job-hero-deadline { color: #9ca3af; }
.nb-job-hero--dark .nb-job-hero-meta .nb-urgency { color: #f87171 !important; }
/* Tags */
.nb-job-hero--dark .nb-tag--cat  { background: rgba(249,115,22,.15); color: #fb923c; border-color: rgba(249,115,22,.25); }
.nb-job-hero--dark .nb-tag--type { background: rgba(255,255,255,.08); color: #d1d5db; border-color: rgba(255,255,255,.15); }
.nb-job-hero--dark .nb-tag--new  { background: rgba(34,197,94,.15); color: #4ade80; border-color: rgba(34,197,94,.25); }
.nb-job-hero--dark .nb-tag--urgent { background: rgba(239,68,68,.15); color: #f87171; border-color: rgba(239,68,68,.25); }
/* Share bar */
.nb-job-hero--dark .nb-share-label { color: #6b7280; }
.nb-job-hero--dark .nb-share-btn {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.15);
	color: #d1d5db;
}
.nb-job-hero--dark .nb-share-btn:hover { background: rgba(255,255,255,.12); }
/* Social share icons — icon-only pills on dark hero */
.nb-job-hero--dark .nb-share-btn {
	padding: 6px 9px;
	min-width: 0;
	gap: 0;
}
.nb-job-hero--dark .nb-share-btn--copy { padding: 6px 10px; gap: 5px; }
.nb-job-hero--dark .nb-share-btn--whatsapp {
	color: #4ade80;
	border-color: rgba(74,222,128,.25);
	background: rgba(74,222,128,.08);
}
.nb-job-hero--dark .nb-share-btn--whatsapp:hover { background: rgba(74,222,128,.15); }
.nb-job-hero--dark .nb-share-btn--linkedin {
	color: #e5e7eb;
	border-color: rgba(255,255,255,.15);
	background: rgba(255,255,255,.06);
}
.nb-job-hero--dark .nb-share-btn--linkedin:hover { background: rgba(255,255,255,.12); }
.nb-job-hero--dark .nb-share-btn--twitter {
	color: #e5e7eb;
	border-color: rgba(255,255,255,.15);
	background: rgba(255,255,255,.06);
}
.nb-job-hero--dark .nb-share-btn--twitter:hover { background: rgba(255,255,255,.12); }
.nb-job-hero--dark .nb-share-btn--facebook {
	color: #e5e7eb;
	border-color: rgba(255,255,255,.15);
	background: rgba(255,255,255,.06);
}
.nb-job-hero--dark .nb-share-btn--facebook:hover { background: rgba(255,255,255,.12); }
/* Company name as link */
.nb-hero-company-name--link {
	font-size: 14px;
	font-weight: 700;
	color: #f3f4f6;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 3px;
}
.nb-hero-company-name--link:hover { color: var(--nb-accent); text-decoration: underline; }
.nb-hero-company-link-a { color: var(--nb-accent); text-decoration: none; }
.nb-hero-company-link-a:hover { text-decoration: underline; }
.nb-job-hero--dark .nb-hero-sync-signal { color: #4b5563; }
/* Action buttons — right column */
.nb-job-hero--dark .nb-hero-apply-btn {
	background: var(--nb-accent) !important;
	border-color: var(--nb-accent) !important;
	color: #fff !important;
}
.nb-job-hero--dark .nb-hero-apply-btn:hover {
	background: var(--nb-accent-dark) !important;
	border-color: var(--nb-accent-dark) !important;
}
.nb-job-hero--dark .nb-btn-outline-dark {
	background: rgba(255,255,255,.06) !important;
	border-color: rgba(255,255,255,.2) !important;
	color: #e5e7eb !important;
}
.nb-job-hero--dark .nb-btn-outline-dark:hover {
	background: rgba(255,255,255,.13) !important;
	border-color: rgba(255,255,255,.35) !important;
}

/* ── Dark hero lower strip ───────────────────────────────────────────────── */
.nb-job-hero-lower {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	width: calc(100% + 56px);       /* bleed to card edges */
	margin-left: -28px;
	border-top: 1px solid rgba(255,255,255,.08);
}
.nb-hero-lower-col {
	padding: 20px 24px;
	border-right: 1px solid rgba(255,255,255,.06);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.nb-hero-lower-col:last-child { border-right: none; }
.nb-hero-lower-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #4b5563;
	margin: 0;
}
/* Company block */
.nb-hero-company-block {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.nb-hero-company-logo-link { display: block; flex-shrink: 0; border-radius: 8px; text-decoration: none; line-height: 0; transition: opacity .15s; }
.nb-hero-company-logo-link:hover { opacity: .8; }
.nb-hero-company-logo { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; display: block; flex-shrink: 0; }
.nb-hero-company-avatar { width: 64px; height: 64px; font-size: 22px; flex-shrink: 0; border-radius: 8px; }
.nb-hero-company-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.nb-hero-company-name { font-size: 14px; font-weight: 700; color: #f3f4f6; }
.nb-hero-company-link { font-size: 12px; color: var(--nb-accent); text-decoration: none; }
.nb-hero-company-link:hover { text-decoration: underline; }
/* Star rating */
.nb-hero-company-rating { display: flex; align-items: center; gap: 4px; }
.nb-stars { display: flex; align-items: center; gap: 1px; }
.nb-star { flex-shrink: 0; }
.nb-star--full { fill: #f59e0b; stroke: #f59e0b; stroke-width: 1; }
.nb-star--empty { fill: none; stroke: #4b5563; stroke-width: 1.5; }
.nb-rating-score { font-size: 12px; font-weight: 700; color: #f59e0b; }
.nb-rating-count { font-size: 11px; color: #6b7280; }
.nb-hero-company-roles-link { font-size: 12px; color: var(--nb-accent); text-decoration: none; }
.nb-hero-company-roles-link:hover { text-decoration: underline; }
/* Alert widget inside dark hero */
.nb-job-hero--dark .nb-alert-widget {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}
.nb-job-hero--dark .nb-alert-widget-icon { display: none; }
.nb-job-hero--dark .nb-alert-widget-title { font-size: 13px; font-weight: 600; color: #f3f4f6; }
.nb-job-hero--dark .nb-alert-widget-desc { font-size: 12px; color: #6b7280; margin: 0 0 8px; }
.nb-job-hero--dark .nb-alert-form { display: flex; gap: 6px; flex-wrap: wrap; }
.nb-job-hero--dark .nb-alert-form input {
	flex: 1 1 140px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.15);
	color: #f3f4f6;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 13px;
}
.nb-job-hero--dark .nb-alert-form input::placeholder { color: #6b7280; }
.nb-job-hero--dark .nb-alert-form .nb-btn-primary {
	background: var(--nb-accent);
	border-color: var(--nb-accent);
	color: #fff;
	white-space: nowrap;
}
/* Email job widget inside dark hero */
.nb-job-hero--dark .nb-email-job-widget {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}
.nb-job-hero--dark .nb-email-job-title { font-size: 13px; font-weight: 600; color: #f3f4f6; display: none; }
.nb-job-hero--dark .nb-email-job-form { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0; }
.nb-job-hero--dark .nb-email-job-form input {
	flex: 1 1 140px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.15);
	color: #f3f4f6;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 13px;
}
.nb-job-hero--dark .nb-email-job-form input::placeholder { color: #6b7280; }
.nb-job-hero--dark .nb-email-job-form .nb-btn-outline {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.2);
	color: #e5e7eb !important;
	white-space: nowrap;
}
.nb-job-hero--dark .nb-email-job-form .nb-btn-outline:hover {
	background: rgba(255,255,255,.15);
}
/* Sidebar — ads only, centred flex */
.nb-job-sidebar--ads-only {
	flex-direction: column;
	align-items: center;
	gap: 24px;
	border-top: none;
	padding-top: 0;
	margin-top: 48px;
}
/* Mobile: stack lower cols */
@media (max-width: 768px) {
	.nb-job-hero-lower { grid-template-columns: 1fr; width: 100%; margin-left: 0; }
	.nb-hero-lower-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 16px 0; }
	.nb-hero-lower-col:last-child { border-bottom: none; }
	.nb-job-hero--dark { padding: 20px 20px 0; }
}

/* ─── Premium Apply CTA ────────────────────────────────────────────────────── */
.nb-apply-cta {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	border-radius: 14px;
	padding: 28px 32px 20px;
	margin: 36px 0 32px;
	scroll-margin-top: 80px;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.nb-apply-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.nb-apply-cta-left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 0;
}
.nb-apply-cta-icon {
	width: 52px;
	height: 52px;
	background: rgba(255,255,255,.18);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}
.nb-apply-cta-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 4px;
}
.nb-apply-cta-sub {
	font-size: 13px;
	color: rgba(255,255,255,.82);
	line-height: 1.4;
}
.nb-apply-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #ea580c;
	font-size: 15px;
	font-weight: 800;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: transform .15s, box-shadow .15s;
	box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.nb-apply-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,.3);
	color: #c2410c;
}
.nb-apply-cta-note {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: rgba(255,255,255,.7);
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 640px) {
	.nb-apply-cta { padding: 20px; }
	.nb-apply-cta-inner { flex-direction: column; align-items: stretch; }
	.nb-apply-cta-btn { justify-content: center; width: 100%; font-size: 16px; padding: 16px; }
	.nb-apply-cta-title { font-size: 18px; }
}

/* ─── Location Widget ──────────────────────────────────────────────────────── */
.nb-location-widget {
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	margin: 36px 0;
}
.nb-location-widget-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}
.nb-location-widget-icon {
	width: 36px;
	height: 36px;
	background: #fff7ed;
	border: 1.5px solid #fed7aa;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f97316;
	flex-shrink: 0;
}
.nb-location-widget-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; }
.nb-location-widget-place { font-size: 14px; font-weight: 700; color: #111827; }
.nb-location-dir-btn {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nb-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background .15s;
}
.nb-location-dir-btn:hover { background: var(--nb-accent-dark); color: #fff; }
.nb-location-map-wrap { line-height: 0; overflow: hidden; }
.nb-location-map-wrap iframe { display: block; width: 100%; max-width: 100%; }
.nb-location-view-link {
	display: block;
	text-align: center;
	padding: 10px;
	font-size: 12px;
	color: #6b7280;
	text-decoration: none;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	transition: color .15s;
}
.nb-location-view-link:hover { color: #f97316; }
@media (max-width: 480px) {
	.nb-location-widget-header { flex-wrap: wrap; }
	.nb-location-dir-btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ─── Employer CTA block ───────────────────────────────────────────────────── */
.nb-employer-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
	border-radius: 12px;
	margin: 36px 0 24px;
}
.nb-employer-cta-icon { font-size: 36px; flex-shrink: 0; }
.nb-employer-cta-body { flex: 1; min-width: 0; }
.nb-employer-cta-title {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 5px;
	line-height: 1.3;
}
.nb-employer-cta-text {
	color: #888;
	font-size: 13px;
	margin: 0;
	line-height: 1.5;
}
.nb-employer-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
}
@media (max-width: 680px) {
	.nb-employer-cta { flex-direction: column; text-align: center; gap: 14px; padding: 20px; }
	.nb-employer-cta-actions { flex-direction: row; justify-content: center; }
}

/* ─── Trust footer ─────────────────────────────────────────────────────────── */
.nb-job-trust-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 14px;
	background: var(--nb-grey);
	border-radius: 6px;
	font-size: 11px;
	color: var(--nb-muted);
	flex-wrap: wrap;
}
.nb-trust-verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #16a34a;
	font-weight: 600;
}
.nb-report-link {
	margin-left: auto;
	color: var(--nb-muted-light);
	text-decoration: underline;
	font-size: 11px;
	transition: color 0.15s;
}
.nb-report-link:hover { color: var(--nb-red); }

/* ─── Mobile sticky apply bar ──────────────────────────────────────────────── */
.nb-mobile-apply-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e8e8e8;
	padding: 10px 16px;
	z-index: 8000;
	gap: 10px;
	align-items: center;
	box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
	transform: translateY(100%);
	transition: transform 0.25s ease;
}
.nb-mobile-apply-bar.visible {
	transform: translateY(0);
}
@media (max-width: 1000px) {
	.nb-mobile-apply-bar { display: flex; }
	.nb-single-job { padding-bottom: 80px; }
}
.nb-mobile-apply-main-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 13px 16px;
	background: #111;
	color: #fff !important;
	border-radius: 7px;
	font-weight: 700;
	font-size: 14px;
	font-family: var(--nb-font);
	text-decoration: none !important;
	transition: background 0.15s;
}
.nb-mobile-apply-main-btn svg { fill: none !important; stroke: currentColor !important; flex-shrink: 0; }
.nb-mobile-apply-main-btn:hover { background: #222; color: #fff !important; }
.nb-mobile-apply-icon-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	width: 52px;
	height: 52px;
	border-radius: 7px;
	border: 1.5px solid #d1d5db;
	background: transparent;
	color: #374151;
	font-size: 9px;
	font-weight: 600;
	font-family: var(--nb-font);
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.15s;
	padding: 0;
}
.nb-mobile-apply-icon-btn svg { fill: none !important; stroke: currentColor !important; }
.nb-mobile-apply-icon-btn:hover { background: #f5f5f5; border-color: #999; }
.nb-mobile-apply-icon-btn.saved {
	border-color: var(--nb-green);
	color: var(--nb-green);
}
.nb-mobile-apply-icon-btn.saved svg { fill: var(--nb-green) !important; stroke: var(--nb-green) !important; }

/* ─── More Jobs in Category — enhanced cards ────────────────────────────────── */
.nb-more-jobs-section {
	margin: 28px 0;
	border: 1.5px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}
.nb-more-jobs-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: #f9fafb;
	border-bottom: 1.5px solid #e5e7eb;
	gap: 12px;
}
.nb-more-jobs-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	color: #111;
	margin: 0;
	letter-spacing: -.01em;
}
.nb-more-jobs-title svg { color: #f97316; flex-shrink: 0; }
.nb-more-jobs-view-all {
	font-size: 12px;
	font-weight: 600;
	color: #f97316;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity .15s;
}
.nb-more-jobs-view-all:hover { opacity: .75; }
.nb-more-jobs-grid { display: flex; flex-direction: column; }
.nb-more-job-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	text-decoration: none;
	border-bottom: 1px solid #f3f4f6;
	background: #fff;
	transition: background .12s;
	color: inherit;
}
.nb-more-job-card:last-child { border-bottom: none; }
.nb-more-job-card:hover { background: #fff7ed; }
.nb-more-job-card-logo { flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.nb-more-job-card-logo img { display: block; width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.nb-more-job-avatar { border-radius: 8px; text-align: center; font-weight: 800; color: #fff; }
.nb-more-job-card-body { flex: 1; min-width: 0; }
.nb-more-job-card-title {
	font-size: 13.5px;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
	margin-bottom: 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nb-more-job-card:hover .nb-more-job-card-title { color: #f97316; }
.nb-more-job-card-meta {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nb-more-job-company { font-weight: 600; color: #374151; }
.nb-mjsep { color: #d1d5db; margin: 0 2px; }
.nb-more-job-card-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.nb-more-job-type-badge {
	font-size: 10.5px;
	font-weight: 700;
	color: #f97316;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 4px;
	padding: 2px 6px;
	letter-spacing: .02em;
}
.nb-more-job-salary {
	font-size: 11.5px;
	font-weight: 700;
	color: #059669;
}
.nb-more-job-date {
	font-size: 11px;
	color: #9ca3af;
	margin-left: auto;
}
.nb-more-job-arrow {
	flex-shrink: 0;
	color: #d1d5db;
	transition: color .15s, transform .15s;
}
.nb-more-job-card:hover .nb-more-job-arrow { color: #f97316; transform: translateX(2px); }
@media (max-width: 640px) {
	.nb-more-job-card { padding: 12px 14px; gap: 10px; }
	.nb-more-job-card-title { font-size: 13px; }
}

/* \u2500\u2500 Static page template (added 2026-06-12) \u2500\u2500 */
.nb-page-hero { padding: 48px 0 36px; }
.nb-page-hero .nb-archive-hero-title { margin: 0; }
.nb-prose { max-width: 820px; margin: 0 auto; padding: 8px 16px 64px; font-size: 17px; line-height: 1.75; }
.nb-prose h2 { margin: 2.2em 0 .7em; font-size: 28px; line-height: 1.25; }
.nb-prose h3 { margin: 1.8em 0 .6em; font-size: 21px; }
.nb-prose p, .nb-prose li { color: var(--nb-text, #1f2937); }
.nb-prose ul, .nb-prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.nb-prose li { margin-bottom: .45em; }
.nb-prose a { color: var(--nb-primary, #f97316); text-decoration: underline; text-underline-offset: 2px; }
.nb-prose a:hover { opacity: .85; }
.nb-prose .nb-companies-index a { text-decoration: none; color: inherit; background: #fff; }
.nb-prose .nb-companies-index a:hover { border-color: var(--nb-primary, #f97316); }
@media (max-width: 1024px) { .nb-prose { font-size: 16px; } .nb-page-hero { padding: 36px 0 28px; } }
@media (max-width: 640px) { .nb-prose { padding: 4px 14px 48px; } .nb-prose h2 { font-size: 23px; } .nb-prose h3 { font-size: 18px; } }


/* \u2500\u2500 Topbar: single-line notice (added 2026-06-12) \u2500\u2500 */
.nb-topbar { overflow: hidden; }
.nb-topbar-text { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; max-width: 100%; }
.nb-topbar-msg-short { display: none; }
@media (max-width: 700px) {
	.nb-topbar-msg-full { display: none; }
	.nb-topbar-msg-short { display: inline; }
	.nb-topbar-text { font-size: 13px; }
}
@media (max-width: 360px) { .nb-topbar-text { font-size: 12px; } }


/* \u2500\u2500 Topbar: full message only, scale to fit one line (added 2026-06-12) \u2500\u2500 */
.nb-topbar-msg { display: inline !important; }
@media (max-width: 700px) { .nb-topbar-text { font-size: clamp(10px, 2.6vw, 13px); } .nb-topbar-icon { width: 12px; height: 12px; } }


/* \u2500\u2500 Location suggestions: scroll + mobile fit (added 2026-06-12) \u2500\u2500 */
.nb-location-suggestions { max-height: 300px; overflow-y: auto; max-width: calc(100vw - 24px); }
@media (max-width: 640px) { .nb-location-suggestions { width: calc(100vw - 48px); left: 0; max-height: 240px; } }


/* \u2500\u2500 Bring hero search + location suggestions to the front (added 2026-06-12) \u2500\u2500 */
.nb-hero { overflow: visible; }
.nb-hero { position: relative; z-index: 60; }
.nb-search-engine { position: relative; z-index: 2000; }
.nb-search-main, .nb-search-field--where, .nb-search-field-body { overflow: visible !important; }
.nb-search-field--where { position: relative; }
.nb-location-suggestions { z-index: 2147483000 !important; }


/* \u2500\u2500 Final fix: hero left column must not clip the location dropdown (added 2026-06-12) \u2500\u2500 */
.nb-hero-left { overflow: visible !important; }


/* \u2500\u2500 Expired job UI (added 2026-06-12) \u2500\u2500 */
.nb-job-closed-notice { background: #fef2f2; border: 1px solid #fca5a5; border-left: 4px solid #dc2626; color: #7f1d1d; padding: 14px 18px; border-radius: 8px; margin: 0 0 22px; font-size: 15px; }
.nb-job-closed-notice a { color: #b91c1c; font-weight: 600; }
.nb-job-closed-chip { background: #6b7280 !important; color: #fff !important; cursor: default; pointer-events: none; }


/* MJN-FIX-SAVE-JOB */
/* Fix 2: Hide Save Job button site-wide */
button.nb-save-job-btn,
.nb-save-job-btn { display: none !important; }
/* MJN-FIX-SAVE-JOB-END */

/* MJN-FIX-VIEW-BTN */
/* Fix 5: View Job pill - black bg white text, hover inverts */
a.nb-view-job-btn,
a.nb-view-job-btn.nb-btn,
a.nb-view-job-btn.nb-card-action-btn {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}
a.nb-view-job-btn svg,
a.nb-view-job-btn.nb-btn svg { stroke: #fff !important; }
a.nb-view-job-btn:hover,
a.nb-view-job-btn:focus,
a.nb-view-job-btn.nb-btn:hover,
a.nb-view-job-btn.nb-btn:focus {
  background: #fff !important;
  color: #111 !important;
  border-color: #111 !important;
}
a.nb-view-job-btn:hover svg,
a.nb-view-job-btn:focus svg,
a.nb-view-job-btn.nb-btn:hover svg { stroke: #111 !important; }
/* MJN-FIX-VIEW-BTN-END */

/* MJN-FIX-TOPBAR */
/* Fix 1: Topbar mobile responsive */
@media (max-width: 600px) {
  .nb-topbar-msg { font-size: 12px !important; }
  .nb-topbar { padding: 7px 10px !important; }
}
/* MJN-FIX-TOPBAR-END */

/* MJN-FIX-CLOSING */
/* Fix 4: Closing date on job cards */
.nb-job-card-closing-date {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  color: #0a7c42;
  font-weight: 500;
}
.nb-job-card-closing-date svg { stroke: #0a7c42; fill: none; }
.nb-closing-date--closed { color: #b91c1c !important; }
.nb-closing-date--closed svg { stroke: #b91c1c !important; }
/* MJN-FIX-CLOSING-END */

/* MJN-MOBILE-FILTER */
/* ── Mobile Filter Drawer (bottom-sheet) ─────────────────────────────── */

/* Hide the old inline sidebar on mobile entirely */
@media (max-width: 900px) {
  .nb-archive-sidebar { display: none !important; }
  .nb-archive-sidebar.mobile-open { display: none !important; }

  /* Overlay backdrop */
  .nb-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 8000;
    animation: nb-fade-in 0.2s ease;
  }
  .nb-filter-overlay.open { display: block; }

  /* Bottom-sheet drawer */
  .nb-filter-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 8001;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  }
  .nb-filter-drawer.open {
    transform: translateY(0);
  }

  /* Drag handle */
  .nb-filter-drawer-handle {
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 12px auto 0;
    flex-shrink: 0;
  }

  /* Drawer header */
  .nb-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }
  .nb-filter-drawer-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
  }
  .nb-filter-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #374151;
    line-height: 1;
    transition: background 0.15s;
  }
  .nb-filter-drawer-close:hover { background: #e5e7eb; }

  /* Scrollable body */
  .nb-filter-drawer-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 16px;
    flex: 1;
  }

  /* Filter groups inside drawer */
  .nb-filter-drawer-body .nb-filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
  }
  .nb-filter-drawer-body .nb-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .nb-filter-drawer-body .nb-filter-group-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin-bottom: 12px;
    margin-top: 8px;
  }

  /* Big tap-friendly radio items */
  .nb-filter-drawer-body .nb-filter-radio,
  .nb-filter-drawer-body .nb-filter-check {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid transparent;
    margin-bottom: 4px;
    transition: background 0.12s, border-color 0.12s;
  }
  .nb-filter-drawer-body .nb-filter-radio:hover,
  .nb-filter-drawer-body .nb-filter-check:hover {
    background: #f9fafb;
  }
  .nb-filter-drawer-body .nb-filter-radio.active,
  .nb-filter-drawer-body .nb-filter-check.active {
    background: #fff7ed;
    border-color: #f97316;
    color: #c2410c;
    font-weight: 600;
  }

  /* Bigger radio dot */
  .nb-filter-drawer-body .nb-filter-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.12s;
  }
  .nb-filter-drawer-body .nb-filter-dot.active {
    border-color: #f97316;
    background: #f97316;
  }

  /* Bigger checkbox */
  .nb-filter-drawer-body .nb-filter-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.12s, background 0.12s;
  }
  .nb-filter-drawer-body .nb-filter-checkbox.checked {
    background: #f97316;
    border-color: #f97316;
  }

  /* Count badge */
  .nb-filter-drawer-body .nb-filter-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  /* Sticky footer with apply button */
  .nb-filter-drawer-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
  }
  .nb-filter-drawer-apply {
    flex: 1;
    min-height: 52px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
    text-decoration: none;
  }
  .nb-filter-drawer-apply:hover { background: #222; }
  .nb-filter-drawer-clear {
    min-height: 52px;
    padding: 0 18px;
    background: transparent;
    color: #6b7280;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .nb-filter-drawer-clear:hover { border-color: #111; color: #111; }

  /* Floating filter trigger button (bigger, more obvious) */
  .nb-mobile-filter-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    gap: 7px;
    display: flex !important;
    align-items: center;
  }
  .nb-mobile-filter-btn svg { stroke: #fff; }

  /* Active filter count badge on trigger */
  .nb-filter-active-badge {
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* Hide desktop-only things inside drawer */
  .nb-filter-drawer .nb-ad-slot,
  .nb-filter-drawer .nb-ad-placeholder { display: none !important; }
  .nb-filter-drawer .nb-filter-header { display: none; }
}

@keyframes nb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* MJN-MOBILE-FILTER-END */
