/* ==========================================================================
   Find Jobs — design system v3 "soft light"

   Built on elevated warm neutrals rather than cold white, diffused shadows,
   an editorial type pairing (serif display + sans UI) and generous spacing
   rhythm. Light is the default; dark is a considered alternative, not the
   headline act.
   ========================================================================== */

:root {
	color-scheme: light;

	/* Warm neutral canvas — organic off-white, not #fff */
	--fj-bg: #faf9f5;
	--fj-bg-sunk: #f3f1ea;
	--fj-surface: #ffffff;
	--fj-surface-2: #f6f4ee;
	--fj-line: #e6e2d8;
	--fj-line-soft: #efece4;

	/* Ink — warm near-black, never pure #000 */
	--fj-ink: #1a1a17;
	--fj-body: #55544d;
	--fj-muted: #86847a;

	/* One confident accent: deep evergreen, with clay as a rare highlight */
	--fj-accent: #12594a;
	--fj-accent-hover: #0d4739;
	--fj-accent-soft: #e7f0ec;
	--fj-accent-ink: #ffffff;
	--fj-clay: #b4552c;
	--fj-clay-soft: #fbeee7;

	/* Diffused, low-contrast depth */
	--fj-shadow-xs: 0 1px 2px rgba(26, 26, 23, 0.04);
	--fj-shadow-sm: 0 1px 2px rgba(26, 26, 23, 0.04), 0 4px 12px -6px rgba(26, 26, 23, 0.08);
	--fj-shadow-md: 0 2px 4px rgba(26, 26, 23, 0.03), 0 14px 32px -14px rgba(26, 26, 23, 0.14);
	--fj-shadow-lg: 0 4px 8px rgba(26, 26, 23, 0.03), 0 28px 56px -22px rgba(26, 26, 23, 0.18);

	--fj-r-sm: 8px;
	--fj-r: 12px;
	--fj-r-lg: 18px;
	--fj-r-xl: 26px;

	--fj-ease: cubic-bezier(0.32, 0.72, 0, 1);

	/* Editorial pairing, both resolved locally — no font CDN request. */
	--fj-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, ui-serif, serif;
	--fj-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--fj-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

:root[data-theme="dark"] {
	color-scheme: dark;

	--fj-bg: #14140f;
	--fj-bg-sunk: #100f0b;
	--fj-surface: #1c1c16;
	--fj-surface-2: #232219;
	--fj-line: #34332a;
	--fj-line-soft: #282720;

	--fj-ink: #f5f3ea;
	--fj-body: #c0bdb0;
	--fj-muted: #8d8a7d;

	--fj-accent: #6dbfa4;
	--fj-accent-hover: #86d3b9;
	--fj-accent-soft: #1b2b26;
	--fj-accent-ink: #0c1a15;
	--fj-clay: #d98a63;
	--fj-clay-soft: #2b1e17;

	--fj-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
	--fj-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
	--fj-shadow-md: 0 14px 32px -14px rgba(0, 0, 0, 0.7);
	--fj-shadow-lg: 0 28px 56px -22px rgba(0, 0, 0, 0.8);
}

/* Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--fj-sans);
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--fj-body);
	background: var(--fj-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
	margin: 0;
	color: var(--fj-ink);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.018em;
	text-wrap: balance;
}

/* Display headings carry the serif; UI labels stay in the sans. */
.fj-hero-title,
.fj-page-hero h1,
.fj-section-head h2,
.fj-cta h2,
.fj-single-title,
.fj-post-title {
	font-family: var(--fj-display);
	font-weight: 400;
	letter-spacing: -0.012em;
}

p { text-wrap: pretty; }

img { max-width: 100%; height: auto; }

a {
	color: var(--fj-accent);
	text-decoration: none;
	transition: color 0.2s var(--fj-ease);
}

a:hover { color: var(--fj-accent-hover); }

::selection {
	background: var(--fj-accent-soft);
	color: var(--fj-ink);
}

:focus-visible {
	outline: 2px solid var(--fj-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.fj-container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 28px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.fj-icon {
	flex: 0 0 auto;
	vertical-align: -0.15em;
}

/* Small caps label, used above headings */
.fj-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--fj-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fj-accent);
}

.fj-kicker::before {
	content: "";
	width: 16px;
	height: 1.5px;
	border-radius: 2px;
	background: currentColor;
	opacity: 0.5;
}

/* Reveal on scroll — a short, gentle rise */
.fj-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.6s var(--fj-ease), transform 0.6s var(--fj-ease);
	transition-delay: var(--fj-delay, 0ms);
}

