.jobs-page {
  padding: 24px 16px;
  background: #f3f6fb;
  min-height: 100vh;
}

.jobs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jobs-header {
  text-align: center;
  margin-bottom: 32px;
}

.jobs-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 10px;
  color: #111827;
  font-weight: 900;
}

.jobs-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

.filter-bar {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  margin-bottom: 28px;
}

.filter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-form input,
.filter-form select,
.filter-form button {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
}

.filter-form input {
  flex: 1;
  min-width: 220px;
}

.filter-form button {
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-form button:hover {
  background: #1d4ed8;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.job-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.job-card h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: #111827;
  font-weight: 800;
}

.job-org {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 14px;
}

.job-details {
  background: #f9fafb;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.detail-item {
  font-size: 14px;
  margin: 6px 0;
  color: #374151;
}

.job-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.job-actions {
  display: flex;
  gap: 10px;
}

.btn-apply,
.btn-notification {
  flex: 1;
  text-align: center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-apply {
  background: #2563eb;
  color: #fff;
}

.btn-apply:hover {
  background: #1d4ed8;
}

.btn-notification {
  background: #111827;
  color: #fff;
}

.btn-notification:hover {
  background: #1f2937;
}

.no-jobs {
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .filter-form {
    flex-direction: column;
  }

  .filter-form input,
  .filter-form select,
  .filter-form button {
    width: 100%;
  }
}