/*
Theme Name: Qwertx Jobs
Theme URI: https://qwertx.com
Description: Northline design system for the Qwertx job portal. Child theme of Hello Elementor. Flexbox-only layout so every section maps to a native Elementor container.
Author: Qwertx
Template: hello-elementor
Version: 1.1.0
Text Domain: qwertx
*/

/* ==========================================================================
   Northline tokens
   ========================================================================== */
:root {
	--nl-bg: #F6F7F9;
	--nl-surface: #FFFFFF;
	--nl-ink: #101317;
	--nl-muted: #5A626E;
	--nl-line: #E2E5EA;
	--nl-accent: #0B5FFF;
	--nl-accent-ink: #FFFFFF;
	--nl-accent-wash: #EBF1FF;
	--nl-accent-wash-line: #D3E1FF;
	--nl-support: #0F9D76;
	--nl-support-wash: #E7F6F1;
	--nl-warn: #B4540A;
	--nl-warn-wash: #FBF0E7;
	--nl-ink-sub: #AEB6C2;

	--nl-xs: 6px;
	--nl-sm: 12px;
	--nl-md: 20px;
	--nl-lg: 36px;
	--nl-xl: 64px;
	--nl-xxl: 112px;

	--nl-r-sm: 6px;
	--nl-r-md: 10px;
	--nl-r-lg: 16px;
	--nl-r-pill: 999px;

	--nl-shadow: 0 1px 2px rgba(16, 19, 23, .06), 0 8px 24px rgba(16, 19, 23, .04);
	--nl-shadow-lift: 0 2px 4px rgba(16, 19, 23, .07), 0 16px 40px rgba(16, 19, 23, .07);

	--nl-head: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
	--nl-body: "Instrument Sans", "Public Sans", system-ui, sans-serif;

	--nl-max: 1240px;
	--nl-gutter: 24px;
}

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

body.qx {
	background: var(--nl-bg);
	color: var(--nl-ink);
	font-family: var(--nl-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

.qx h1, .qx h2, .qx h3, .qx h4, .qx h5 {
	font-family: var(--nl-head);
	font-weight: 700;
	color: var(--nl-ink);
	margin: 0 0 var(--nl-md);
	letter-spacing: -.02em;
	line-height: 1.07;
}

.qx h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.qx h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); line-height: 1.1; }
.qx h3 { font-size: 1.28rem; line-height: 1.25; letter-spacing: -.01em; }
.qx h4 { font-size: 1.05rem; line-height: 1.3; letter-spacing: 0; }

.qx p { margin: 0 0 var(--nl-md); max-width: 68ch; }
.qx a { color: var(--nl-accent); text-decoration: none; }
.qx a:hover { text-decoration: underline; }
.qx img { max-width: 100%; height: auto; display: block; }

/* Components must out-specify the broad link colour above, or a primary
   button renders accent-on-accent and disappears. */
.qx a.qx-btn--primary,
.qx a.qx-btn--primary:hover,
.qx .qx-nav a.qx-btn--primary { color: var(--nl-accent-ink); }
.qx a.qx-btn--ghost,
.qx a.qx-btn--ghost:hover,
.qx a.qx-btn--quiet { color: var(--nl-ink); }
.qx a.qx-brand,
.qx a.qx-brand:hover { color: var(--nl-ink); text-decoration: none; }

.qx-lede { font-size: 1.16rem; line-height: 1.55; color: var(--nl-muted); max-width: 52ch; }
.qx-muted { color: var(--nl-muted); }
.qx-small { font-size: .9rem; }
.qx-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--nl-muted); font-weight: 600; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.screen-reader-text:focus {
	position: static !important;
	width: auto; height: auto; clip: auto;
	padding: 12px 20px; background: var(--nl-accent); color: #fff;
}

/* ==========================================================================
   Layout primitives - flexbox only, one to one with Elementor containers
   ========================================================================== */
.qx-wrap {
	max-width: var(--nl-max);
	margin: 0 auto;
	padding-inline: var(--nl-gutter);
	width: 100%;
}

.qx-section { padding-block: var(--nl-xxl); }
.qx-section--sm { padding-block: var(--nl-xl); }
.qx-section--surface { background: var(--nl-surface); border-block: 1px solid var(--nl-line); }