.fj-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Buttons
   ========================================================================== */

.fj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--fj-r-sm);
	font-family: var(--fj-sans);
	font-size: 15px;
	font-weight: 550;
	letter-spacing: -0.005em;
	line-height: 1.25;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none !important;
	transition: background 0.2s var(--fj-ease), color 0.2s var(--fj-ease),
		border-color 0.2s var(--fj-ease), box-shadow 0.2s var(--fj-ease),
		transform 0.2s var(--fj-ease);
}

.fj-btn:active { transform: translateY(1px); }

.fj-btn-primary,
.fj-btn-apply {
	background: var(--fj-accent);
	color: var(--fj-accent-ink);
	box-shadow: var(--fj-shadow-xs);
}

.fj-btn-primary:hover,
.fj-btn-apply:hover {
	background: var(--fj-accent-hover);
	color: var(--fj-accent-ink);
	box-shadow: var(--fj-shadow-sm);
}

.fj-btn-outline {
	background: var(--fj-surface);
	border-color: var(--fj-line);
	color: var(--fj-ink);
}

.fj-btn-outline:hover {
	border-color: var(--fj-ink);
	color: var(--fj-ink);
}

.fj-btn-light {
	background: var(--fj-surface);
	color: var(--fj-ink);
	border-color: var(--fj-line);
}

.fj-btn-light:hover {
	background: var(--fj-surface-2);
	color: var(--fj-ink);
}

.fj-btn-lg {
	padding: 14px 26px;
	font-size: 16px;
	border-radius: var(--fj-r);
}

.fj-btn-block {
	display: flex;
	width: 100%;
}

.fj-btn .fj-icon { transition: transform 0.25s var(--fj-ease); }
.fj-btn:hover .fj-icon { transform: translateX(2px); }

/* Header
   ========================================================================== */

.fj-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: color-mix(in srgb, var(--fj-bg) 82%, transparent);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	border-bottom: 1px solid var(--fj-line-soft);
}

@supports not (backdrop-filter: blur(1px)) {
	.fj-header { background: var(--fj-bg); }
}

.fj-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.fj-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--fj-display);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -0.015em;
	color: var(--fj-ink);
	text-decoration: none !important;
}

.fj-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--fj-accent);
	color: var(--fj-accent-ink);
	transition: transform 0.3s var(--fj-ease);
}

.fj-logo:hover .fj-logo-mark { transform: translateY(-1px); }

.fj-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fj-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fj-menu a {
	display: block;
	padding: 8px 13px;
	border-radius: var(--fj-r-sm);
	color: var(--fj-body);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none !important;
	transition: color 0.2s var(--fj-ease), background 0.2s var(--fj-ease);
}

.fj-menu a:hover {
	color: var(--fj-ink);
	background: var(--fj-surface-2);
}

.fj-theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	color: var(--fj-body);
	cursor: pointer;
	transition: color 0.2s var(--fj-ease), border-color 0.2s var(--fj-ease);
}

.fj-theme-toggle:hover {
	color: var(--fj-ink);
	border-color: var(--fj-ink);
}

.fj-theme-toggle .fj-icon-moon { display: none; }
:root[data-theme="dark"] .fj-theme-toggle .fj-icon-moon { display: block; }
:root[data-theme="dark"] .fj-theme-toggle .fj-icon-sun { display: none; }

.fj-nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 38px;
	height: 36px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	color: var(--fj-ink);
	cursor: pointer;
}

.fj-nav-toggle-bar {
	display: block;
	width: 15px;
	height: 1.5px;
	background: currentColor;
	border-radius: 2px;
}

/* Hero
   ========================================================================== */

