/* ═══════════════════════════════════════════════════════════════════════════
   Corporate Job Board — Frontend Styles
   Design direction: Refined Editorial · Slate + Emerald · Syne + DM Sans
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --cjb-slate-950: #0a0f1e;
  --cjb-slate-900: #0f172a;
  --cjb-slate-800: #1e293b;
  --cjb-slate-700: #334155;
  --cjb-slate-600: #475569;
  --cjb-slate-500: #64748b;
  --cjb-slate-400: #94a3b8;
  --cjb-slate-300: #cbd5e1;
  --cjb-slate-200: #e2e8f0;
  --cjb-slate-100: #f1f5f9;
  --cjb-slate-50:  #f8fafc;

  --cjb-emerald-700: #047857;
  --cjb-emerald-600: #059669;
  --cjb-emerald-500: #10b981;
  --cjb-emerald-400: #34d399;
  --cjb-emerald-200: #a7f3d0;
  --cjb-emerald-100: #d1fae5;
  --cjb-emerald-50:  #ecfdf5;

  --cjb-amber-500: #f59e0b;
  --cjb-amber-100: #fef3c7;
  --cjb-red-500:   #ef4444;
  --cjb-red-100:   #fee2e2;
  --cjb-blue-500:  #3b82f6;
  --cjb-blue-100:  #dbeafe;

  --cjb-font-display: 'Syne', sans-serif;
  --cjb-font-body:    'DM Sans', sans-serif;

  --cjb-radius-sm:   6px;
  --cjb-radius-md:   10px;
  --cjb-radius-lg:   16px;
  --cjb-radius-xl:   24px;
  --cjb-radius-full: 9999px;

  --cjb-shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --cjb-shadow-md:   0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  --cjb-shadow-lg:   0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  --cjb-shadow-glow: 0 0 0 3px rgba(16,185,129,.2);

  --cjb-transition: 180ms cubic-bezier(.4,0,.2,1);
}

/* ── Base ───────────────────────────────────────────────────────────────── */
.cjb-wrap *, .cjb-wrap *::before, .cjb-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.cjb-wrap {
  font-family: var(--cjb-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--cjb-slate-800);
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--cjb-radius-md);
  font-family: var(--cjb-font-display);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--cjb-transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.cjb-btn:active { transform: scale(.98); }