/* Row = Elementor container set to row, wrap on. Children set their own basis. */
.qx-row { display: flex; flex-wrap: wrap; gap: var(--nl-lg); }
.qx-row--md { gap: var(--nl-md); }
.qx-row--sm { gap: var(--nl-sm); }
.qx-row--center { align-items: center; }
.qx-row--top { align-items: flex-start; }
.qx-row--between { justify-content: space-between; }
.qx-row--middle { justify-content: center; }

/* Column bases. Grow to fill, wrap when narrower than the basis. */
.qx-c-half { flex: 1 1 420px; min-width: 0; }
.qx-c-third { flex: 1 1 280px; min-width: 0; }
.qx-c-quarter { flex: 1 1 220px; min-width: 0; }
.qx-c-main { flex: 3 1 460px; min-width: 0; }
.qx-c-side { flex: 1 1 300px; min-width: 0; }
.qx-c-rail { flex: 0 1 268px; min-width: 0; }
.qx-c-grow { flex: 1 1 320px; min-width: 0; }
.qx-c-auto { flex: 0 0 auto; }

.qx-stack > * + * { margin-top: var(--nl-md); }
.qx-rule { height: 1px; background: var(--nl-line); border: 0; margin: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.qx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--nl-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--nl-r-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .12s ease, background-color .16s ease, border-color .16s ease;
	text-decoration: none;
	white-space: nowrap;
}
.qx-btn:hover { text-decoration: none; }
.qx-btn:active { transform: translateY(1px); }
.qx-btn:focus-visible { outline: 2px solid var(--nl-accent); outline-offset: 2px; }