.fj-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 104px 0 84px;
	background: var(--fj-bg);
}

/* One very soft warm wash — depth without spectacle */
.fj-hero::before {
	content: "";
	position: absolute;
	top: -40%;
	left: 50%;
	width: 120%;
	height: 130%;
	z-index: -1;
	transform: translateX(-50%);
	background:
		radial-gradient(46% 44% at 50% 34%, color-mix(in srgb, var(--fj-accent) 9%, transparent), transparent 70%),
		radial-gradient(38% 40% at 82% 22%, color-mix(in srgb, var(--fj-clay) 7%, transparent), transparent 70%);
	pointer-events: none;
}

.fj-hero-inner { text-align: center; }

.fj-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 15px;
	margin-bottom: 30px;
	border: 1px solid var(--fj-line);
	border-radius: 999px;
	background: var(--fj-surface);
	box-shadow: var(--fj-shadow-xs);
	font-size: 13.5px;
	color: var(--fj-body);
}

.fj-hero-badge strong {
	color: var(--fj-ink);
	font-weight: 600;
}

.fj-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fj-accent);
	flex: 0 0 auto;
}

.fj-hero-title {
	margin: 0 auto 22px;
	max-width: 17ch;
	font-size: clamp(2.6rem, 6.4vw, 4.6rem);
	line-height: 1.04;
}

.fj-hero-title em {
	font-style: italic;
	color: var(--fj-accent);
}

.fj-hero-subtitle {
	margin: 0 auto 36px;
	max-width: 56ch;
	font-size: clamp(1.02rem, 1.5vw, 1.16rem);
	line-height: 1.62;
	color: var(--fj-body);
}

.fj-hero-search { max-width: 720px; margin: 0 auto; }

/* Search
   ========================================================================== */

.fj-search-form {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	box-shadow: var(--fj-shadow-md);
	transition: border-color 0.2s var(--fj-ease), box-shadow 0.2s var(--fj-ease);
}

.fj-search-form:focus-within {
	border-color: color-mix(in srgb, var(--fj-accent) 45%, var(--fj-line));
	box-shadow: var(--fj-shadow-md), 0 0 0 4px var(--fj-accent-soft);
}

.fj-search-field {
	position: relative;
	flex: 2;
	min-width: 0;
	display: flex;
	align-items: center;
}

.fj-search-field > .fj-icon {
	position: absolute;
	left: 14px;
	color: var(--fj-muted);
	pointer-events: none;
}

.fj-search-keyword,
.fj-search-category {
	width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border: 0;
	border-radius: var(--fj-r);
	background: transparent;
	font-family: inherit;
	font-size: 15.5px;
	color: var(--fj-ink);
}

.fj-search-field .fj-search-keyword { padding-left: 42px; }

.fj-search-keyword::placeholder { color: var(--fj-muted); }

.fj-search-keyword:focus,
.fj-search-category:focus { outline: none; }

.fj-search-category-wrap {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	border-left: 1px solid var(--fj-line-soft);
}

.fj-search-category {
	appearance: none;
	cursor: pointer;
	color: var(--fj-body);
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
		linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%;
	background-size: 5px 5px;
	background-repeat: no-repeat;
	padding-right: 38px;
}

.fj-search-category option {
	background: var(--fj-surface);
	color: var(--fj-ink);
}

/* Trust row + stats
   ========================================================================== */

.fj-trust {
	margin-top: 42px;
}

.fj-trust-label {
	margin: 0 0 16px;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fj-muted);
}

.fj-trust-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fj-trust-list li {
	padding: 6px 14px;
	border: 1px solid var(--fj-line);
	border-radius: 999px;
	background: var(--fj-surface);
	font-size: 13.5px;
	color: var(--fj-body);
}

.fj-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 56px;
	padding-top: 36px;
	border-top: 1px solid var(--fj-line);
	text-align: left;
}

.fj-stat-value {
	display: block;
	font-family: var(--fj-display);
	font-size: clamp(2rem, 4vw, 2.9rem);
	font-weight: 400;
	line-height: 1;
	color: var(--fj-ink);
	font-variant-numeric: tabular-nums;
}

