/* ══════════════════════════════════════════════════
   JOB DETAIL – clean, modern, editorial
   Kein Sidebar, kein "Weitere Stellen", unten CTA-Block
   ══════════════════════════════════════════════════ */

.job-hero {
  padding-top: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.job-hero-inner {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
}
.breadcrumb {
  display: flex; align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--gray-300); }

.job-hero-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
}
.job-category-tag {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-50);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--blue-100);
}
.job-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 28px;
  max-width: 820px;
}
.job-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px 40px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.job-hero-meta-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.job-hero-meta-val {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}

.job-hero-cta {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.job-hero-cta-label {
  font-size: 13px;
  color: var(--blue);
}
.job-hero-cta-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.job-hero-cta .btn { width: 100%; }

/* BODY – einspaltig, zentriert, keine Sidebar mehr */
.job-body {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}
.job-body-main {
  max-width: 820px;
  margin: 0 auto;
}
.job-section { margin-bottom: 56px; }
.job-section:last-child { margin-bottom: 0; }
.job-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.job-section p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.job-section p:last-child { margin-bottom: 0; }
.job-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.job-list li {
  display: flex; align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.job-list li:last-child { border-bottom: none; }
.job-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

/* APPLY CTA – ganz unten, weiß mit blauen Buttons */
.job-cta {
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.job-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}
.job-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 80px;
  height: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  border-radius: 0 0 3px 3px;
}
.job-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 20px;
}
.job-cta-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.job-cta h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.job-cta p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px;
}
.job-cta-actions {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.job-cta-contact {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-500);
}
.job-cta-contact a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.job-cta-contact a:hover {
  text-decoration: underline;
}
.job-cta-contact svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .job-hero-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .job-hero-meta { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .job-hero-cta { padding: 24px; }
  .job-cta-actions .btn { width: 100%; }
}
