/* GetJob Canada — site stylesheet
   Palette: Pine (brand) · Amber (accent) · Mist (ground)
   Type:    Bricolage Grotesque (display) · Instrument Sans (body) · JetBrains Mono (data)
*/

:root {
  --bg: #F5F7F4;
  --surface: #FFFFFF;
  --surface-2: #EAF0EA;
  --surface-3: #DFE8E1;
  --ink: #14211C;
  --ink-2: #46554F;
  --ink-3: #74837D;
  --line: #D4DDD7;
  --line-strong: #B9C6BE;
  --brand: #164C3E;
  --brand-strong: #0F3A2F;
  --band: #0F3A2F;
  --brand-ink: #FFFFFF;
  --brand-soft: #DCEBE2;
  --accent: #D69A2E;
  --accent-strong: #B27E1E;
  --accent-soft: #F8EBCF;
  --link: #1C6652;
  --focus: #D69A2E;
  --shadow: 0 1px 2px rgba(20,33,28,.06), 0 12px 32px -16px rgba(20,33,28,.22);
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --measure: 66ch;
  --container: 1180px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F1714;
    --surface: #16211C;
    --surface-2: #1C2922;
    --surface-3: #243429;
    --ink: #EDF3EE;
    --ink-2: #B3C1B8;
    --ink-3: #7F8F87;
    --line: #283830;
    --line-strong: #38493F;
    --brand: #8CCBAF;
    --brand-strong: #A9DCC5;
    --band: #0C2F26;
    --brand-ink: #0F1714;
    --brand-soft: #1B3328;
    --accent: #E6B85C;
    --accent-strong: #F0C97A;
    --accent-soft: #3A2D12;
    --link: #93D2B7;
    --focus: #E6B85C;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 32px -16px rgba(0,0,0,.6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0F1714;
  --surface: #16211C;
  --surface-2: #1C2922;
  --surface-3: #243429;
  --ink: #EDF3EE;
  --ink-2: #B3C1B8;
  --ink-3: #7F8F87;
  --line: #283830;
  --line-strong: #38493F;
  --brand: #8CCBAF;
  --brand-strong: #A9DCC5;
  --band: #0C2F26;
  --brand-ink: #0F1714;
  --brand-soft: #1B3328;
  --accent: #E6B85C;
  --accent-strong: #F0C97A;
  --accent-soft: #3A2D12;
  --link: #93D2B7;
  --focus: #E6B85C;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 32px -16px rgba(0,0,0,.6);
  color-scheme: dark;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--brand-strong); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.9rem); font-weight: 700; letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