.fj-stat-label {
	display: block;
	margin-top: 10px;
	font-size: 13.5px;
	color: var(--fj-muted);
}

/* Page hero
   ========================================================================== */

.fj-page-hero {
	padding: 56px 0 44px;
	border-bottom: 1px solid var(--fj-line);
	background: var(--fj-surface);
}

.fj-page-hero h1 {
	margin: 14px 0 20px;
	font-size: clamp(1.9rem, 4.2vw, 2.7rem);
}

.fj-page-hero .fj-hero-search { margin: 0; max-width: 100%; }

.fj-page-hero .fj-search-form {
	box-shadow: none;
	background: var(--fj-bg);
}

.fj-archive-description {
	max-width: 68ch;
	margin: -6px 0 20px;
	color: var(--fj-body);
}

/* Sections
   ========================================================================== */

.fj-section { padding: 88px 0; }

.fj-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 36px;
}

.fj-section-head h2 {
	margin: 14px 0 0;
	font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

.fj-section-sub {
	margin: 12px 0 0;
	max-width: 54ch;
	color: var(--fj-body);
	font-size: 16px;
}

.fj-link-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 550;
	color: var(--fj-accent);
	white-space: nowrap;
}

.fj-link-more .fj-icon { transition: transform 0.25s var(--fj-ease); }
.fj-link-more:hover .fj-icon { transform: translateX(3px); }

/* Category grid
   ========================================================================== */

.fj-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.fj-category-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	text-decoration: none !important;
	transition: border-color 0.25s var(--fj-ease), box-shadow 0.25s var(--fj-ease),
		transform 0.25s var(--fj-ease);
}

.fj-category-card:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--fj-accent) 32%, var(--fj-line));
	box-shadow: var(--fj-shadow-sm);
}

.fj-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: var(--fj-r);
	background: var(--fj-accent-soft);
	color: var(--fj-accent);
	transition: background 0.25s var(--fj-ease), color 0.25s var(--fj-ease);
}

.fj-category-card:hover .fj-category-icon {
	background: var(--fj-accent);
	color: var(--fj-accent-ink);
}

.fj-category-text { min-width: 0; }

.fj-category-name {
	display: block;
	font-size: 15.5px;
	font-weight: 570;
	letter-spacing: -0.01em;
	color: var(--fj-ink);
}

.fj-category-count {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	color: var(--fj-muted);
}

/* Job cards
   ========================================================================== */

.fj-job-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fj-job-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	transition: border-color 0.25s var(--fj-ease), box-shadow 0.25s var(--fj-ease),
		transform 0.25s var(--fj-ease);
}

.fj-job-card:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--fj-accent) 30%, var(--fj-line));
	box-shadow: var(--fj-shadow-md);
}

.fj-job-card.is-featured {
	border-color: color-mix(in srgb, var(--fj-accent) 26%, var(--fj-line));
	background: linear-gradient(180deg, var(--fj-accent-soft) 0%, var(--fj-surface) 62%);
}

.fj-job-card-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
}

.fj-job-card > *:not(.fj-job-card-overlay) { position: relative; z-index: 1; }

.fj-job-card a:not(.fj-job-card-overlay),
.fj-job-card button { position: relative; z-index: 2; }

.fj-job-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: var(--fj-r);
	overflow: hidden;
	background: var(--fj-surface-2);
	border: 1px solid var(--fj-line-soft);
}

.fj-job-logo img { width: 100%; height: 100%; object-fit: cover; }

.fj-job-logo-fallback {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--fj-accent);
}

.fj-job-logo-lg {
	width: 72px;
	height: 72px;
	flex-basis: 72px;
	border-radius: var(--fj-r-lg);
}

.fj-job-logo-lg .fj-job-logo-fallback { font-size: 21px; }

.fj-job-body { flex: 1; min-width: 0; }

.fj-job-title {
	margin: 0 0 8px;
	font-family: var(--fj-sans);
	font-size: 17px;
	font-weight: 580;
	line-height: 1.35;
	letter-spacing: -0.014em;
}