.cjb-btn-primary { background: var(--cjb-slate-900); color: #fff; box-shadow: var(--cjb-shadow-sm); }
.cjb-btn-primary:hover { background: var(--cjb-slate-800); box-shadow: var(--cjb-shadow-md); transform: translateY(-1px); color: #fff; text-decoration: none; }

.cjb-btn-emerald { background: var(--cjb-emerald-500); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,.35); }
.cjb-btn-emerald:hover { background: var(--cjb-emerald-600); box-shadow: 0 6px 20px rgba(16,185,129,.45); transform: translateY(-1px); color: #fff; text-decoration: none; }

.cjb-btn-outline { background: transparent; color: var(--cjb-slate-700); border: 1.5px solid var(--cjb-slate-200); }
.cjb-btn-outline:hover { background: var(--cjb-slate-50); border-color: var(--cjb-slate-400); color: var(--cjb-slate-800); text-decoration: none; }

.cjb-btn-sm  { padding: 7px 14px; font-size: 13px; }
.cjb-btn-lg  { padding: 14px 32px; font-size: 15px; }

/* ══════════════════════════════════════════════════════════════════════════
   NOTICES
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: var(--cjb-radius-md);
  font-size: 14px; line-height: 1.6; margin: 20px 0;
}
.cjb-notice-info    { background: var(--cjb-blue-100);   color: #1e3a5f; border-left: 3px solid var(--cjb-blue-500); }
.cjb-notice-success { background: var(--cjb-emerald-50); color: #064e3b; border-left: 3px solid var(--cjb-emerald-500); }
.cjb-notice-error   { background: var(--cjb-red-100);    color: #7f1d1d; border-left: 3px solid var(--cjb-red-500); }
.cjb-notice p { margin: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO SEARCH BANNER
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-hero {
  background: var(--cjb-slate-900);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(16,185,129,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(59,130,246,.1) 0%, transparent 60%);
  padding: 72px 40px 56px;
  border-radius: var(--cjb-radius-xl);
  margin-bottom: 48px;
  position: relative; overflow: hidden;
}
.cjb-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cjb-hero-content { position: relative; z-index: 1; text-align: center; }

.cjb-hero-eyebrow {
  display: inline-block;
  background: rgba(16,185,129,.15); color: var(--cjb-emerald-400);
  border: 1px solid rgba(16,185,129,.25);
  padding: 5px 14px; border-radius: var(--cjb-radius-full);
  font-family: var(--cjb-font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}

.cjb-hero h1 {
  font-family: var(--cjb-font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 14px;
}
.cjb-hero h1 span { color: var(--cjb-emerald-400); }

.cjb-hero-sub {
  color: var(--cjb-slate-400); font-size: 16px;
  margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto;
}

.cjb-hero-search {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--cjb-radius-lg);
  padding: 8px; display: flex; gap: 8px;
  max-width: 680px; margin: 0 auto; flex-wrap: wrap;
}
.cjb-hero-search input,
.cjb-hero-search select {
  flex: 1 1 180px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--cjb-radius-sm);
  padding: 11px 16px;
  font-family: var(--cjb-font-body); font-size: 14px; color: #fff; outline: none;
  transition: border-color var(--cjb-transition), background var(--cjb-transition);
}
.cjb-hero-search input::placeholder { color: var(--cjb-slate-400); }
.cjb-hero-search select option { background: var(--cjb-slate-900); color: #fff; }
.cjb-hero-search input:focus,
.cjb-hero-search select:focus { border-color: rgba(16,185,129,.5); background: rgba(255,255,255,.12); }
.cjb-hero-search .cjb-btn { flex-shrink: 0; }

.cjb-hero-stats {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 36px; flex-wrap: wrap;
}
.cjb-hero-stat { text-align: center; }
.cjb-hero-stat-num {
  display: block; font-family: var(--cjb-font-display);
  font-size: 26px; font-weight: 800; color: #fff; line-height: 1;
}
.cjb-hero-stat-label {
  font-size: 11px; color: var(--cjb-slate-400);
  letter-spacing: .06em; text-transform: uppercase; margin-top: 4px;
}
.cjb-hero-stat-divider {
  width: 1px; background: rgba(255,255,255,.1); align-self: stretch;
}

/* ══════════════════════════════════════════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-filter-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.cjb-filter-bar select {
  padding: 9px 34px 9px 14px;
  border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-full);
  font-family: var(--cjb-font-body); font-size: 13px; font-weight: 500;
  color: var(--cjb-slate-700);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none; cursor: pointer;
  transition: border-color var(--cjb-transition), box-shadow var(--cjb-transition);
}
.cjb-filter-bar select:focus {
  outline: none; border-color: var(--cjb-emerald-500); box-shadow: var(--cjb-shadow-glow);
}
.cjb-filter-remote-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-full);
  font-size: 13px; font-weight: 500; color: var(--cjb-slate-700);
  cursor: pointer; background: #fff; transition: all var(--cjb-transition); user-select: none;
}
.cjb-filter-remote-pill input { display: none; }
.cjb-filter-remote-pill.active {
  background: var(--cjb-emerald-50); border-color: var(--cjb-emerald-500); color: var(--cjb-emerald-600);
}
.cjb-filter-results-count { margin-left: auto; font-size: 13px; color: var(--cjb-slate-400); }

/* ══════════════════════════════════════════════════════════════════════════
   JOB LISTING CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-listings { display: grid; grid-template-columns: 1fr; gap: 14px; }

.cjb-job-card {
  background: #fff;
  border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  column-gap: 20px;
  row-gap: 0;
  align-items: center;
  position: relative;
  transition: all var(--cjb-transition);
  overflow: hidden;
}
.cjb-job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; transition: background var(--cjb-transition);
}
.cjb-job-card:hover { border-color: var(--cjb-slate-300); box-shadow: var(--cjb-shadow-lg); transform: translateY(-2px); }
.cjb-job-card:hover::before { background: var(--cjb-emerald-500); }
.cjb-job-card.cjb-featured { background: linear-gradient(135deg, #fffbeb 0%, #fff 70%); border-color: #fcd34d; }
.cjb-job-card.cjb-featured::before { background: var(--cjb-amber-500); }
.cjb-job-card.cjb-urgent { border-color: #fca5a5; }
.cjb-job-card.cjb-urgent::before { background: var(--cjb-red-500); }

.cjb-card-logo-wrap {
  width: 56px; height: 56px; grid-row: 1 / 3; align-self: start; margin-top: 2px;
}
.cjb-card-logo {
  width: 56px; height: 56px;
  border-radius: var(--cjb-radius-md);
  border: 1.5px solid var(--cjb-slate-200);
  object-fit: contain; padding: 7px; background: var(--cjb-slate-50);
  display: block;
}
.cjb-card-logo-placeholder {
  width: 56px; height: 56px;
  border-radius: var(--cjb-radius-md);
  border: 1.5px solid var(--cjb-slate-200);
  background: linear-gradient(135deg, var(--cjb-slate-100) 0%, var(--cjb-slate-200) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cjb-font-display); font-weight: 800; font-size: 20px;
  color: var(--cjb-slate-400); text-transform: uppercase;
}

.cjb-card-main { min-width: 0; }

.cjb-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 10px;
}

.cjb-job-title {
  font-family: var(--cjb-font-display);
  font-size: 16px; font-weight: 700; color: var(--cjb-slate-900);
  line-height: 1.3; letter-spacing: -.01em; margin-bottom: 3px;
}
.cjb-job-title a { color: inherit; text-decoration: none; transition: color var(--cjb-transition); }
.cjb-job-title a:hover { color: var(--cjb-emerald-600); }

.cjb-company-name { font-size: 13px; color: var(--cjb-slate-500); font-weight: 500; }

.cjb-badges { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.cjb-badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 9px; border-radius: var(--cjb-radius-full);
  font-family: var(--cjb-font-display); font-size: 10px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
}
.cjb-badge-featured { background: var(--cjb-amber-100); color: #92400e; }
.cjb-badge-urgent   { background: var(--cjb-red-100);   color: #991b1b; }
.cjb-badge-remote   { background: var(--cjb-emerald-100); color: #065f46; }
.cjb-badge-type     { background: var(--cjb-slate-100); color: var(--cjb-slate-600); }
.cjb-badge-new      { background: var(--cjb-blue-100);  color: #1e3a5f; }

.cjb-card-bottom {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cjb-card-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--cjb-slate-500);
}
.cjb-card-salary { font-weight: 600; color: var(--cjb-emerald-600); font-size: 13px; }

.cjb-card-action {
  grid-row: 1 / 3; display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  gap: 10px; align-self: stretch; padding-left: 8px;
}
.cjb-card-apply-btn {
  opacity: 0; transform: translateX(6px);
  transition: opacity var(--cjb-transition), transform var(--cjb-transition);
}
.cjb-job-card:hover .cjb-card-apply-btn { opacity: 1; transform: translateX(0); }
.cjb-card-posted { font-size: 12px; color: var(--cjb-slate-400); white-space: nowrap; }

/* No results */
.cjb-no-jobs {
  text-align: center; padding: 80px 32px;
  background: var(--cjb-slate-50);
  border: 2px dashed var(--cjb-slate-200);
  border-radius: var(--cjb-radius-xl);
}
.cjb-no-jobs-icon {
  width: 68px; height: 68px;
  background: var(--cjb-slate-100); border-radius: var(--cjb-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 30px;
}
.cjb-no-jobs h3 {
  font-family: var(--cjb-font-display); font-size: 20px; font-weight: 700;
  color: var(--cjb-slate-700); margin-bottom: 8px;
}
.cjb-no-jobs p { color: var(--cjb-slate-500); margin-bottom: 24px; }

/* Pagination */
.cjb-pagination { display: flex; justify-content: center; gap: 5px; margin-top: 40px; flex-wrap: wrap; }
.cjb-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: var(--cjb-radius-md);
  font-family: var(--cjb-font-display); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--cjb-slate-200); color: var(--cjb-slate-700);
  text-decoration: none; transition: all var(--cjb-transition); background: #fff;
}
.cjb-pagination .page-numbers:hover { border-color: var(--cjb-emerald-500); color: var(--cjb-emerald-600); background: var(--cjb-emerald-50); }
.cjb-pagination .page-numbers.current { background: var(--cjb-slate-900); border-color: var(--cjb-slate-900); color: #fff; }
.cjb-pagination .page-numbers.dots   { border: none; background: none; }

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE JOB
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-single-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

.cjb-single-header {
  background: var(--cjb-slate-900);
  background-image: radial-gradient(ellipse 60% 80% at 90% 40%, rgba(16,185,129,.14) 0%, transparent 70%);
  border-radius: var(--cjb-radius-xl); padding: 40px 44px;
  margin-bottom: 28px; color: #fff; grid-column: 1 / -1;
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.cjb-single-header-logo {
  width: 72px; height: 72px; border-radius: var(--cjb-radius-lg);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  object-fit: contain; padding: 8px; flex-shrink: 0;
}
.cjb-single-header-logo-placeholder {
  width: 72px; height: 72px; border-radius: var(--cjb-radius-lg);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cjb-font-display); font-size: 26px; font-weight: 800;
  color: rgba(255,255,255,.4); flex-shrink: 0;
}
.cjb-single-header-info { flex: 1; min-width: 0; }
.cjb-single-title {
  font-family: var(--cjb-font-display);
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.15; color: #fff; margin-bottom: 8px;
}
.cjb-single-company { font-size: 15px; color: var(--cjb-slate-300); margin-bottom: 20px; }

.cjb-single-meta { display: flex; flex-wrap: wrap; gap: 14px; }
.cjb-single-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--cjb-slate-400);
}
.cjb-single-salary-value { color: var(--cjb-emerald-400); font-weight: 600; }

