.jobs-hero { padding-bottom: 28px; }
.jobs-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
}
.jobs-access {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 18px;
  display: grid;
  gap: 8px;
}
.jobs-access span { color: var(--subtle); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.jobs-access strong { font-size: 1.6rem; color: var(--gold); }
.jobs-access a { color: var(--text); font-weight: 900; border-bottom: 2px solid var(--red-bright); width: fit-content; }

.jobs-board { padding-top: 10px; }
.jobs-controls {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 16px;
}
.jobs-kind { display: grid; gap: 6px; color: var(--muted); font-size: 0.82rem; font-weight: 800; }
.jobs-kind select,
.jobs-controls input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
}
.jobs-controls input:focus,
.jobs-kind select:focus { border-color: var(--gold); outline: none; }
.jobs-summary { margin: 16px 0 10px; color: var(--subtle); font-size: 0.9rem; font-weight: 800; }
.jobs-list { display: grid; gap: 18px; }
.job-city {
  margin: 20px 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.job-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.job-card.is-locked { opacity: 0.78; }
.job-head { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.job-head h3 { margin: 0; font-size: 1.25rem; }
.job-company { color: var(--muted); margin: 4px 0 0; }
.job-schedule { color: var(--gold); font-weight: 900; }
.job-desc { color: var(--muted); line-height: 1.7; margin: 0; }
.job-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.job-cols h4 { margin: 0 0 8px; font-size: 0.82rem; color: var(--subtle); text-transform: uppercase; letter-spacing: 0.06em; }
.job-cols ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }
.job-tags, .job-files { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}
.job-files a, .job-lock a {
  color: var(--text);
  font-weight: 900;
  border-bottom: 2px solid var(--red-bright);
}
.job-lock {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 820px) {
  .jobs-hero__inner,
  .jobs-controls,
  .job-cols { grid-template-columns: 1fr; }
}