.fj-job-title a { color: var(--fj-ink); }
.fj-job-card:hover .fj-job-title a { color: var(--fj-accent); }

.fj-job-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 10px;
	font-size: 13.5px;
	color: var(--fj-muted);
}

.fj-job-company {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 550;
	color: var(--fj-body);
}

.fj-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3.5px 10px;
	border-radius: 999px;
	border: 1px solid var(--fj-line);
	background: var(--fj-bg);
	font-size: 12.5px;
	color: var(--fj-body);
	line-height: 1.6;
}

.fj-tag-location {
	background: var(--fj-accent-soft);
	border-color: transparent;
	color: var(--fj-accent);
}

.fj-tag-salary {
	background: var(--fj-clay-soft);
	border-color: transparent;
	color: var(--fj-clay);
}

.fj-job-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	white-space: nowrap;
}

.fj-job-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: var(--fj-muted);
}

.fj-job-actions { display: flex; align-items: center; gap: 8px; }

.fj-featured-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--fj-accent);
	color: var(--fj-accent-ink);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.fj-save-job {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	color: var(--fj-muted);
	cursor: pointer;
	transition: color 0.2s var(--fj-ease), border-color 0.2s var(--fj-ease),
		background 0.2s var(--fj-ease);
}

.fj-save-job:hover {
	color: var(--fj-accent);
	border-color: color-mix(in srgb, var(--fj-accent) 45%, var(--fj-line));
	background: var(--fj-accent-soft);
}

.fj-save-job.is-saved {
	color: var(--fj-accent-ink);
	background: var(--fj-accent);
	border-color: var(--fj-accent);
}

.fj-save-job.is-saved .fj-icon { fill: currentColor; }

/* Listing layout + filters
   ========================================================================== */

.fj-listing-layout {
	display: grid;
	grid-template-columns: 276px minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.fj-listing-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.fj-result-count {
	margin: 0;
	font-size: 14.5px;
	color: var(--fj-muted);
}

.fj-result-count strong { color: var(--fj-ink); font-weight: 600; }

.fj-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-bottom: 16px;
	padding: 12px 20px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	font-family: inherit;
	font-size: 15px;
	font-weight: 550;
	color: var(--fj-ink);
	cursor: pointer;
}

.fj-filters { position: sticky; top: 96px; }

.fj-filter-form,
.fj-alert-card {
	padding: 24px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
}

.fj-alert-card {
	margin-top: 14px;
	background: var(--fj-accent-soft);
	border-color: color-mix(in srgb, var(--fj-accent) 18%, var(--fj-line));
}

.fj-filter-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--fj-line-soft);
}

.fj-filter-title,
.fj-alert-title {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.012em;
}

.fj-filter-clear {
	font-size: 13px;
	color: var(--fj-muted);
}

.fj-filter-clear:hover { color: var(--fj-accent); }

.fj-filter-group { border: 0; margin: 0 0 22px; padding: 0; }

.fj-filter-label {
	display: block;
	margin-bottom: 10px;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--fj-muted);
}

.fj-filter-group input[type="search"],
.fj-filter-group select,
.fj-alert-form input[type="email"],
.fj-alert-form select {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	font-family: inherit;
	font-size: 14.5px;
	color: var(--fj-ink);
	transition: border-color 0.2s var(--fj-ease), box-shadow 0.2s var(--fj-ease);
}

.fj-filter-group input[type="search"]:focus,
.fj-filter-group select:focus,
.fj-alert-form input[type="email"]:focus,
.fj-alert-form select:focus {
	outline: none;
	border-color: var(--fj-accent);
	box-shadow: 0 0 0 3px var(--fj-accent-soft);
}

.fj-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 210px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.fj-filter-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 0;
	font-size: 14px;
	color: var(--fj-body);
	cursor: pointer;
	transition: color 0.2s var(--fj-ease);
}

.fj-filter-check:hover { color: var(--fj-ink); }

.fj-filter-check input[type="checkbox"] {
	width: 15px;
	height: 15px;
	accent-color: var(--fj-accent);
	cursor: pointer;
}

.fj-filter-check span:first-of-type { flex: 1; }

