.job-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}

.job-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin: 0 0 12px;
}

.job-hero p {
  margin: 0;
  color: #CBD5E1;
  font-size: 16px;
}

.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.job-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.job-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.job-card-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}

.job-card-title a {
  color: #0F172A;
  text-decoration: none;
}

.job-card-title a:hover {
  color: #2563EB;
}

.job-card-org a {
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
}

.job-card-summary {
  font-size: 14px;
  color: #64748B;
  margin: 10px 0;
  line-height: 1.5;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: #94A3B8;
}

.job-section {
  margin-bottom: 48px;
}

.job-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding: 32px 0 80px;
}

@media (max-width: 900px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
  }
}

.job-panel {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.job-panel h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #0F172A;
}

.job-cta-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 88px;
}

.job-cta-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.job-cta-card .btn-outline {
  width: 100%;
  justify-content: center;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.org-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  text-decoration: none;
  color: #0F172A;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s;
}

.org-chip:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.job-filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.job-filter-form input,
.job-filter-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
}

.job-rich-text p {
  margin: 0 0 0.75em;
}

.job-rich-text p:last-child {
  margin-bottom: 0;
}

.job-rich-text ul,
.job-rich-text ol {
  margin: 0 0 0.75em 1.25em;
  padding: 0;
}

.job-rich-text li {
  margin-bottom: 0.35em;
}

.job-rich-text a {
  color: #2563EB;
  text-decoration: underline;
}