.qx-btn--primary { background: var(--nl-accent); color: var(--nl-accent-ink); }
.qx-btn--primary:hover { background: #0A4FD6; color: var(--nl-accent-ink); }
.qx-btn--ghost { background: var(--nl-surface); color: var(--nl-ink); border-color: var(--nl-line); }
.qx-btn--ghost:hover { border-color: #C9CFD8; }
.qx-btn--onDark { background: var(--nl-surface); color: var(--nl-ink); }
.qx-btn--onDark:hover { background: #EDEFF3; color: var(--nl-ink); }
.qx-btn--sm { padding: 10px 16px; font-size: .92rem; }
.qx-btn--lg { padding: 17px 30px; font-size: 1.04rem; }
.qx-btn--block { width: 100%; }
.qx-btn[disabled] { opacity: .5; pointer-events: none; }

/* ==========================================================================
   Forms
   ========================================================================== */
.qx-field { margin-bottom: var(--nl-md); }
.qx-field > label, .qx-field-label {
	display: block; font-size: .92rem; font-weight: 600;
	color: var(--nl-ink); margin-bottom: 7px;
}
.qx-field-hint { font-size: .85rem; color: var(--nl-muted); margin-top: 6px; }
.qx-req { color: var(--nl-accent); }
.qx-opt { color: var(--nl-muted); font-weight: 400; }

.qx-input, .qx-select, .qx-textarea {
	width: 100%;
	font-family: var(--nl-body);
	font-size: 1rem;
	color: var(--nl-ink);
	background: var(--nl-surface);
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-md);
	padding: 0 14px;
	height: 50px;
	transition: border-color .15s ease, box-shadow .15s ease;
	appearance: none;
}
.qx-textarea { height: auto; min-height: 150px; padding: 13px 14px; line-height: 1.6; resize: vertical; }
.qx-input::placeholder, .qx-textarea::placeholder { color: #98A0AC; }
.qx-input:focus, .qx-select:focus, .qx-textarea:focus {
	outline: none; border-color: var(--nl-accent);
	box-shadow: 0 0 0 3px rgba(11, 95, 255, .16);
}
.qx-select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%235A626E' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.qx-field--error .qx-input, .qx-field--error .qx-select, .qx-field--error .qx-textarea { border-color: var(--nl-warn); }
.qx-error-text { color: var(--nl-warn); font-size: .87rem; margin-top: 6px; }

.qx-choice {
	flex: 1 1 240px;
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-md);
	background: var(--nl-surface);
	padding: 16px 18px;
	cursor: pointer;
	display: block;
	position: relative;
	transition: border-color .15s ease, background-color .15s ease;
}
.qx-choice:hover { border-color: #C9CFD8; }
.qx-choice input { position: absolute; opacity: 0; pointer-events: none; }
.qx-choice-title { font-weight: 600; display: block; }
.qx-choice-sub { font-size: .88rem; color: var(--nl-muted); display: block; margin-top: 3px; }
.qx-choice:has(input:checked) {
	border-color: var(--nl-accent);
	background: var(--nl-accent-wash);
	box-shadow: inset 0 0 0 1px var(--nl-accent);
}

.qx-check { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: .95rem; }
.qx-check input { width: 17px; height: 17px; accent-color: var(--nl-accent); flex: none; }
.qx-check-count { margin-left: auto; color: var(--nl-muted); font-size: .84rem; }

.qx-filedrop { border: 1px dashed var(--nl-line); border-radius: var(--nl-r-md); padding: var(--nl-md); background: var(--nl-bg); }

/* ==========================================================================
   Surfaces
   ========================================================================== */
.qx-card {
	background: var(--nl-surface);
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-lg);
	padding: var(--nl-lg);
}
.qx-card--dark { background: var(--nl-ink); border-color: var(--nl-ink); color: #fff; }
.qx-card--dark h2, .qx-card--dark h3 { color: #fff; }
.qx-card--dark p { color: var(--nl-ink-sub); }
.qx-card--wash { background: var(--nl-accent-wash); border-color: var(--nl-accent-wash-line); }

.qx-chip {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .78rem; font-weight: 600;
	padding: 5px 12px; border-radius: var(--nl-r-pill); line-height: 1.3;
}
.qx-chip--neutral { background: var(--nl-bg); color: var(--nl-muted); border: 1px solid var(--nl-line); }
.qx-chip--live { background: var(--nl-support-wash); color: var(--nl-support); }
.qx-chip--pending { background: var(--nl-warn-wash); color: var(--nl-warn); }
.qx-chip--accent { background: var(--nl-accent-wash); color: var(--nl-accent); }

.qx-chip-link {
	border: 1px solid var(--nl-line); background: var(--nl-surface); color: var(--nl-ink);
	border-radius: var(--nl-r-pill); padding: 7px 15px; font-size: .89rem; display: inline-block;
}
.qx-chip-link:hover { border-color: var(--nl-accent); color: var(--nl-accent); text-decoration: none; }

.qx-rows { border-top: 1px solid var(--nl-line); }
.qx-listrow {
	display: flex; flex-wrap: wrap; align-items: center; gap: var(--nl-md);
	padding: var(--nl-md) 0; border-bottom: 1px solid var(--nl-line);
}
.qx-listrow--stack { flex-direction: column; align-items: flex-start; gap: 3px; }

.qx-empty {
	padding: var(--nl-xl) var(--nl-lg);
	border: 1px dashed var(--nl-line);
	border-radius: var(--nl-r-lg);
	background: var(--nl-surface);
}
.qx-empty h3 { margin-bottom: 8px; }
.qx-empty p { color: var(--nl-muted); margin-bottom: var(--nl-md); }

.qx-notice { border-radius: var(--nl-r-md); padding: 14px 18px; margin-bottom: var(--nl-md); font-size: .95rem; border: 1px solid; }
.qx-notice--ok { background: var(--nl-support-wash); border-color: #BCE4D7; color: #0B6B51; }
.qx-notice--warn { background: var(--nl-warn-wash); border-color: #EBD3BC; color: var(--nl-warn); }
.qx-notice--info { background: var(--nl-accent-wash); border-color: var(--nl-accent-wash-line); color: #0A3FA8; }

/* ==========================================================================
   Header with CSS-only mobile menu
   ========================================================================== */
.qx-header { background: var(--nl-surface); border-bottom: 1px solid var(--nl-line); position: sticky; top: 0; z-index: 60; }
.qx-header-inner {
	display: flex; align-items: center; gap: var(--nl-lg);
	min-height: 74px;
	max-width: var(--nl-max); margin: 0 auto; padding-inline: var(--nl-gutter);
}
.qx-brand {
	font-family: var(--nl-head); font-weight: 700; font-size: 1.34rem;
	letter-spacing: -.03em; color: var(--nl-ink);
	display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
}
.qx-brand-mark { width: 28px; height: 28px; flex: none; }

.qx-nav { display: flex; align-items: center; gap: var(--nl-md); margin-left: auto; }
.qx-nav a { color: var(--nl-ink); font-size: .97rem; font-weight: 500; white-space: nowrap; }
.qx-nav a:hover { color: var(--nl-accent); text-decoration: none; }

.qx-burger { display: none; margin-left: auto; }
.qx-burger-box {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-md); cursor: pointer; background: var(--nl-surface);
}
.qx-burger-box span { position: relative; width: 18px; height: 2px; background: var(--nl-ink); display: block; }
.qx-burger-box span::before, .qx-burger-box span::after {
	content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--nl-ink);
}
.qx-burger-box span::before { top: -6px; }
.qx-burger-box span::after { top: 6px; }
#qx-menu-toggle { position: absolute; opacity: 0; pointer-events: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.qx-footer { background: var(--nl-surface); border-top: 1px solid var(--nl-line); padding-block: var(--nl-xl) var(--nl-lg); margin-top: var(--nl-xxl); }
.qx-footer h4 { font-family: var(--nl-body); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--nl-muted); margin-bottom: var(--nl-sm); }
.qx-footer ul { list-style: none; padding: 0; margin: 0; }
.qx-footer li { margin-bottom: 9px; }
.qx-footer li a { color: var(--nl-ink); font-size: .95rem; }
.qx-footer-base { margin-top: var(--nl-xl); padding-top: var(--nl-md); border-top: 1px solid var(--nl-line); color: var(--nl-muted); font-size: .88rem; }

/* ==========================================================================
   Home hero
   ========================================================================== */
.qx-hero {
	position: relative;
	background: var(--nl-surface);
	border-bottom: 1px solid var(--nl-line);
	padding-block: var(--nl-xl) var(--nl-lg);
	overflow: hidden;
}
.qx-hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 84% 26%, rgba(11,95,255,.09), transparent 46%),
		radial-gradient(circle at 97% 78%, rgba(15,157,118,.07), transparent 42%);
	pointer-events: none;
}
.qx-hero > * { position: relative; }
.qx-hero h1 { margin-bottom: var(--nl-md); }
.qx-hero .qx-lede { margin-bottom: 0; }
.qx-hero-figure { max-width: 460px; margin-left: auto; }

.qx-searchbar {
	display: flex; flex-wrap: wrap; gap: var(--nl-sm);
	background: var(--nl-surface);
	border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-lg);
	padding: var(--nl-sm);
	box-shadow: var(--nl-shadow);
	margin-top: var(--nl-lg);
}
.qx-searchbar .qx-sf { flex: 1 1 190px; min-width: 0; }
.qx-searchbar .qx-sf--wide { flex: 1.6 1 240px; }
.qx-searchbar .qx-input, .qx-searchbar .qx-select { border-color: transparent; background: var(--nl-bg); }
.qx-searchbar .qx-input:focus, .qx-searchbar .qx-select:focus { border-color: var(--nl-accent); background: var(--nl-surface); }
.qx-searchbar .qx-btn { flex: 0 0 auto; }

.qx-facts { display: flex; flex-wrap: wrap; gap: var(--nl-xl); margin-top: var(--nl-lg); }
.qx-fact-figure { font-family: var(--nl-head); font-weight: 700; font-size: 1.75rem; line-height: 1; letter-spacing: -.02em; }
.qx-fact-label { color: var(--nl-muted); font-size: .88rem; margin-top: 4px; }

/* ==========================================================================
   Section heads, categories
   ========================================================================== */
.qx-sectionhead { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--nl-md); margin-bottom: var(--nl-lg); }
.qx-sectionhead h2 { margin-bottom: 0; }
.qx-sectionhead p { color: var(--nl-muted); margin: 6px 0 0; }