p, li { max-width: var(--measure); }
ul, ol { padding-left: 1.25em; }
strong { font-weight: 650; }
small { font-size: .875rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.mono { font-family: var(--font-mono); font-size: .85em; letter-spacing: 0; }
.num { font-variant-numeric: tabular-nums; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 760px; }
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section-alt { background: var(--surface-2); }
.section-brand { background: var(--band); color: #EDF3EE; }
.section-brand h2, .section-brand h3 { color: #FFFFFF; }
.section-brand p { color: #CFE0D6; }
.section-brand a { color: #F0C97A; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 .9rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.section-brand .eyebrow { color: #A9DCC5; }
.eyebrow--employers::before { background: var(--brand); }
.eyebrow--candidates::before { background: var(--accent); }
.lede { font-size: 1.2rem; color: var(--ink-2); line-height: 1.55; }
.muted { color: var(--ink-2); }
.small-muted { color: var(--ink-3); font-size: .9rem; }
.section-head { margin-bottom: 2.2rem; }
.section-head h2 { max-width: 22ch; }
.section-head .lede { max-width: 60ch; }
.section-head--row { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); color: var(--brand-ink); }
.btn-accent { background: var(--accent); color: #14211C; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #14211C; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.section-brand .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,.4); }
.section-brand .btn-outline:hover { border-color: #FFFFFF; color: #FFFFFF; }
.btn-sm { padding: .55rem .95rem; font-size: .9rem; }
.btn-lg { padding: .95rem 1.6rem; font-size: 1.05rem; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.text-link { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.text-link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.topbar { background: var(--band); color: #CFE0D6; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; flex-wrap: wrap; }
.topbar a { color: #FFFFFF; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar span + span::before { content: "·"; margin: 0 .6rem; color: #7FA894; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: none; }
.logo-mark { width: 38px; height: 38px; flex: none; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; line-height: 1; }
.logo-word span { color: var(--brand); }
.logo-tag { display: block; font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: .25rem; }
.nav { display: flex; align-items: center; gap: 1rem; flex: 1; justify-content: flex-end; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .1rem; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .7rem; border-radius: 8px; border: 0; background: none; cursor: pointer;
  color: var(--ink-2); font: inherit; font-weight: 560; font-size: .95rem;
}
.nav-link svg { width: 14px; height: 14px; transition: transform .18s ease; }
.nav-link:hover, .has-menu.open > .nav-link, .has-menu:focus-within > .nav-link { color: var(--ink); background: var(--surface-2); }
.has-menu.is-active > .nav-link { color: var(--brand); }
.has-menu.open > .nav-link svg { transform: rotate(180deg); }
.menu {
  position: absolute; left: 0; top: calc(100% + 8px); min-width: 340px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: .6rem; display: none; z-index: 60;
}
.menu-inner { display: grid; gap: .1rem; }
.menu a { display: grid; gap: .1rem; padding: .6rem .75rem; border-radius: 8px; text-decoration: none; color: var(--ink); }
.menu a strong { font-weight: 600; font-size: .93rem; }
.menu a span { font-size: .8rem; color: var(--ink-3); }
.menu a:hover, .menu a:focus-visible { background: var(--surface-2); color: var(--ink); }
.menu a[aria-current="page"] { background: var(--brand-soft); }
.menu a[aria-current="page"] strong { color: var(--brand); }
@media (hover: hover) and (min-width: 1081px) {
  .has-menu:hover > .menu, .has-menu:focus-within > .menu { display: block; }
}
.has-menu.open > .menu { display: block; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.icon-link { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; color: var(--ink-2); }
.icon-link svg { width: 20px; height: 20px; }
.icon-link:hover { background: var(--surface-2); color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line-strong); border-radius: 8px; padding: .45rem .6rem; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .topbar { display: none; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .5rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .75rem 1.25rem 1.25rem; box-shadow: var(--shadow);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: .9rem .4rem; font-size: 1rem; }
  .menu { position: static; min-width: 0; border: 0; box-shadow: none; padding: 0 0 .6rem; border-radius: 0; background: transparent; }
  .menu a span { display: none; }
  .nav-actions { flex-direction: column; align-items: stretch; padding-top: .5rem; }
  .nav-actions .icon-link { display: none; }
  .nav-actions .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 30rem at 85% -10%, color-mix(in srgb, var(--brand-soft) 80%, transparent), transparent 60%),
    radial-gradient(40rem 20rem at -10% 110%, color-mix(in srgb, var(--accent-soft) 70%, transparent), transparent 60%);
}
.hero .container { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: 1rem; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lede { max-width: 52ch; margin-bottom: 1.8rem; }
.hero-note { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.6rem; color: var(--ink-3); font-size: .9rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--brand); }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; } }

.search-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.search-panel h2 { font-size: 1.25rem; margin-bottom: .25rem; }
.search-panel p { color: var(--ink-3); font-size: .9rem; margin-bottom: 1rem; }
.search-panel .field { margin-bottom: .75rem; }
.search-panel .btn { width: 100%; justify-content: center; margin-top: .25rem; }
.search-panel .quick { margin-top: 1rem; font-size: .85rem; color: var(--ink-3); display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.search-panel .quick a { color: var(--link); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.field label .req { color: var(--accent-strong); }
.field .hint { font-size: .8rem; color: var(--ink-3); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="file"], select, textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: 8px;
  padding: .7rem .85rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent); }
textarea { min-height: 140px; resize: vertical; }
select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.2rem; }
input[type="file"] { padding: .5rem; }
.form { display: grid; gap: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.checkbox input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--brand); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-error { color: #B3261E; font-size: .85rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B3261E; }
.field.invalid .form-error { display: block; }
.form-status { display: none; padding: 1rem 1.1rem; border-radius: 8px; font-size: .95rem; margin-top: .5rem; }
.form-status.ok { display: block; background: var(--brand-soft); color: var(--ink); border-left: 4px solid var(--brand); }
.form-status.err { display: block; background: var(--accent-soft); color: var(--ink); border-left: 4px solid var(--accent); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem;
}
.card h3 { margin-bottom: .1rem; }
.card p { color: var(--ink-2); margin: 0; font-size: .97rem; }
.card .text-link { margin-top: auto; padding-top: .6rem; }
.card-link { text-decoration: none; color: inherit; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.card-link:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: .4rem; }
.card-icon svg { width: 22px; height: 22px; }
.card--accent .card-icon { background: var(--accent-soft); color: var(--accent-strong); }
.card-list { list-style: none; padding: 0; margin: .4rem 0 0; display: grid; gap: .35rem; font-size: .93rem; color: var(--ink-2); }
.card-list li { padding-left: 1.2rem; position: relative; }
.card-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* Practice (industry) tiles */
.practice { position: relative; overflow: hidden; padding: 2rem; min-height: 300px; justify-content: flex-end; border-color: var(--line); }
.practice::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, var(--brand-soft), transparent 60%); opacity: .8; }
.practice > * { position: relative; }
.practice .practice-code { font-family: var(--font-mono); font-size: .78rem; color: var(--brand); letter-spacing: .06em; }
.practice h3 { font-size: 1.5rem; }
.practice .roles { font-size: .88rem; color: var(--ink-3); }
.practice--01::before { background: linear-gradient(160deg, var(--brand-soft), transparent 65%); }
.practice--02::before { background: linear-gradient(160deg, var(--surface-3), transparent 65%); }
.practice--03::before { background: linear-gradient(160deg, var(--accent-soft), transparent 65%); }

/* Two-lane audience section */
.lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 860px) { .lanes { grid-template-columns: 1fr; } }
.lane { border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: .8rem; }
.lane--employers { background: var(--band); color: #EDF3EE; }
.lane--employers h2, .lane--employers h3 { color: #FFFFFF; }
.lane--employers p, .lane--employers li { color: #CFE0D6; }
.lane--employers .eyebrow { color: #A9DCC5; }
.lane--employers .eyebrow::before { background: #E6B85C; }
.lane--candidates { background: var(--surface); border: 1px solid var(--line); }
.lane ul { margin: 0 0 .5rem; padding-left: 1.2rem; }
.lane .btn-row { margin-top: auto; padding-top: .8rem; }

/* Process steps (a real sequence, so numbered) */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; counter-reset: step; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: step; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.3rem 1.4rem; position: relative; }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: .8rem; color: var(--accent-strong); letter-spacing: .08em; display: block; margin-bottom: .6rem; }
.steps h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.steps p { font-size: .92rem; color: var(--ink-2); margin: 0; }
.steps--vertical { grid-template-columns: 1fr; max-width: 760px; }

/* Stats / proof strip (used sparingly, with real, non-numeric claims) */
.proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
@media (max-width: 860px) { .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.proof div { padding: 0 .5rem; }
.proof strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .15rem; }
.proof span { font-size: .88rem; color: var(--ink-3); }

/* ---------- Jobs ---------- */
.jobs-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 2rem; align-items: start; }
@media (max-width: 900px) { .jobs-layout { grid-template-columns: 1fr; } }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; display: grid; gap: .9rem; position: sticky; top: 90px; }
.filters h2 { font-size: 1.05rem; margin: 0; }
.filters .btn { justify-content: center; }
.job-list { display: grid; gap: .9rem; }
.job-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .8rem 1.4rem; align-items: center;
  text-decoration: none; color: inherit; transition: border-color .18s ease, box-shadow .18s ease;
}
.job-card:hover { border-color: var(--brand); box-shadow: var(--shadow); color: inherit; }
.job-card h3 { font-size: 1.12rem; margin: 0 0 .25rem; }
.job-card .meta { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .88rem; color: var(--ink-2); }
.job-card .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.job-card .meta svg { width: 14px; height: 14px; color: var(--ink-3); }
.job-card .ref { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-3); }
.job-card .right { text-align: right; display: grid; gap: .4rem; justify-items: end; }
.job-card .salary { font-family: var(--font-mono); font-size: .82rem; color: var(--ink); }
@media (max-width: 560px) { .job-card { grid-template-columns: 1fr; } .job-card .right { justify-items: start; text-align: left; } }
.pill { display: inline-block; font-size: .74rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px; background: var(--surface-2); color: var(--ink-2); }
.pill--hsc { background: var(--brand-soft); color: var(--brand); }
.pill--it { background: var(--surface-3); color: var(--ink); }
.pill--mkt { background: var(--accent-soft); color: var(--accent-strong); }
.pill--contract { background: var(--surface-2); color: var(--ink-2); }
.results-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; color: var(--ink-2); font-size: .92rem; }
.empty { background: var(--surface); border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--ink-2); }

.job-detail { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.4rem); }
.job-detail .back { margin-bottom: 1rem; display: inline-flex; }
.job-detail header { border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; margin-bottom: 1.4rem; }
.job-detail h1 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem); }
.job-detail dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .8rem 1.2rem; margin: 1rem 0 0; }
.job-detail dt { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 650; }
.job-detail dd { margin: .15rem 0 0; font-weight: 560; }
.job-detail dd.mono { font-family: var(--font-mono); font-size: .9rem; font-weight: 500; }
.job-detail h2 { font-size: 1.25rem; margin-top: 1.6rem; }
.job-detail .apply { border-top: 1px solid var(--line); margin-top: 1.8rem; padding-top: 1.4rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.notice-sample { font-size: .82rem; color: var(--ink-3); border-left: 3px solid var(--accent); padding: .4rem .8rem; margin-bottom: 1.2rem; background: var(--surface); }

/* ---------- Content pages ---------- */
.page-hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { max-width: 58ch; margin-bottom: 0; }
.page-hero .btn-row { margin-top: 1.5rem; }
.breadcrumbs { font-size: .82rem; color: var(--ink-3); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul li, .prose ol li { margin-bottom: .35rem; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--accent); background: var(--surface); border-radius: 0 8px 8px 0; color: var(--ink-2); }
.prose table { border-collapse: collapse; width: 100%; font-size: .93rem; }
.prose th, .prose td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.table-wrap { overflow-x: auto; margin: 1.2rem 0; }
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split--reverse > :first-child { order: 0; } }
.aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; position: sticky; top: 90px; }
.aside h3 { font-size: 1.05rem; }
.aside ul { padding-left: 1.1rem; font-size: .93rem; color: var(--ink-2); margin: 0 0 1rem; }
.aside .btn { width: 100%; justify-content: center; }
.aside .btn + .btn { margin-top: .5rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: .2rem; background: var(--brand-soft) center / 12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23164C3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

.role-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: .5rem 0 0; padding: 0; list-style: none; }
.role-chips li { font-size: .85rem; padding: .35rem .7rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.values div { padding: 1.7rem; border-right: 1px solid var(--line); }
.values div:last-child { border-right: 0; }
@media (max-width: 860px) { .values div { border-right: 0; border-bottom: 1px solid var(--line); } .values div:last-child { border-bottom: 0; } }
.values h3 { font-size: 1.1rem; }
.values p { font-size: .95rem; color: var(--ink-2); margin: 0; }

.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 860px) { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; }
.person .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; margin-bottom: .9rem; }
.person h3 { font-size: 1.05rem; margin-bottom: .1rem; }
.person .role { font-size: .85rem; color: var(--brand); font-weight: 600; margin-bottom: .5rem; }
.person p { font-size: .92rem; color: var(--ink-2); margin: 0; }