.fj-filter-count {
	padding: 1px 8px;
	border-radius: 999px;
	background: var(--fj-surface-2);
	font-size: 11.5px;
	color: var(--fj-muted);
}

/* Job alerts
   ========================================================================== */

.fj-alert-text,
.fj-alert-notice {
	margin: 12px 0 16px;
	font-size: 14.5px;
	color: var(--fj-body);
}

.fj-alert-notice {
	padding: 11px 14px;
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	border: 1px solid var(--fj-line);
}

.fj-alert-notice.is-success {
	border-color: color-mix(in srgb, var(--fj-accent) 40%, transparent);
	color: var(--fj-accent);
}

.fj-alert-notice.is-error {
	border-color: #e7b4a2;
	color: #a4442a;
}

.fj-alert-form input[type="email"],
.fj-alert-form select { margin-bottom: 10px; }

.fj-home-alert { padding-top: 0; }
.fj-home-alert-inner { max-width: 540px; }
.fj-home-alert .fj-alert-card { margin-top: 0; }

/* CTA band
   ========================================================================== */

.fj-cta {
	margin: 0 28px 88px;
	padding: 76px 28px;
	border-radius: var(--fj-r-xl);
	background: var(--fj-accent);
	text-align: center;
}

.fj-cta h2 {
	margin: 0 auto 14px;
	max-width: 20ch;
	color: var(--fj-accent-ink);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.fj-cta p {
	margin: 0 auto 30px;
	max-width: 50ch;
	color: color-mix(in srgb, var(--fj-accent-ink) 82%, transparent);
}

.fj-cta .fj-kicker {
	color: color-mix(in srgb, var(--fj-accent-ink) 78%, transparent);
	justify-content: center;
}

/* Single job
   ========================================================================== */

.fj-single-hero-inner {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.fj-single-hero-text { flex: 1; min-width: 260px; }

.fj-single-title {
	margin: 10px 0 12px;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.fj-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 36px;
	align-items: start;
}

.fj-single-content {
	padding: 40px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	font-size: 17px;
	line-height: 1.75;
	max-width: 72ch;
}

.fj-single-content h2,
.fj-single-content h3 {
	margin: 2em 0 0.6em;
	font-family: var(--fj-display);
	font-weight: 400;
	font-size: 1.24em;
}

.fj-single-content > *:first-child { margin-top: 0; }

.fj-single-content ul,
.fj-single-content ol { padding-left: 1.25em; }

.fj-single-content li { margin-bottom: 0.5em; }
.fj-single-content li::marker { color: var(--fj-accent); }

.fj-single-apply-footer {
	margin-top: 44px;
	padding: 30px;
	border-radius: var(--fj-r);
	background: var(--fj-bg-sunk);
	text-align: center;
}

.fj-single-apply-footer h2 {
	margin: 0 0 8px;
	font-family: var(--fj-sans);
	font-size: 1.1em;
	font-weight: 600;
}

.fj-single-apply-footer p {
	margin: 0 0 20px;
	color: var(--fj-muted);
	font-size: 15px;
}

.fj-sidebar-card {
	position: sticky;
	top: 96px;
	padding: 26px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	box-shadow: var(--fj-shadow-xs);
}

.fj-sidebar-title {
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 600;
}

.fj-overview-list { list-style: none; margin: 0 0 22px; padding: 0; }

.fj-overview-list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 0;
	border-bottom: 1px solid var(--fj-line-soft);
	font-size: 14px;
}

.fj-overview-list li:last-child { border-bottom: 0; }

.fj-overview-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--fj-muted);
}

.fj-overview-label .fj-icon { color: var(--fj-accent); opacity: 0.85; }

.fj-overview-list strong {
	text-align: right;
	color: var(--fj-ink);
	font-weight: 570;
}

/* Sticky apply bar (small screens) */
.fj-apply-bar {
	position: fixed;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	box-shadow: var(--fj-shadow-lg);
	transform: translateY(140%);
	transition: transform 0.35s var(--fj-ease);
}

.fj-apply-bar.is-visible { transform: none; }

.fj-apply-bar-title {
	min-width: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--fj-ink);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fj-apply-bar-company {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--fj-muted);
}

