/* ═══════════════════════════════════════════════════════════════════════════
   PTF Karriere – Komponenten. Basis (Farben, Fonts, Header, Buttons, Reveal)
   kommt unverändert aus main.css der Hauptwebsite.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-base: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 1rem;
}

.container--narrow { max-width: 820px; margin-inline: auto; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ─── Logo mit Standort-Zeile ─────────────────────────────────────────────── */
.brand-logo__site {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  height: auto;
}
.brand-logo__site img { display: block; height: 30px; width: auto; max-width: 220px; object-fit: contain; object-position: left; }
.brand-logo--site .brand-logo__site { justify-content: center; }
.brand-logo--site .brand-logo__wordmark { height: 38px; max-width: 240px; }
.brand-logo__sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Header: Link zurück zur PTF Group ───────────────────────────────────── */
.k-header-back {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  opacity: 0;
  animation: navItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
.k-header-back .btn-icon { width: 0.95em; height: 0.95em; }
.nav-overlay__back { margin-top: 2.5rem; }
.k-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.k-back-link .lucide { width: 18px; height: 18px; }
.k-back-link--overlay { font-size: 1.05rem; }

/* ─── Typografie ──────────────────────────────────────────────────────────── */
.section-head { max-width: 760px; margin-bottom: 2.2rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head .eyebrow { color: var(--brand-light); }
.section-head .section-sub { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; }
.k-page h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 1.5rem; }

.k-prose { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; }
.k-prose > :first-child { margin-top: 0; }
.k-prose > :last-child { margin-bottom: 0; }
.k-prose p { margin: 0 0 1.1rem; }
.k-prose strong { color: var(--text-base); font-weight: 600; }
.k-prose a { color: var(--brand-light); text-decoration: underline; text-underline-offset: 3px; }
.k-prose h3, .k-prose h4 { color: var(--text-base); margin: 1.6rem 0 0.6rem; line-height: 1.25; }
.k-prose h3 { font-size: 1.3rem; }
.k-prose h4 { font-size: 1.05rem; }
.k-prose ul, .k-prose ol { padding-left: 1.3rem; margin: 0 0 1.1rem; }
.k-prose li { margin: 0 0 0.4rem; }
.k-prose ul li::marker { color: var(--brand-light); }
.k-prose--lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.7; }
.k-prose--wide { max-width: 820px; margin-bottom: 2.5rem; }
.k-content--center .k-prose { text-align: center; }
.k-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.k-actions--center { justify-content: center; }
.k-empty { color: var(--text-muted); text-align: center; padding: 2rem 0; }

/* ─── Pills, Icons, Buttons ───────────────────────────────────────────────── */
.k-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-base);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.k-pill .lucide { width: 13px; height: 13px; }
.k-pill--job { color: var(--brand-light); background: rgba(21, 186, 230, 0.12); border-color: rgba(21, 186, 230, 0.3); }
.k-pill--training { color: var(--brand-orange); background: rgba(240, 131, 60, 0.12); border-color: rgba(240, 131, 60, 0.3); }

.k-nav-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-base);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
.k-nav-btn .lucide { width: 20px; height: 20px; }
.k-nav-btn:hover:not(:disabled), .k-nav-btn:focus-visible:not(:disabled) {
  border-color: var(--brand-light);
  background: rgba(21, 186, 230, 0.12);
  color: var(--brand-light);
}
.k-nav-btn:disabled { opacity: 0.3; cursor: default; }
button.btn { cursor: pointer; font: inherit; }