.cjb-single-body {
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 36px 40px;
}
.cjb-single-body h2, .cjb-single-body h3 {
  font-family: var(--cjb-font-display); font-weight: 700; letter-spacing: -.01em;
  margin: 28px 0 14px; color: var(--cjb-slate-900);
}
.cjb-single-body h2:first-child, .cjb-single-body h3:first-child { margin-top: 0; }
.cjb-single-body h2 { font-size: 20px; } .cjb-single-body h3 { font-size: 17px; }
.cjb-single-body p  { margin-bottom: 16px; color: var(--cjb-slate-700); line-height: 1.75; }
.cjb-single-body ul, .cjb-single-body ol { padding-left: 22px; margin-bottom: 16px; color: var(--cjb-slate-700); }
.cjb-single-body li { margin-bottom: 7px; line-height: 1.65; }

/* Sidebar */
.cjb-single-sidebar { position: sticky; top: 24px; }
.cjb-sidebar-card {
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); overflow: hidden; margin-bottom: 18px;
}
.cjb-sidebar-card-header {
  background: var(--cjb-slate-50); border-bottom: 1.5px solid var(--cjb-slate-200);
  padding: 12px 20px;
  font-family: var(--cjb-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--cjb-slate-500);
}
.cjb-sidebar-card-body { padding: 18px 20px; }
.cjb-sidebar-detail {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--cjb-slate-100);
}
.cjb-sidebar-detail:last-child { border-bottom: none; padding-bottom: 0; }
.cjb-sidebar-detail-icon {
  width: 34px; height: 34px; background: var(--cjb-slate-100);
  border-radius: var(--cjb-radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.cjb-sidebar-detail-label {
  font-size: 10px; color: var(--cjb-slate-400); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 700; margin-bottom: 2px;
}
.cjb-sidebar-detail-value { font-size: 14px; font-weight: 500; color: var(--cjb-slate-800); }
.cjb-sidebar-apply { padding: 18px 20px; }
.cjb-sidebar-apply .cjb-btn { width: 100%; justify-content: center; }

.cjb-skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.cjb-skill-tag {
  padding: 4px 10px; background: var(--cjb-slate-100);
  color: var(--cjb-slate-700); border-radius: var(--cjb-radius-full);
  font-size: 12px; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════════
   EXPIRED NOTICE
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-expired-notice {
  display: flex; align-items: center; gap: 14px;
  background: #fff7ed; border: 1.5px solid #fed7aa;
  border-radius: var(--cjb-radius-lg); padding: 20px 24px;
  margin-bottom: 28px; grid-column: 1 / -1;
}
.cjb-expired-icon {
  width: 42px; height: 42px; background: #ffedd5;
  border-radius: var(--cjb-radius-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.cjb-expired-notice strong { display: block; color: #9a3412; font-size: 15px; }
.cjb-expired-notice span   { color: #c2410c; font-size: 13px; }

/* ══════════════════════════════════════════════════════════════════════════
   APPLICATION FORM
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-apply-section {
  margin-top: 40px; padding-top: 40px;
  border-top: 2px dashed var(--cjb-slate-200);
}
.cjb-apply-section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.cjb-apply-section-icon {
  width: 50px; height: 50px;
  background: var(--cjb-emerald-50); border: 1.5px solid var(--cjb-emerald-100);
  border-radius: var(--cjb-radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cjb-apply-section-header h3 {
  font-family: var(--cjb-font-display); font-size: 22px; font-weight: 700;
  color: var(--cjb-slate-900); margin-bottom: 2px;
}
.cjb-apply-section-header p { font-size: 14px; color: var(--cjb-slate-500); }

.cjb-application-form {
  background: var(--cjb-slate-50); border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-xl); padding: 36px 40px; max-width: 720px;
}
.cjb-form-section {
  padding: 24px 0; border-bottom: 1px solid var(--cjb-slate-200);
}
.cjb-form-section:first-child { padding-top: 0; }
.cjb-form-section:last-child  { border-bottom: none; padding-bottom: 0; }
.cjb-form-section-title {
  font-family: var(--cjb-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cjb-slate-500);
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.cjb-form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--cjb-slate-200); }
.cjb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cjb-form-grid.cjb-full { grid-template-columns: 1fr; }
.cjb-form-field { display: flex; flex-direction: column; gap: 6px; }
.cjb-form-field.cjb-span-2 { grid-column: 1 / -1; }
.cjb-form-label { font-size: 13px; font-weight: 600; color: var(--cjb-slate-700); }
.cjb-form-label .required { color: var(--cjb-red-500); margin-left: 2px; }

.cjb-form-input, .cjb-form-select, .cjb-form-textarea {
  width: 100%; padding: 11px 14px;
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-md);
  font-family: var(--cjb-font-body); font-size: 14px; color: var(--cjb-slate-800);
  transition: border-color var(--cjb-transition), box-shadow var(--cjb-transition);
  outline: none; -webkit-appearance: none;
}
.cjb-form-input:focus, .cjb-form-select:focus, .cjb-form-textarea:focus {
  border-color: var(--cjb-emerald-500); box-shadow: var(--cjb-shadow-glow);
}
.cjb-form-input::placeholder, .cjb-form-textarea::placeholder { color: var(--cjb-slate-400); }
.cjb-form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.cjb-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394a3b8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.cjb-field-hint { font-size: 12px; color: var(--cjb-slate-400); }

.cjb-file-upload {
  border: 2px dashed var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 30px;
  text-align: center; cursor: pointer;
  transition: all var(--cjb-transition); background: #fff; position: relative;
}
.cjb-file-upload:hover { border-color: var(--cjb-emerald-400); background: var(--cjb-emerald-50); }
.cjb-file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.cjb-file-upload-icon {
  width: 46px; height: 46px; background: var(--cjb-slate-100);
  border-radius: var(--cjb-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 20px;
}
.cjb-file-upload-text { font-size: 14px; font-weight: 500; color: var(--cjb-slate-700); margin-bottom: 4px; }
.cjb-file-upload small { font-size: 12px; color: var(--cjb-slate-400); }

.cjb-file-selected {
  display: none; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--cjb-emerald-50);
  border: 1.5px solid var(--cjb-emerald-200); border-radius: var(--cjb-radius-md);
  margin-top: 10px; font-size: 13px; color: var(--cjb-emerald-700); font-weight: 500;
}

.cjb-form-submit { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.cjb-form-submit-note { font-size: 12px; color: var(--cjb-slate-400); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════════════
   DASHBOARDS
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-dashboard { max-width: 900px; }
.cjb-dashboard-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
  padding-bottom: 24px; border-bottom: 2px solid var(--cjb-slate-100);
}
.cjb-dashboard-title {
  font-family: var(--cjb-font-display); font-size: 26px; font-weight: 800;
  color: var(--cjb-slate-900); letter-spacing: -.025em;
}
.cjb-dashboard-subtitle { font-size: 14px; color: var(--cjb-slate-500); margin-top: 4px; }

.cjb-stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 32px; }
.cjb-stat-card {
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 20px 22px;
}
.cjb-stat-card-num {
  font-family: var(--cjb-font-display); font-size: 34px; font-weight: 800;
  color: var(--cjb-slate-900); line-height: 1; margin-bottom: 5px;
}
.cjb-stat-card-label { font-size: 13px; color: var(--cjb-slate-500); font-weight: 500; }

.cjb-app-list { display: flex; flex-direction: column; gap: 10px; }
.cjb-app-row {
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; transition: all var(--cjb-transition);
}
.cjb-app-row:hover { border-color: var(--cjb-slate-300); box-shadow: var(--cjb-shadow-md); }
.cjb-app-job-title { font-family: var(--cjb-font-display); font-size: 15px; font-weight: 700; color: var(--cjb-slate-900); margin-bottom: 4px; }
.cjb-app-job-title a { color: inherit; text-decoration: none; }
.cjb-app-job-title a:hover { color: var(--cjb-emerald-600); }
.cjb-app-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.cjb-app-meta-item { font-size: 12px; color: var(--cjb-slate-400); }

.cjb-status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--cjb-radius-full);
  font-family: var(--cjb-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .04em; color: #fff; white-space: nowrap;
}

.cjb-emp-job-list { display: flex; flex-direction: column; gap: 10px; }
.cjb-emp-job-row {
  background: #fff; border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  transition: all var(--cjb-transition);
}
.cjb-emp-job-row:hover { border-color: var(--cjb-slate-300); box-shadow: var(--cjb-shadow-md); }
.cjb-emp-job-info { flex: 1; min-width: 0; }
.cjb-emp-job-title { font-family: var(--cjb-font-display); font-size: 15px; font-weight: 700; color: var(--cjb-slate-900); margin-bottom: 5px; }
.cjb-emp-job-title a { color: inherit; text-decoration: none; }
.cjb-emp-job-title a:hover { color: var(--cjb-emerald-600); }
.cjb-emp-job-meta { display: flex; gap: 14px; font-size: 13px; color: var(--cjb-slate-400); flex-wrap: wrap; }

.cjb-emp-apps {
  text-align: center; background: var(--cjb-slate-50); border: 1.5px solid var(--cjb-slate-200);
  border-radius: var(--cjb-radius-lg); padding: 12px 18px; min-width: 86px;
}
.cjb-emp-apps-num {
  display: block; font-family: var(--cjb-font-display);
  font-size: 28px; font-weight: 800; color: var(--cjb-emerald-600); line-height: 1;
}
.cjb-emp-apps-label { font-size: 10px; color: var(--cjb-slate-400); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* ══════════════════════════════════════════════════════════════════════════
   POST A JOB
   ══════════════════════════════════════════════════════════════════════════ */
.cjb-post-job-wrap { max-width: 780px; }
.cjb-post-job-form .cjb-form-section h3 {
  font-family: var(--cjb-font-display); font-size: 17px; font-weight: 700;
  color: var(--cjb-slate-900); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1.5px solid var(--cjb-slate-200);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cjb-hero { padding: 48px 24px 36px; }
  .cjb-hero-search { flex-direction: column; }
  .cjb-hero-search input, .cjb-hero-search select { flex: 1 1 100%; }
  .cjb-single-wrap { grid-template-columns: 1fr; }
  .cjb-single-sidebar { position: static; }
  .cjb-single-header { padding: 28px 24px; }
  .cjb-application-form { padding: 24px 20px; }
  .cjb-form-grid { grid-template-columns: 1fr; }
  .cjb-job-card { grid-template-columns: 56px 1fr; }
  .cjb-card-action {
    grid-column: 1 / -1; flex-direction: row;
    justify-content: space-between; align-items: center;
    margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--cjb-slate-100);
  }
  .cjb-card-apply-btn { opacity: 1; transform: none; }
  .cjb-hero-stat-divider { display: none; }
}
@media (max-width: 480px) {
  .cjb-hero h1 { font-size: 26px; }
  .cjb-emp-job-row { flex-direction: column; align-items: flex-start; }
}
