.jobs-hero {
  width: 100%;
  background:
    radial-gradient(circle at 85% 30%, rgba(47, 128, 255, 0.35), transparent 28%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-navy));
  color: var(--text-light);
  padding: 160px 24px 90px;
}

.jobs-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.jobs-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.jobs-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.jobs-section {
  padding: 70px 24px 90px;
  background: var(--bg-soft);
}

.jobs-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.jobs-toolbar h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.jobs-toolbar p {
  color: var(--text-muted);
  font-weight: 700;
}

.jobs-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.jobs-filters input,
.jobs-filters select {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  color: var(--text-main);
  padding: 0 16px;
  font-weight: 700;
  outline: none;
  min-width: 180px;
}

.jobs-filters input:focus,
.jobs-filters select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 128, 255, 0.12);
}

.jobs-filters button {
  height: 48px;
  border: none;
  border-radius: 14px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
}

.jobs-list {
  display: grid;
  gap: 18px;
}

.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  transition: 0.2s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 128, 255, 0.35);
}

.job-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.job-card p {
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 12px;
}

.job-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.job-card strong {
  color: var(--blue);
  white-space: nowrap;
  align-self: center;
}

.empty-jobs {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 50px;
  text-align: center;
}

.empty-jobs p {
  color: var(--text-muted);
}

@media (max-width: 850px) {
  .jobs-toolbar,
  .job-card,
  .jobs-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .jobs-filters input,
  .jobs-filters select {
    width: 100%;
  }

  .job-card strong {
    align-self: flex-start;
  }
}