/* ─── Videobühne (Hero) ───────────────────────────────────────────────────── */
.k-stage {
  position: relative;
  overflow: hidden;
  background: #03060b;
}
.k-stage video, .k-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.k-stage--hero { height: min(82svh, 820px); min-height: 460px; }
.k-stage--band { height: clamp(260px, 42vw, 520px); }
.k-stage__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 11, 0.55) 0%, rgba(3, 6, 11, 0.1) 35%, rgba(3, 6, 11, 0.15) 70%, #03060b 100%),
    linear-gradient(90deg, rgba(3, 6, 11, 0.5) 0%, transparent 55%);
}
.k-stage--band .k-stage__fade { background: linear-gradient(180deg, #03060b 0%, rgba(3, 6, 11, 0.15) 30%, rgba(3, 6, 11, 0.15) 70%, #03060b 100%); }
.k-stage__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.2rem;
  padding-bottom: 3rem;
}
.k-stage__kicker {
  margin: 0;
  color: var(--brand-light);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.k-stage__scroll {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 15, 0.4);
  backdrop-filter: blur(6px);
  animation: kBounce 2.4s ease-in-out infinite;
}
.k-stage__scroll .lucide { width: 20px; height: 20px; }
@keyframes kBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─── Bild-/Videoband mit Headline ────────────────────────────────────────── */
.k-band {
  position: relative;
  height: clamp(320px, 48vw, 600px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.k-band video, .k-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.k-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #03060b 0%, rgba(3, 6, 11, 0.35) 25%, rgba(3, 6, 11, 0.45) 75%, #03060b 100%);
}
.k-band__inner { position: relative; z-index: 1; }
.k-band__headline {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ─── Split: Video + Text ─────────────────────────────────────────────────── */
.k-split__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.k-split__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}
.k-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 186, 230, 0.12), transparent 50%);
  pointer-events: none;
}
.k-split__media video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Einstiegs-Karten ────────────────────────────────────────────────────── */
.k-entry__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.k-entry-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.k-entry-card:hover { transform: translateY(-4px); border-color: rgba(21, 186, 230, 0.35); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35); }
.k-entry-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.k-entry-card__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-entry-card__body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.k-entry-card__body h3 { margin: 0; font-size: 1.45rem; line-height: 1.2; }
.k-entry-card__body .k-actions { margin-top: auto; padding-top: 0.6rem; }
.k-entry-card__icon,
.k-panel__icon,
.k-fact-item__icon,
.k-tile__icon,
.k-contact-card__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(21, 186, 230, 0.08);
  border: 1px solid rgba(21, 186, 230, 0.2);
  color: var(--brand-light);
  flex-shrink: 0;
}
.k-entry-card__icon .lucide, .k-panel__icon .lucide, .k-fact-item__icon .lucide, .k-tile__icon .lucide { width: 22px; height: 22px; stroke-width: 1.75; }

/* ─── Slider (Stellen, Stimmen) ───────────────────────────────────────────── */
.k-slider { position: relative; }
.k-slider__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.3rem 0.3rem 1rem;
  margin: -0.3rem -0.3rem 0;
  scrollbar-width: none;
}
.k-slider__track::-webkit-scrollbar { display: none; }
.k-slider__item {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  display: flex;
}
.k-slider__item > * { width: 100%; }
.k-slider__item--media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.k-slider__item--media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-slider--single .k-slider__item { flex-basis: 100%; }
.k-slider__nav { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 0.4rem; }

/* ─── Stellen-Karte ───────────────────────────────────────────────────────── */
.k-job-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.k-job-card:hover { transform: translateY(-4px); border-color: rgba(21, 186, 230, 0.4); background: rgba(21, 186, 230, 0.05); }
.k-job-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.k-job-card h3 { margin: 0.2rem 0 0; font-size: 1.15rem; line-height: 1.3; }
.k-job-card h3 a { color: var(--text-base); }
.k-job-card__start { margin: 0; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-muted); font-size: 0.86rem; }
.k-job-card__start .lucide { width: 14px; height: 14px; }
.k-job-card__cta {
  margin-top: auto;
  padding-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.92rem;
}
.k-job-card__cta .lucide { width: 16px; height: 16px; transition: transform 0.25s ease; }
.k-job-card:hover .k-job-card__cta .lucide { transform: translateX(4px); }
.js .k-job-card.is-hidden-more, .k-job-card.is-filtered { display: none; }
.k-filter, [data-job-more-wrap] { display: none; }
.js .k-filter { display: flex; }
.js [data-job-more-wrap]:not([hidden]) { display: flex; }