.qx-cat {
	flex: 1 1 220px;
	background: var(--nl-surface); border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-lg); padding: var(--nl-md) var(--nl-lg);
	display: flex; flex-direction: column; gap: 3px;
	transition: border-color .15s ease, transform .12s ease;
}
.qx-cat:hover { border-color: var(--nl-accent); text-decoration: none; transform: translateY(-2px); }
.qx-cat-name { font-weight: 600; color: var(--nl-ink); }
.qx-cat-count { color: var(--nl-muted); font-size: .9rem; }

/* Icon box, maps to the Elementor Icon Box widget */
.qx-iconbox { flex: 1 1 280px; display: flex; flex-direction: column; gap: 10px; }
.qx-iconbox-icon {
	width: 46px; height: 46px; border-radius: var(--nl-r-md);
	background: var(--nl-accent-wash); color: var(--nl-accent);
	display: inline-flex; align-items: center; justify-content: center;
}
.qx-iconbox h3 { font-size: 1.12rem; margin: 0; }
.qx-iconbox p { color: var(--nl-muted); margin: 0; font-size: .96rem; }

/* ==========================================================================
   Job result row
   ========================================================================== */
.qx-job {
	display: flex; flex-wrap: wrap; align-items: flex-start; gap: var(--nl-md);
	padding: var(--nl-md) 0; border-bottom: 1px solid var(--nl-line);
}
.qx-job-logo {
	flex: 0 0 auto;
	width: 54px; height: 54px; border-radius: var(--nl-r-md);
	border: 1px solid var(--nl-line); background: var(--nl-bg);
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.qx-job-logo img { width: 100%; height: 100%; object-fit: cover; }
.qx-job-logo span { font-family: var(--nl-head); font-weight: 700; color: var(--nl-muted); font-size: 1.15rem; }
.qx-job-body { flex: 1 1 320px; min-width: 0; }
.qx-job-title { font-family: var(--nl-body); font-size: 1.12rem; font-weight: 600; margin: 0 0 4px; line-height: 1.3; letter-spacing: 0; }
.qx-job-title a { color: var(--nl-ink); }
.qx-job-title a:hover { color: var(--nl-accent); text-decoration: none; }
.qx-job-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--nl-muted); font-size: .93rem; align-items: center; }
.qx-job-snippet { color: var(--nl-muted); font-size: .93rem; margin: 8px 0 0; max-width: 70ch; }
.qx-job-aside { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; }
.qx-job-salary { font-weight: 600; white-space: nowrap; }
.qx-job-date { color: var(--nl-muted); font-size: .85rem; white-space: nowrap; }

