/* =========================================================
   Teloro — Karriere
   ========================================================= */

.footer-col a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* ---------- Hero ---------- */

.career-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.career-hero-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.career-hero-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}

@media (max-width: 980px) {
  .career-hero-actions {
    justify-content: center;
  }
}

/* ---------- Arbeitsweise: principles ---------- */

.career-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
  margin-top: 48px;
  counter-reset: none;
}

.career-principle {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.career-principle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.career-principle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 650;
}

.career-principle h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.career-principle p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.career-benefits-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-top: 88px;
}

.career-benefits-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.career-benefits-copy > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .career-principles {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .career-benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
  }
}

@media (max-width: 560px) {
  .career-benefits-layout .integrations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Offene Stellen ---------- */

.job-list {
  max-width: 780px;
  margin: 0 auto;
}

.job-item {
  border-bottom: 1px solid var(--line);
}

.job-item:last-child {
  border-bottom: none;
}

.job-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  cursor: pointer;
}

.job-q-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.job-q-head h3 {
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.job-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.job-ic svg {
  width: 9px;
  height: 6px;
  transition: transform 0.2s ease;
}

.job-item.is-open .job-ic {
  border-color: var(--ink);
  color: var(--ink);
}

.job-item.is-open .job-ic svg {
  transform: rotate(180deg);
}

.job-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.job-item.is-open .job-body {
  max-height: 720px;
}

.job-body-inner {
  padding: 0 4px 30px;
  max-width: 620px;
}

.job-body-inner > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.job-salary {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: -6px 0 20px;
  font-size: 0.86rem;
  color: var(--ink);
}

.job-salary strong {
  font-weight: 650;
}

.job-requirements-label {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 10px;
}

.job-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.job-requirements li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  color: var(--body);
  line-height: 1.55;
}

.job-requirements li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 1px;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--ink);
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.job-apply:hover {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.career-contact-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.86rem;
  color: var(--muted);
}

.career-contact-note a {
  color: var(--cta-blue);
  font-weight: 600;
  text-decoration: none;
}

.career-contact-note a:hover {
  color: var(--cta-blue-dark);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .job-q {
    padding-block: 20px;
    gap: 12px;
  }

  .job-q-head h3 {
    font-size: 0.94rem;
  }

  .job-body-inner {
    padding-bottom: 24px;
  }
}