/* ─── Alle Stellen: Filter + Raster ───────────────────────────────────────── */
.k-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: -0.6rem 0 2rem; }
.k-filter__btn {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.k-filter__btn:hover, .k-filter__btn:focus-visible { color: var(--text-base); border-color: rgba(255, 255, 255, 0.3); }
.k-filter__btn.is-active { background: var(--brand-blue); border-color: rgba(21, 186, 230, 0.4); color: #fff; }
.k-jobs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.k-jobs__grid .k-empty { grid-column: 1 / -1; }

/* ─── Stimmen ─────────────────────────────────────────────────────────────── */
.k-quote {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.k-quote__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.k-quote__body { position: relative; padding: 2.2rem 2.2rem 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.k-quote__mark { color: var(--brand-light); opacity: 0.7; }
.k-quote__mark .lucide { width: 28px; height: 28px; }
.k-quote blockquote { margin: 0; font-size: 1.15rem; line-height: 1.65; color: var(--text-base); }
.k-quote figcaption { display: flex; flex-direction: column; gap: 0.15rem; color: var(--text-muted); font-size: 0.92rem; }
.k-quote figcaption strong { color: var(--brand-light); }

/* ─── Bewerbungsprozess ───────────────────────────────────────────────────── */
.k-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.k-step {
  position: relative;
  padding: 0 1rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition-delay: calc(var(--i) * 0.08s);
}
.k-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 48px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 186, 230, 0.6), rgba(255, 255, 255, 0.12));
}
.k-step:last-child::before { display: none; }
.k-step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background: var(--brand-blue);
  border: 1px solid rgba(21, 186, 230, 0.4);
  box-shadow: 0 0 0 6px rgba(21, 186, 230, 0.08);
}
.k-step__label { font-weight: 600; line-height: 1.35; padding-right: 0.5rem; }