/* ==========================================================================
   Utility pages
   ========================================================================== */
.qx-pagehead { background: var(--nl-surface); border-bottom: 1px solid var(--nl-line); padding-block: var(--nl-lg); }
.qx-pagehead h1 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 6px; }
.qx-pagehead p { color: var(--nl-muted); margin: 0; }

.qx-rail-group { padding-block: var(--nl-md); border-bottom: 1px solid var(--nl-line); }
.qx-rail-group:first-child { padding-top: 0; }
.qx-rail-group h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--nl-muted); margin-bottom: var(--nl-sm); }

.qx-form-section { background: var(--nl-surface); border: 1px solid var(--nl-line); border-radius: var(--nl-r-lg); padding: var(--nl-lg); margin-bottom: var(--nl-md); }
.qx-form-section > header { margin-bottom: var(--nl-md); padding-bottom: var(--nl-sm); border-bottom: 1px solid var(--nl-line); }
.qx-form-section > header h2 { font-size: 1.18rem; margin: 0 0 2px; letter-spacing: -.01em; }
.qx-form-section > header p { color: var(--nl-muted); font-size: .92rem; margin: 0; }
.qx-field-half { flex: 1 1 240px; min-width: 0; }
.qx-field-full { flex: 1 1 100%; }

.qx-tabs { display: flex; flex-wrap: wrap; gap: var(--nl-md); border-bottom: 1px solid var(--nl-line); margin-bottom: var(--nl-lg); }
.qx-tab { padding: 12px 2px; font-weight: 600; font-size: .97rem; color: var(--nl-muted); border-bottom: 2px solid transparent; white-space: nowrap; }
.qx-tab:hover { color: var(--nl-ink); text-decoration: none; }
.qx-tab[aria-current="page"] { color: var(--nl-ink); border-bottom-color: var(--nl-accent); }

.qx-stat { flex: 1 1 200px; background: var(--nl-surface); border: 1px solid var(--nl-line); border-radius: var(--nl-r-lg); padding: var(--nl-md) var(--nl-lg); }
.qx-stat-figure { font-family: var(--nl-head); font-weight: 700; font-size: 2.1rem; line-height: 1.05; letter-spacing: -.02em; }
.qx-stat-label { color: var(--nl-muted); font-size: .88rem; margin-top: 2px; }