/* Posts fallback
   ========================================================================== */

.fj-post {
	padding: 28px;
	margin-bottom: 14px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
}

.fj-post-title { margin: 0 0 8px; font-size: 1.4rem; }

/* Pagination
   ========================================================================== */

.fj-pagination { margin-top: 40px; text-align: center; }

.fj-pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.fj-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 10px 15px;
	border: 1px solid var(--fj-line);
	border-radius: var(--fj-r-sm);
	background: var(--fj-surface);
	font-size: 14.5px;
	color: var(--fj-body);
	transition: all 0.2s var(--fj-ease);
}

.fj-pagination .page-numbers:hover {
	border-color: var(--fj-accent);
	color: var(--fj-accent);
}

.fj-pagination .page-numbers.current {
	background: var(--fj-accent);
	border-color: var(--fj-accent);
	color: var(--fj-accent-ink);
}

.fj-empty {
	padding: 52px 28px;
	border: 1px dashed var(--fj-line);
	border-radius: var(--fj-r-lg);
	background: var(--fj-surface);
	text-align: center;
	color: var(--fj-muted);
}

/* Footer
   ========================================================================== */

.fj-footer {
	border-top: 1px solid var(--fj-line);
	background: var(--fj-surface);
}

.fj-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
	padding-top: 60px;
	padding-bottom: 32px;
}

.fj-footer-tagline {
	max-width: 34ch;
	margin: 16px 0 0;
	font-size: 15px;
	color: var(--fj-muted);
}

.fj-footer .fj-menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.fj-footer .fj-menu a {
	padding: 6px 0;
	font-size: 15px;
	color: var(--fj-muted);
	background: none;
}

.fj-footer .fj-menu a:hover { color: var(--fj-ink); background: none; }

.fj-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 22px;
	padding-bottom: 32px;
	border-top: 1px solid var(--fj-line-soft);
	font-size: 13.5px;
	color: var(--fj-muted);
}

.fj-footer-bottom p { margin: 0; }

/* Responsive
   ========================================================================== */

@media (max-width: 1040px) {
	.fj-category-grid { grid-template-columns: repeat(3, 1fr); }

	.fj-listing-layout,
	.fj-single-layout { grid-template-columns: 1fr; }

	.fj-filters,
	.fj-sidebar-card { position: static; }

	.fj-filter-toggle { display: flex; }
	.fj-filters .fj-filter-form { display: none; }
	.fj-filters.is-open .fj-filter-form { display: block; }
}

@media (max-width: 780px) {
	.fj-container { padding: 0 20px; }

	.fj-hero { padding: 72px 0 60px; }
	.fj-section { padding: 62px 0; }

	.fj-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.fj-category-grid { grid-template-columns: repeat(2, 1fr); }

	.fj-stats {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.fj-search-form {
		flex-direction: column;
		align-items: stretch;
	}

	.fj-search-category-wrap {
		border-left: 0;
		border-top: 1px solid var(--fj-line-soft);
	}

	.fj-search-form .fj-btn { width: 100%; }

	.fj-nav-toggle { display: flex; }

	.fj-nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 16px;
		border: 1px solid var(--fj-line);
		border-radius: var(--fj-r-lg);
		background: var(--fj-surface);
		box-shadow: var(--fj-shadow-lg);
	}

	.fj-nav.is-open { display: flex; }

	.fj-nav .fj-menu { flex-direction: column; align-items: stretch; }
	.fj-nav .fj-menu a { padding: 10px 13px; }

	.fj-job-card { flex-wrap: wrap; gap: 14px; }
	.fj-job-body { flex: 1 1 calc(100% - 70px); }

	.fj-job-side {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding-top: 14px;
		border-top: 1px solid var(--fj-line-soft);
	}

	.fj-single-content { padding: 26px; }
	.fj-single-hero-action { display: none; }
	.fj-apply-bar { display: flex; }

	.fj-cta { margin: 0 20px 64px; padding: 54px 22px; }
}

@media (max-width: 460px) {
	.fj-category-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.fj-reveal { opacity: 1; transform: none; }
}