/* ─── Standort: Städte ────────────────────────────────────────────────────── */
.k-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
.k-city { display: flex; flex-direction: column; gap: 0.9rem; }
.k-city__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #0a0d14;
}
.k-city--home .k-city__media { aspect-ratio: 4 / 3; border-color: rgba(21, 186, 230, 0.35); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
.k-city__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.k-city:hover .k-city__media img { transform: scale(1.04); }
.k-city__distance {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(5, 8, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.k-city__distance .lucide { width: 14px; height: 14px; }
.k-city__distance--home { background: var(--brand-blue); border-color: rgba(21, 186, 230, 0.4); }
.k-city__text { font-size: 0.95rem; }
.k-city__text p:first-child strong { color: var(--text-base); font-size: 1.05rem; }

/* ─── PTF Group: Karte + Pins ─────────────────────────────────────────────── */
.k-map { position: relative; margin: 1rem 0 2.5rem; }
.k-map__svg svg { width: 100%; height: auto; display: block; }
.k-map .map-shadow { fill: rgba(21, 186, 230, 0.1); }
.k-map .map-land { fill: rgba(255, 255, 255, 0.12); }
.k-pin { position: absolute; left: var(--x); top: var(--y); width: 18px; height: 18px; transform: translate(-50%, -50%); }
.k-pin__dot {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(21, 186, 230, 0.2);
}
.k-pin__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(21, 186, 230, 0.6);
  animation: kPulse 2.2s ease-out infinite;
}
.k-pin.is-active .k-pin__dot { background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(240, 131, 60, 0.25); }
.k-pin.is-active .k-pin__dot::after { border-color: rgba(240, 131, 60, 0.6); }
@keyframes kPulse { 0% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
.k-pin__card {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 280px;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: rgba(7, 23, 35, 0.92);
  border: 1px solid rgba(21, 186, 230, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 3;
}
.k-pin__card strong { display: block; color: var(--text-base); margin-top: 0.5rem; }
.k-pin__card strong:first-child { margin-top: 0; }
.k-pin__card small { display: block; font-size: inherit; }
.k-pin.is-active .k-pin__card, .k-pin:hover .k-pin__card, .k-pin:focus-within .k-pin__card { opacity: 1; visibility: visible; }
.k-pin[data-pin="china"] .k-pin__card { left: auto; right: 0; transform: none; }

.k-facts { display: grid; grid-template-columns: 1fr 1.3fr 1.3fr; grid-auto-rows: minmax(150px, auto); gap: 1rem; }
.k-fact {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.6rem;
  overflow: hidden;
}
.k-fact--num { display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; }
.k-fact--col1 { grid-column: 1; }
.k-fact__value { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--brand-light); }
.k-fact__label { color: var(--text-muted); font-weight: 600; }
.k-fact--image { padding: 0; grid-column: span 2; max-height: 340px; background: #eef4fa; }
.k-fact--image img { width: 100%; height: 100%; max-height: 340px; object-fit: cover; object-position: center; display: block; }
.k-fact--list { grid-row: span 3; color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }
.k-fact--list h4 { margin: 0 0 0.5rem; color: var(--text-base); font-size: 1rem; }
.k-fact--list h4 + p { margin-top: 0; }
.k-fact--list ul { padding-left: 1.1rem; margin: 0 0 1.2rem; }
.k-fact--list ul:last-child { margin-bottom: 0; }
.k-fact--list li::marker { color: var(--brand-light); }
.k-fact--tone { background: linear-gradient(160deg, rgba(19, 100, 174, 0.35), rgba(21, 186, 230, 0.08)); border-color: rgba(21, 186, 230, 0.3); }

/* ─── Benefits: Bento-Raster ──────────────────────────────────────────────── */
.k-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  grid-auto-flow: dense;
  gap: 0.9rem;
  margin-bottom: 3.5rem;
}
.k-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.k-tile:hover { transform: translateY(-3px); border-color: rgba(21, 186, 230, 0.35); }
.k-tile--wide { grid-column: span 2; }
.k-tile--tall { grid-row: span 2; }
.k-tile--big { grid-column: span 2; grid-row: span 2; }
.k-tile--primary { background: linear-gradient(160deg, #1364ae, #0f4c86); border-color: rgba(21, 186, 230, 0.4); }
.k-tile--accent { background: linear-gradient(160deg, rgba(240, 131, 60, 0.9), rgba(240, 131, 60, 0.6)); border-color: rgba(240, 131, 60, 0.5); }
.k-tile--accent .k-tile__icon, .k-tile--primary .k-tile__icon { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.k-tile--accent .k-tile__text small, .k-tile--primary .k-tile__text small { color: rgba(255, 255, 255, 0.8); }
.k-tile--image { justify-content: flex-end; padding: 1.2rem; }
.k-tile--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.k-tile--image:hover img { transform: scale(1.05); }
.k-tile--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 11, 0.05) 30%, rgba(3, 6, 11, 0.85) 100%);
}
.k-tile__icon { width: 40px; height: 40px; border-radius: 12px; }
.k-tile__icon .lucide { width: 20px; height: 20px; }
.k-tile__text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.k-tile__title { font-weight: 700; font-size: 1.02rem; line-height: 1.25; letter-spacing: -0.01em; text-wrap: balance; }
.k-tile__text small { color: var(--text-muted); font-size: 0.8rem; line-height: 1.35; }
.k-tile--big .k-tile__title, .k-tile--wide.k-tile--image .k-tile__title { font-size: 1.25rem; }

/* ─── Akkordeon ───────────────────────────────────────────────────────────── */
.k-accordion-wrap { max-width: 860px; margin-inline: auto; }
.k-accordion-title { text-align: center; margin: 0 0 1.4rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.k-accordion { display: flex; flex-direction: column; gap: 0.6rem; }
.k-acc {
  border-radius: 0.9rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.k-acc[open] { border-color: rgba(21, 186, 230, 0.35); background: rgba(21, 186, 230, 0.04); }
.k-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.k-acc summary::-webkit-details-marker { display: none; }
.k-acc summary .lucide { width: 18px; height: 18px; color: var(--brand-light); flex-shrink: 0; transition: transform 0.3s ease; }
.k-acc[open] summary .lucide { transform: rotate(45deg); }
.k-acc__body { padding: 0 1.3rem 1.3rem; font-size: 0.98rem; }

/* ─── Galerie + Lightbox (identisch zur Hauptwebsite) ─────────────────────── */
/* Galerie: 12-Spalten-Raster in Fünferblöcken. Kleine Kacheln belegen 3 Spalten
   (vier pro Reihe), die grosse Kachel 6 Spalten und zwei Reihen. Welche Kachel
   gross wird und wie der Rest gestreckt wird, entscheidet das Template. */
.training-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
  gap: 0.7rem;
}
.training-tile {
  position: relative;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #0a0d14;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.training-tile::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.training-tile--feature {
  grid-column: span 6;
  grid-row: span 2;
}
.training-tile--feature::before { padding-top: 0; }
.training-tile--feature-left  { grid-column: 1 / span 6; }
.training-tile--feature-right { grid-column: 7 / span 6; }
.training-tile--w12 { grid-column: span 12; }
.training-tile--w12::before { padding-top: 38%; }
.training-tile--w6 { grid-column: span 6; }
.training-tile--w6::before { padding-top: 56%; }
.training-tile--w4 { grid-column: span 4; }

.training-tile-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  outline-offset: -3px;
}
.training-tile-link:focus-visible {
  outline: 2px solid var(--brand-light);
}
.training-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}
.training-tile-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0) 55%, rgba(5, 8, 15, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.training-tile-zoom {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 8, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.training-tile-zoom .lucide { width: 16px; height: 16px; }
.training-tile:hover img,
.training-tile-link:focus-visible img { transform: scale(1.05); }
.training-tile:hover .training-tile-link::after,
.training-tile-link:focus-visible::after { opacity: 1; }
.training-tile:hover .training-tile-zoom,
.training-tile-link:focus-visible .training-tile-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Lightbox ──────────────────────────────────────────────────────────────── */
.ptf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(3, 6, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ptf-lightbox.is-open { opacity: 1; }
.ptf-lightbox[hidden] { display: none; }
.ptf-lightbox__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: min(1400px, 100%);
  max-height: 100%;
}
.ptf-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  max-height: calc(100dvh - 8rem);
  width: auto;
  height: auto;
  border-radius: 0.6rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ptf-lightbox__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}
.ptf-lightbox__meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  max-width: 100%;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.ptf-lightbox__counter {
  flex: none;
  font-variant-numeric: tabular-nums;
  color: var(--brand-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ptf-lightbox__caption { margin: 0; }
.ptf-lightbox__caption:empty { display: none; }
.ptf-lightbox__btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.ptf-lightbox__btn .lucide { width: 22px; height: 22px; }
.ptf-lightbox__btn:hover,
.ptf-lightbox__btn:focus-visible {
  border-color: var(--brand-light);
  background: rgba(21, 186, 230, 0.14);
  color: var(--brand-light);
  outline: none;
}
.ptf-lightbox__close { top: 1.2rem; right: 1.2rem; }
.ptf-lightbox__prev,
.ptf-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}
.ptf-lightbox__prev { left: 1.2rem; }
.ptf-lightbox__next { right: 1.2rem; }
.ptf-lightbox__btn[hidden] { display: none; }
body.ptf-lightbox-open { overflow: hidden; }

@media (max-width: 700px) {
  .ptf-lightbox { padding: 0.75rem; }
  .ptf-lightbox__img { max-height: calc(100vh - 7rem); max-height: calc(100dvh - 7rem); border-radius: 0.4rem; }
  .ptf-lightbox__btn { width: 42px; height: 42px; }
  .ptf-lightbox__close { top: 0.75rem; right: 0.75rem; }
  .ptf-lightbox__prev { left: 0.5rem; top: auto; bottom: 0.75rem; transform: none; }
  .ptf-lightbox__next { right: 0.5rem; top: auto; bottom: 0.75rem; transform: none; }
  .ptf-lightbox__meta { padding: 0 3.25rem; text-align: center; flex-direction: column; gap: 0.2rem; align-items: center; }
}


/* ─── Footer ──────────────────────────────────────────────────────────────── */
.k-footer {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(7, 23, 35, 0.55));
}
.k-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.k-footer p { margin: 0 0 0.8rem; line-height: 1.65; font-size: 0.95rem; }
.k-footer a { transition: color 0.2s ease; }
.k-footer a:hover { color: var(--brand-light); }
.k-footer__claim { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; color: var(--text-base); letter-spacing: -0.02em; line-height: 1.15; }
.k-footer__brand strong { color: var(--brand-light); }
.k-footer__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.k-footer__title { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--text-base); margin-bottom: 1rem; }
.k-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.95rem; }
.k-footer__hint { margin-left: 0.4rem; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-light); }
.k-footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.k-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-base);
}
.k-footer__social a:hover { border-color: var(--brand-light); color: var(--brand-light); }
.k-footer__social .lucide { width: 18px; height: 18px; }
.k-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}
.k-footer__bottom p { margin: 0; }
.k-footer .footer-links { display: flex; gap: 1.4rem; }
.k-footer .footer-links a { font-size: 0.84rem; color: var(--text-muted); }

