/* ==========================================================================
   Karriere
   ========================================================================== */

/* --- Hero ---------------------------------------------------------------- */
.ca-hero { position: relative; background: transparent; }
.ca-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.ca-hero__title { display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }
.ca-hero__title .h1 { white-space: nowrap; }
.ca-hero__claim {
  font-weight: 600;
  font-size: clamp(18px, 1.53vw, 22px);
  line-height: 1.4;
  width: 720px;
  max-width: 100%;
}
.ca-hero__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  width: 800px;
  max-width: 100%;
}
.ca-hero__actions { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.ca-hero__glow {
  left: 84%;
  top: 140px;
  width: 620px;
  height: 700px;
  opacity: .85;
  --glow-rot: -18deg;
  --glow-dur: 25s;
  --glow-delay: -3s;
}

.ca-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 32px;
  text-align: left;
}
.ca-stat {
  background: var(--blue-very-light);
  box-shadow: inset 0 0 0 1px var(--blue-medium);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.ca-stat strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 3.05vw, 44px);
  line-height: 1;
  color: var(--blue-main);
}
.ca-stat span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: var(--text-body);
}

@media (max-width: 900px) {
  .ca-hero__title { gap: 8px; }
  .ca-hero__title .h1 { white-space: normal; }
  .ca-hero__inner { padding-block: 48px 56px; }
  .ca-hero__actions { width: 100%; max-width: 320px; flex-direction: column; gap: 16px; }
  .ca-hero__stats { grid-template-columns: 1fr; }
}

/* --- Warum Lector AI? ---------------------------------------------------- */
.ca-why { background: var(--blue-dark-2); color: var(--white); position: relative; }
.ca-why__inner { padding-block: 80px; }
.ca-why__lead { width: 720px; max-width: 100%; }
.ca-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ca-perk {
  background: var(--white);
  color: var(--black);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.ca-perk p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
}
@media (max-width: 980px) { .ca-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .ca-why__inner { padding-block: 56px; }
  .ca-why__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .ca-perk { padding: 20px; }
}

/* --- Team-Teaser --------------------------------------------------------- */
.ca-team { position: relative; background: transparent; }
.ca-team__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ca-team__copy { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.ca-team__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
}
.ca-facts { display: flex; flex-wrap: wrap; gap: 12px; }
.ca-facts .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding-inline: 16px;
  border-radius: 100px;
  background: var(--blue-very-light);
  box-shadow: inset 0 0 0 1px var(--blue-medium);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--blue-dark);
  white-space: nowrap;
}
.ca-facts .chip img { width: 16px; height: 16px; flex: none; }
.ca-team__copy .btn { margin-top: 8px; }
.ca-team__photo {
  border-radius: 24px;
  overflow: hidden;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
}
.ca-team__photo img { width: 100%; height: 420px; object-fit: cover; object-position: center 65%; }
.ca-team__glow {
  left: 14%;
  top: 320px;
  width: 727.5px;
  height: 818.2px;
  --glow-scale: .8;
  --glow-rot: 150deg;
  --glow-dur: 34s;
  --glow-delay: -16s;
}
@media (max-width: 980px) {
  .ca-team__inner { grid-template-columns: 1fr; gap: 32px; padding-block: 56px; }
  .ca-team__photo img { height: 260px; }
}

/* --- Offene Stellen ------------------------------------------------------ */
.ca-jobs { position: relative; background: transparent; scroll-margin-top: calc(var(--nav-h) + 16px); }
.ca-jobs__inner { position: relative; z-index: 1; padding-block: 80px; }
.ca-jobs__list { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.ca-job {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  border-radius: 16px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, .25));
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.ca-job:hover {
  background: var(--blue-very-light);
  box-shadow: inset 0 0 0 1px var(--blue-main);
  transform: translateY(-2px);
}
.ca-job__main { display: flex; flex-direction: column; gap: 6px; }
.ca-job__dept {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-main);
}
.ca-job__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 1.67vw, 24px);
  line-height: normal;
}
.ca-job__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 4px; }
.ca-job__meta span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
  color: var(--text-body);
}
/* thin separators between the meta chips */
.ca-job__meta span + span { display: flex; align-items: center; gap: 12px; }
.ca-job__meta span + span::before {
  content: "";
  width: 1px;
  height: 12px;
  background: rgba(0, 0, 0, .2);
}
.ca-job__go {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 1000px;
  background: var(--blue-main);
  transition: transform .18s ease;
}
.ca-job__go img { width: 20px; height: 20px; }
.ca-job:hover .ca-job__go { transform: translateX(4px); }
.ca-jobs__cta { display: flex; justify-content: center; margin-top: 40px; }
.ca-jobs__glow {
  left: 86%;
  top: 260px;
  width: 727.5px;
  height: 818.2px;
  --glow-rot: 30deg;
  --glow-flip-y: -1;
  --glow-dur: 28s;
  --glow-delay: -9s;
}
@media (max-width: 700px) {
  .ca-jobs__inner { padding-block: 56px; }
  .ca-jobs__list { margin-top: 32px; }
  .ca-job { padding: 20px; gap: 16px; }
  .ca-job__meta { gap: 4px 10px; }
  .ca-jobs__cta .btn { width: 100%; }
}