.faq { display: grid; gap: .6rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.2rem; }
.faq summary { cursor: pointer; padding: 1rem 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--brand); font-size: 1.1rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 1rem; color: var(--ink-2); font-size: .95rem; }

.insight { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: .5rem; }
.insight .kicker { font-size: .78rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-strong); }
.insight h3 { font-size: 1.15rem; }
.insight .when { font-size: .82rem; color: var(--ink-3); margin-top: auto; padding-top: .6rem; }

.article { max-width: 720px; }
.article .when { color: var(--ink-3); font-size: .9rem; margin-bottom: 2rem; }
.article h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.article h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.article .sources { font-size: .85rem; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 2.5rem; }
.article .sources a { color: var(--ink-2); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { display: grid; gap: 1.2rem; }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: .8rem; align-items: start; }
.contact-item .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .2rem; }
.contact-item a { text-decoration: none; }
.placeholder { color: var(--accent-strong); font-style: italic; }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); min-height: 260px; display: grid; place-items: center; color: var(--ink-3); text-align: center; padding: 1.5rem; font-size: .9rem; }

/* CTA band */
.cta-band { background: var(--band); color: #FFFFFF; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -8rem; top: -8rem; width: 22rem; height: 22rem; border-radius: 50%; background: radial-gradient(circle, rgba(230,184,92,.28), transparent 65%); pointer-events: none; }
.cta-band h2 { color: #FFFFFF; margin-bottom: .4rem; }
.cta-band p { color: #CFE0D6; margin: 0; }
.cta-band .btn-row { position: relative; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }

/* Alert / fraud notice */
.notice { background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .93rem; display: flex; gap: .8rem; align-items: flex-start; }
.notice svg { width: 20px; height: 20px; flex: none; color: var(--accent-strong); margin-top: .15rem; }
.notice p { margin: 0; max-width: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: clamp(2rem, 5vw, 4rem); font-size: .93rem; }
.site-footer .container { padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-grid a { color: var(--ink-2); text-decoration: none; }
.footer-grid a:hover { color: var(--brand); text-decoration: underline; }
.footer-about p { color: var(--ink-2); font-size: .92rem; margin: .8rem 0; max-width: 34ch; }
.footer-contact li { color: var(--ink-2); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--ink-3); }
.footer-bottom a { color: var(--ink-3); }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-licence { font-size: .8rem; color: var(--ink-3); margin-top: .8rem; max-width: 40ch; }

.skip-link { position: absolute; left: -999px; top: .5rem; background: var(--accent); color: #14211C; padding: .6rem 1rem; border-radius: 6px; z-index: 100; font-weight: 600; }
.skip-link:focus { left: .5rem; }

/* Entrance motion: visible at rest, subtle lift */
@media (prefers-reduced-motion: no-preference) {
  .hero > .container > * { animation: rise .6s ease both; }
  .hero > .container > :nth-child(2) { animation-delay: .12s; }
  @keyframes rise { from { opacity: .35; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

/* ---------- Additions: v2 ---------- */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface);
  color: var(--brand); box-shadow: var(--shadow); cursor: pointer; display: grid; place-items: center;
}
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { background: var(--brand-soft); }

.footer-alerts { margin-top: 1.2rem; }
.footer-alerts label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-2); margin-bottom: .4rem; }
.footer-alerts-row { display: flex; gap: .4rem; }
.footer-alerts-row input { padding: .55rem .7rem; font-size: .9rem; }
.footer-alerts .form-status { margin-top: .4rem; font-size: .82rem; padding: .5rem .7rem; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 960px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; position: relative; }
.quote::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--accent); position: absolute; top: 1.2rem; left: 1.4rem; opacity: .7; }
.quote p { margin: 1.4rem 0 0; font-size: 1.02rem; color: var(--ink); }
.quote footer { margin-top: auto; font-size: .88rem; color: var(--ink-2); display: grid; gap: .1rem; }
.quote footer strong { color: var(--ink); }
.quote .tag { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); font-weight: 650; }