/* ─── Stellenanzeige ──────────────────────────────────────────────────────── */
.k-job-hero { position: relative; padding: clamp(7rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.k-job-hero__media { position: absolute; inset: 0; }
.k-job-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.k-job-hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 11, 0.7) 0%, rgba(3, 6, 11, 0.55) 50%, #03060b 100%),
    linear-gradient(90deg, rgba(3, 6, 11, 0.85) 0%, rgba(3, 6, 11, 0.2) 70%);
}
.k-job-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.k-job-hero h1 { margin: 0.8rem 0 0.6rem; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.03em; text-wrap: balance; }
.k-job-hero__sub { margin: 0; color: var(--brand-light); font-weight: 600; font-size: 1.05rem; }
.k-job-hero__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.k-breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.k-breadcrumb a:hover { color: var(--brand-light); }
.k-breadcrumb__current { color: var(--brand-light); }

.k-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 0 0 2.5rem;
}
.k-fact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: 0.9rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.k-fact-item dt { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 0.2rem; }
.k-fact-item dd { margin: 0; font-weight: 600; line-height: 1.4; }
.k-job-intro { max-width: 820px; }

.k-job-columns__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.k-panel {
  padding: 1.8rem 1.8rem 1.6rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.k-panel .k-prose h3:first-child, .k-panel .k-prose h4:first-child, .k-panel .k-prose p:first-child strong { margin-top: 0; }

.k-job-location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.k-job-location__media, .k-map-embed {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #0a0d14;
}
.k-job-location__media img, .k-job-location__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.k-map-embed__consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  border: 0;
  cursor: pointer;
  color: var(--text-base);
  font: inherit;
  background: radial-gradient(circle at 50% 40%, rgba(21, 186, 230, 0.12), transparent 60%), #0a0d14;
}
.k-map-embed__consent .lucide { width: 34px; height: 34px; color: var(--brand-light); }
.k-map-embed__consent span { font-weight: 700; font-size: 1.05rem; }
.k-map-embed__consent small { color: var(--text-muted); max-width: 30ch; text-align: center; }
.k-map-embed__consent:hover { background-color: #0d121c; }
.k-map-embed.is-loaded .k-map-embed__consent { display: none; }
.k-job-location__address { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.8rem; margin: 1.2rem 0 0; color: var(--text-muted); font-size: 0.95rem; }
.k-job-location__address .lucide { width: 16px; height: 16px; color: var(--brand-light); }
.k-job-location__address a { color: var(--brand-light); font-weight: 600; }

.k-contact-card {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.k-contact-card__avatar { width: 64px; height: 64px; border-radius: 20px; }
.k-contact-card__avatar .lucide { width: 30px; height: 30px; }
.k-contact-card__body p { margin: 0 0 0.6rem; color: var(--text-muted); line-height: 1.6; }
.k-contact-card__label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.k-contact-card__name { font-size: 1.35rem; font-weight: 700; color: var(--text-base) !important; }
.k-contact-card__body a { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--text-base); }
.k-contact-card__body a:hover { color: var(--brand-light); }
.k-contact-card__body a .lucide { width: 16px; height: 16px; color: var(--brand-light); }
.k-contact-card__address { padding-top: 0.6rem; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.9rem; }

/* ─── Bewerbungsformular (Contact Form 7) ─────────────────────────────────── */
.k-form { padding: clamp(1.4rem, 3vw, 2.4rem); border-radius: var(--radius); background: var(--glass-bg); border: 1px solid var(--glass-border); }
.k-form .input__group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.k-form .input-field { margin-bottom: 0.9rem; }
.k-form label { display: block; }
.k-form .wpcf7-form-control-wrap { display: block; }
.k-form input[type="text"], .k-form input[type="email"], .k-form input[type="tel"], .k-form input[type="date"], .k-form textarea, .k-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 15, 0.5);
  color: var(--text-base);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.k-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2315bae6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.k-form select option { color: #111; }
.k-form input::placeholder, .k-form textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.k-form input:focus, .k-form textarea:focus, .k-form select:focus { outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(21, 186, 230, 0.18); }
.k-form textarea { min-height: 140px; resize: vertical; }
.k-form .notprint p { color: var(--text-muted); font-size: 0.9rem; }
.k-form .file-wrapper { margin-bottom: 0.7rem; }
.k-form input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.k-form label.upload {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  border: 1px dashed rgba(21, 186, 230, 0.45);
  background: rgba(21, 186, 230, 0.05);
  color: var(--text-base);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.k-form label.upload::before { content: "⤴"; color: var(--brand-light); font-size: 1.1rem; }
.k-form label.upload:hover, .k-form label.upload.has-file { background: rgba(21, 186, 230, 0.12); border-style: solid; }
.k-form .agree { margin: 1.2rem 0; color: var(--text-muted); font-size: 0.86rem; line-height: 1.55; }
.k-form .agree a { color: var(--brand-light); text-decoration: underline; }
.k-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: 1px solid rgba(21, 186, 230, 0.2);
  background: #1364ae;
  color: #f4faff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(19, 100, 174, 0.25);
  transition: background 0.25s ease, transform 0.2s ease;
}
.k-form .wpcf7-submit:hover { background: #1575c5; transform: translateY(-1px); }
.k-form .wpcf7-not-valid-tip { color: var(--brand-orange); font-size: 0.82rem; margin-top: 0.3rem; }
.k-form .wpcf7-response-output { margin: 1rem 0 0; padding: 0.9rem 1rem; border-radius: 0.7rem; border: 1px solid rgba(21, 186, 230, 0.4) !important; color: var(--text-base); }
.k-form .wpcf7-form.invalid .wpcf7-response-output, .k-form .wpcf7-form.failed .wpcf7-response-output { border-color: rgba(240, 131, 60, 0.6) !important; }
.k-form .wpcf7-spinner { margin-left: 0.8rem; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .k-bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(140px, auto); }
  .k-jobs__grid { grid-template-columns: repeat(2, 1fr); }
  .k-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .k-footer__grid { grid-template-columns: 1fr 1fr; }
  .k-footer__brand { grid-column: 1 / -1; }
  .k-steps { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  .k-split__grid { grid-template-columns: 1fr; }
  .k-split__media { aspect-ratio: 16 / 10; }
  .k-entry__grid, .k-job-columns__grid, .k-job-location__grid { grid-template-columns: 1fr; }
  .k-cities { grid-template-columns: 1fr 1fr; }
  .k-city--home { grid-column: 1 / -1; }
  .k-city--home .k-city__media { aspect-ratio: 16 / 8; }
  .k-facts { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .k-fact--col1 { grid-column: auto; }
  .k-fact--list { grid-row: auto; grid-column: 1 / -1; }
  .k-steps { grid-template-columns: 1fr; gap: 0; }
  .k-step { flex-direction: row; align-items: center; padding: 0 0 1.4rem; }
  .k-step::before { top: 48px; left: 23px; right: auto; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, rgba(21, 186, 230, 0.6), rgba(255, 255, 255, 0.12)); }
  .k-quote { grid-template-columns: 1fr; }
  .k-quote__media img { min-height: 0; aspect-ratio: 16 / 9; }
  .k-pin__card { max-width: 220px; }
  /* Galerie: zwei Kacheln pro Reihe, die grosse Kachel als Panorama darüber. */
  .training-tile { grid-column: span 6; }
  .training-tile--feature, .training-tile--feature-left, .training-tile--feature-right { grid-column: span 12; grid-row: span 1; }
  .training-tile--feature::before { padding-top: 48%; }
  .training-tile--w12 { grid-column: span 12; }
  .training-tile--w12::before { padding-top: 48%; }
  .training-tile--w6 { grid-column: span 6; }
  .training-tile--w6::before { padding-top: 75%; }
  .training-tile--w4 { grid-column: span 4; }
}
@media (max-width: 720px) {
  .k-header-back { display: none; }
  .k-stage--hero { height: min(70svh, 620px); min-height: 380px; }
  .k-stage__inner { padding-bottom: 2rem; }
  .k-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(130px, auto); gap: 0.6rem; }
  .k-tile { padding: 1rem; }
  .k-tile--big { grid-column: span 2; grid-row: span 2; }
  .k-tile__title { font-size: 0.95rem; }
  .k-jobs__grid, .k-facts-grid, .k-cities, .k-facts, .k-footer__grid { grid-template-columns: 1fr; }
  .k-footer__brand { grid-column: auto; }
  .k-form .input__group { grid-template-columns: 1fr; gap: 0; }
  .k-contact-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .k-map { display: none; }
  .k-band__headline { max-width: 100%; }
  .k-actions .btn { width: 100%; }
  .k-job-hero { padding-top: 6rem; }
  .k-slider__item { flex-basis: 84vw; }
  .k-footer__bottom { flex-direction: column; }
  .training-gallery { gap: 0.5rem; }
  .training-tile { border-radius: 0.6rem; }
  .training-tile--feature::before { padding-top: 62%; }
  .training-tile--w12::before { padding-top: 62%; }
  .training-tile--w4 { grid-column: span 6; }
  .training-tile--w4:nth-last-child(3) { grid-column: span 12; }
  .training-tile--w4:nth-last-child(3)::before { padding-top: 56%; }
  .training-tile-zoom { opacity: 1; transform: none; width: 30px; height: 30px; }
}

/* ─── Druck: nur die Stellenanzeige ───────────────────────────────────────── */
@media print {
  body { background: #fff !important; color: #111; }
  .brand-logo, .site-header, .nav-overlay, .page-glow, .k-footer, .k-apply, .k-jobslider, .k-contact, .k-job-location, .k-actions, .k-job-hero__media, .k-job-hero__fade, .k-breadcrumb { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .k-prose, .k-fact-item dd, .k-fact-item dt, .k-job-hero__sub, h1, h2, h3 { color: #111 !important; }
  .k-panel, .k-fact-item { border-color: #ccc; background: none; break-inside: avoid; }
  .k-job-hero { padding: 1rem 0; }
  .section { padding: 1rem 0; }
}