.qx-plan { flex: 1 1 280px; background: var(--nl-surface); border: 1px solid var(--nl-line); border-radius: var(--nl-r-lg); padding: var(--nl-lg); display: flex; flex-direction: column; }
.qx-plan--featured { border-color: var(--nl-accent); box-shadow: inset 0 0 0 1px var(--nl-accent); }
.qx-plan-name { font-family: var(--nl-body); font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.qx-plan-price { font-family: var(--nl-head); font-weight: 700; font-size: 2.5rem; line-height: 1.05; letter-spacing: -.03em; }
.qx-plan-period { color: var(--nl-muted); font-size: .92rem; margin-bottom: var(--nl-md); }
.qx-plan ul { list-style: none; padding: 0; margin: 0 0 var(--nl-lg); }
.qx-plan li { padding: 9px 0; border-top: 1px solid var(--nl-line); font-size: .95rem; }
.qx-plan .qx-btn { margin-top: auto; }

.qx-pager { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--nl-lg); }
.qx-pager a, .qx-pager span {
	min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--nl-line); border-radius: var(--nl-r-md);
	background: var(--nl-surface); color: var(--nl-ink); font-size: .95rem; padding-inline: 10px;
}
.qx-pager .current { background: var(--nl-accent); border-color: var(--nl-accent); color: #fff; }
.qx-pager a:hover { border-color: #C9CFD8; text-decoration: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 940px) {
	.qx-section { padding-block: 64px; }
	.qx-section--sm { padding-block: 48px; }
	.qx-hero { padding-block: var(--nl-lg) var(--nl-md); }
	.qx-hero-figure { margin: 0 auto; }
	.qx-footer { margin-top: 64px; }

	.qx-burger { display: inline-flex; }
	.qx-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--nl-surface);
		border-bottom: 1px solid var(--nl-line);
		box-shadow: var(--nl-shadow);
		padding: var(--nl-sm) var(--nl-gutter) var(--nl-md);
		margin-left: 0;
	}
	#qx-menu-toggle:checked ~ .qx-nav { display: flex; }
	.qx-nav a { padding: 13px 0; border-bottom: 1px solid var(--nl-line); font-size: 1rem; }
	.qx-nav a.qx-btn { border-bottom: 0; margin-top: var(--nl-sm); justify-content: center; }
	.qx-header-inner { position: relative; flex-wrap: wrap; }
}

@media (max-width: 700px) {
	body.qx { font-size: 16px; }
	.qx-job-aside { flex-basis: 100%; align-items: flex-start; text-align: left; flex-direction: row; gap: var(--nl-md); }
	.qx-facts { gap: var(--nl-lg); }
}

/* ==========================================================================
   Form page layout. Flex only; each block maps to an Elementor container.
   ========================================================================== */
.qx-form-layout { display: flex; flex-wrap: wrap; gap: var(--nl-xl); align-items: flex-start; }
.qx-form-main { flex: 3 1 460px; min-width: 0; }
.qx-form-side { flex: 1 1 300px; min-width: 0; }

.qx-fieldrow { display: flex; flex-wrap: wrap; gap: 0 var(--nl-md); }
.qx-fieldrow > .qx-field { flex: 1 1 240px; min-width: 0; }
.qx-fieldrow > .qx-field-full { flex: 1 1 100%; }

.qx-choicerow { display: flex; flex-wrap: wrap; gap: var(--nl-sm); margin-bottom: var(--nl-md); }

.qx-form-actions { display: flex; flex-wrap: wrap; gap: var(--nl-sm); align-items: center; }

/* ==========================================================================
   Editorial: post cards and article body
   ========================================================================== */
.qx-postcard {
	flex: 1 1 300px;
	display: flex; flex-direction: column; gap: 8px;
	background: var(--nl-surface); border: 1px solid var(--nl-line);
	border-radius: var(--nl-r-lg); padding: var(--nl-lg);
	transition: border-color .15s ease, transform .12s ease;
}
.qx-postcard:hover { border-color: var(--nl-accent); text-decoration: none; transform: translateY(-2px); }
.qx-postcard h3 { font-family: var(--nl-body); font-size: 1.1rem; font-weight: 600; letter-spacing: 0; margin: 0; color: var(--nl-ink); }
.qx-postcard p { color: var(--nl-muted); font-size: .94rem; margin: 0; }
.qx-postcard-meta { color: var(--nl-muted); font-size: .84rem; margin-top: auto; padding-top: var(--nl-sm); }

.qx-article { max-width: 72ch; }
.qx-article h2 { font-size: 1.55rem; margin-top: var(--nl-lg); margin-bottom: var(--nl-sm); }
.qx-article h3 { font-size: 1.2rem; margin-top: var(--nl-md); }
.qx-article p { margin-bottom: var(--nl-md); max-width: 72ch; }
.qx-article ul, .qx-article ol { margin: 0 0 var(--nl-md); padding-left: 1.25em; }
.qx-article li { margin-bottom: 8px; }
.qx-article strong { font-weight: 600; }
.qx-article em { font-style: italic; }
.qx-article blockquote { margin: var(--nl-md) 0; padding-left: var(--nl-md); border-left: 3px solid var(--nl-accent); color: var(--nl-muted); }

@media (prefers-reduced-motion: reduce) {
	.qx *, .qx *::before, .qx *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}