/* Stat band (used for real, verifiable operating facts only) */
.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 860px) { .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2rem; letter-spacing: -.02em; color: var(--brand); font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: .4rem; }
.stat span { font-size: .88rem; color: var(--ink-2); }

/* Timeline (a real sequence) */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: tl; }
.timeline li { counter-increment: tl; display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; padding-bottom: 1.8rem; position: relative; }
.timeline li::before { content: counter(tl, decimal-leading-zero); font-family: var(--font-mono); font-size: .8rem; color: var(--accent-strong); letter-spacing: .08em; background: var(--surface); border: 1px solid var(--line); border-radius: 50%; width: 44px; height: 44px; display: grid; place-items: center; }
.timeline li::after { content: ""; position: absolute; left: 21px; top: 48px; bottom: 0; width: 2px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.timeline h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.timeline p { color: var(--ink-2); margin: 0 0 .5rem; }
.timeline .tl-meta { font-size: .8rem; color: var(--ink-3); font-family: var(--font-mono); }

/* Salary tables */
.salary-table { border-collapse: collapse; width: 100%; font-size: .93rem; }
.salary-table th, .salary-table td { text-align: left; padding: .65rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.salary-table th { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); background: var(--surface-2); position: sticky; top: 74px; }
.salary-table td.num { font-family: var(--font-mono); font-size: .85rem; white-space: nowrap; }
.salary-table tr:hover td { background: color-mix(in srgb, var(--brand-soft) 40%, transparent); }
.salary-note { font-size: .85rem; color: var(--ink-3); border-left: 3px solid var(--accent); padding: .5rem .9rem; background: var(--surface); margin: 1rem 0 1.5rem; }
.tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tab { padding: .55rem 1rem; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink-2); font: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; }
.tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.tab-panel[hidden] { display: none; }

/* Case studies */
.case { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); text-decoration: none; color: inherit; }
.case:hover { border-color: var(--brand); color: inherit; }
@media (max-width: 760px) { .case { grid-template-columns: 1fr; } }
.case h3 { font-size: 1.3rem; }
.case .facts { display: grid; gap: .6rem; align-content: start; border-left: 1px solid var(--line); padding-left: 1.4rem; }
@media (max-width: 760px) { .case .facts { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1rem; } }
.case .facts dt { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 650; }
.case .facts dd { margin: 0 0 .3rem; font-weight: 560; }
.case-hero-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.case-hero-facts div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; }
.case-hero-facts dt { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 650; }
.case-hero-facts dd { margin: .2rem 0 0; font-weight: 600; }

/* Saved jobs & job detail extras */
.save-btn { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: .45rem .8rem; font: inherit; font-size: .85rem; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.save-btn svg { width: 16px; height: 16px; }
.save-btn.saved { border-color: var(--accent); color: var(--accent-strong); background: var(--accent-soft); }
.save-btn.saved svg { fill: currentColor; }
.job-card .save-btn { justify-self: end; }
.job-card .actions { display: flex; gap: .5rem; align-items: center; }
.similar { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.similar h2 { font-size: 1.2rem; }
.saved-bar { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; font-size: .9rem; color: var(--ink-2); }
.saved-bar .count { font-weight: 650; color: var(--ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { font-size: .8rem; padding: .3rem .7rem; border-radius: 999px; background: var(--surface-2); color: var(--ink-2); border: 1px solid transparent; cursor: pointer; font: inherit; }
.chip[aria-pressed="true"] { background: var(--brand-soft); color: var(--brand); border-color: var(--brand); }

/* Location cards */
.loc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 960px) { .loc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .loc-grid { grid-template-columns: 1fr; } }
.loc { position: relative; padding: 1.6rem; min-height: 200px; justify-content: flex-end; }
.loc .code { font-family: var(--font-mono); font-size: .75rem; color: var(--brand); letter-spacing: .08em; }
.loc h3 { font-size: 1.35rem; }

/* Site search */
.search-box { display: flex; gap: .6rem; max-width: 720px; }
.search-box input { font-size: 1.05rem; padding: .9rem 1rem; }
.search-results { display: grid; gap: .8rem; margin-top: 1.5rem; max-width: 760px; }
.result { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; text-decoration: none; color: inherit; }
.result:hover { border-color: var(--brand); color: inherit; }
.result h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.result p { font-size: .9rem; color: var(--ink-2); margin: 0; }
.result .kind { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-strong); font-weight: 650; }
mark { background: var(--accent-soft); color: inherit; padding: 0 .1em; border-radius: 2px; }

/* Comparison table */
.compare { border-collapse: collapse; width: 100%; font-size: .93rem; }
.compare th, .compare td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.compare tbody th { font-weight: 600; width: 26%; }

/* Logo / sector strip */
.sector-strip { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; align-items: center; justify-content: space-between; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-3); font-size: .85rem; }
.sector-strip span { display: inline-flex; align-items: center; gap: .5rem; }
.sector-strip span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* Reveal on scroll (visible at rest; only a lift) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: .55; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Two-tone highlight in headings */
h1 em, h2 em { font-style: normal; color: var(--brand); }
.page-hero--band { background: var(--band); border-bottom: 0; }
.page-hero--band h1, .page-hero--band .breadcrumbs a, .page-hero--band .breadcrumbs { color: #FFFFFF; }
.page-hero--band .lede { color: #CFE0D6; }
.page-hero--band .eyebrow { color: #A9DCC5; }
.page-hero--band h1 em { color: #E6B85C; }
.page-hero--band .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,.4); }
.page-hero--band .btn-outline:hover { border-color: #FFFFFF; color: #FFFFFF; }

/* Public (external) listings */
.job-card--ext { border-style: dashed; }
.job-card--ext .source { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 650; display: inline-flex; align-items: center; gap: .3rem; }
.job-card--ext .source svg { width: 12px; height: 12px; }
.job-card--ext .ext { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 600; color: var(--link); }
.job-card--ext .ext svg { width: 14px; height: 14px; }
