:root {
  --ink: #171b1f;
  --muted: #5c676f;
  --paper: #f5f7f6;
  --white: #ffffff;
  --line: #d8dfdc;
  --green: #087f73;
  --green-dark: #07594f;
  --logo-green: #417d71;
  --logo-green-dark: #35675e;
  --red: #d84a39;
  --yellow: #f0b323;
  --blue: #235d72;
  --shadow: 0 20px 55px rgba(18, 26, 31, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 16px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  border-bottom: 1px solid rgba(23, 27, 31, 0.14);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(205px, 20vw, 252px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
  min-height: 92svh;
  padding: 150px clamp(18px, 6vw, 82px) 52px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  display: none;
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  display: none;
  background: linear-gradient(90deg, rgba(206, 206, 206, 0.02) 0%, rgba(206, 206, 206, 0.06) 48%, rgba(255, 255, 255, 0.28) 100%);
}


.hero-focus-eye {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 53%;
  width: min(72vw, 1040px);
  max-height: 82vh;
  transform: translate(0, -50%);
  object-fit: contain;
  opacity: 0.78;
  pointer-events: none;
}
.hero-content,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(100%, 920px);
  max-width: 920px;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.network-band .eyebrow,
.career .eyebrow {
  color: var(--yellow);
}

.hero .eyebrow {
  display: block;
  position: relative;
  left: calc(clamp(18px, 6vw, 82px) + min(50%, 460px) - 50vw);
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-bottom: 18px;
  margin-left: calc(50% - 50vw);
  text-align: center;
  font-size: 39.65px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  width: min(100%, 797px);
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.hero-content p:not(.eyebrow) strong {
  color: var(--green);
}

.hero-content p:not(.eyebrow) em {
  color: var(--yellow);
  font-weight: 800;
}

.hero-actions,
.career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 327px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--logo-green);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--logo-green-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(23, 27, 31, 0.32);
  background: rgba(255, 255, 255, 0.42);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: rgba(23, 27, 31, 0.24);
  background: var(--white);
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 0.95fr 0.75fr 0.95fr 0.95fr;
  gap: 0;
  justify-self: center;
  width: 100vw;
  margin-top: 480px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 178px;
  padding: 52px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
}

.hero-facts strong {
  display: block;
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 39.65px;
  line-height: 1;
  white-space: nowrap;
}

.hero-facts span {
  display: block;
  min-width: 0;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
}

.hero-facts .button span {
  color: var(--ink);
}
.hero-facts .button .hero-action-number {
  color: var(--yellow);
  font-size: 39.65px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-facts .hero-actions {
  display: contents;
  margin: 0;
}

.hero-facts .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 178px;
  padding: 52px 22px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.2);
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
}

.hero-facts .button:hover,
.hero-facts .button:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.32);
  transform: none;
}
.hero-facts.hero-facts-top {
  position: absolute;
  top: 311px;
  left: 50%;
  width: 100vw;
  margin: 0;
  grid-template-rows: auto auto;
  transform: translateX(-50%);
}
.hero-facts.hero-facts-top div {
  min-height: auto;
}

.hero-facts.hero-facts-top .hero-top-slogan {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 38px 14px 14px;
  overflow: visible;
}

.hero-facts.hero-facts-top .hero-top-slogan span {
  color: var(--yellow);
  font-size: 39.65px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-facts.hero-facts-top .hero-top-item {
  min-height: auto;
  padding: 9px 14px 38px;
}


.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 82px);
}
.blank-page {
  position: relative;
  min-height: calc(100vh - 98px);
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.feature-card h2,
.network-band h2,
.career h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 1280px;
  margin: 0;
  color: #2d363d;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
  text-align: justify;
  text-align-last: left;
  hyphens: manual;
}
.predicate-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
}

.blank-page .section-heading,
.principles-list {
  position: relative;
  z-index: 1;
}
.blank-page .section-heading h2 {
  color: var(--logo-green);
}


.principles-list {
  display: grid;
  width: min(100%, 1280px);
  max-width: 1280px;
  justify-self: start;
  gap: 18px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
  text-align: left;
  text-align-last: left;
  hyphens: none;
  white-space: nowrap;
}

.principles-list p {
  margin: 0;
}

.principle-keyword {
  color: #417d71;
}

.principle-keyword-bold {
  font-weight: 800;
}
.content-image-page {
  background: #ffffff;
}
.content-image-page .predicate-content {
  min-height: min(52vh, 560px);
}

.section-heading-placeholder {
  min-height: clamp(34px, 5vw, 64px);
}

.content-image-text {
  min-height: 1px;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.content-image-slot {
  width: min(100%, clamp(420px, 40vw, 820px));
  min-height: clamp(260px, 32vw, 520px);
  justify-self: center;
}

.content-image-slot img {
  display: block;
  width: 100%;
  height: auto;
}
.mission-eye-slot {
  width: min(118%, clamp(520px, 48vw, 980px));
  height: clamp(390px, 42vw, 690px);
  margin-left: clamp(-72px, -3.5vw, -28px);
  overflow: visible;
}

.mission-eye-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: brightness(1.22) contrast(1.06);
}



.focus-page {
  background: #ffffff;
}
.focus-page .mission-eye-slot {
  display: grid;
  place-items: center;
}
.focus-page .mission-eye-slot::before {
  content: none;
}

.focus-page .mission-eye-slot {
  position: relative;
}

.focus-page .mission-eye-slot img.focus-eye-iris-overlay {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 66%;
  height: auto;
  margin: 0;
  border-radius: 18px;
  transform: translate(-50%, -50%) translateY(-15px);
  filter: none;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, #000 0 36%, rgba(0, 0, 0, 0.98) 38%, rgba(0, 0, 0, 0.55) 40%, transparent 43%);
  mask-image: radial-gradient(circle at center, #000 0 36%, rgba(0, 0, 0, 0.98) 38%, rgba(0, 0, 0, 0.55) 40%, transparent 43%);
}

.focus-page .mission-eye-slot img.focus-eye {
  display: block;
  width: 66%;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(23, 27, 31, 0.4);
  transform: translateY(-15px);
  filter: none;
}
.mission-eye-slot img.focus-eye {
  display: block;
  width: 76%;
  height: 76%;
  margin: 0 auto;
  transform: translateY(clamp(-24px, -1.6vw, -16px));
  filter: none;
}
.services-energy-visuals {
  display: grid;
  place-items: center;
  width: min(118%, clamp(520px, 48vw, 980px));
}

.services-energy-visuals img {
  position: static;
  display: block;
  width: 76%;
  max-width: none;
  height: 76%;
  object-fit: contain;
  object-position: center center;
  filter: none;
}


.services-energy-visuals .services-powerline {
  height: 57%;
  transform: translateY(-117px);
}
.focus-page .content-image-text {
  width: 54%;
  margin-top: clamp(14px, 1.4vw, 26px);
  margin-left: clamp(34px, 5.5vw, 96px);
  color: #171b1f;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.guidelines-page {
  background: var(--paper);
}
.guidelines-page .principles-list {
  gap: 26px;
}
.guidelines-page .predicate-content {
  min-height: min(52vh, 560px);
}

.guidelines-page .principles-list {
  margin-top: clamp(80px, 8vw, 132px);
}

.services-page .services-list {
  margin-top: clamp(80px, 8vw, 132px);
  color: #171b1f;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  white-space: normal;
}

.services-list .services-energy-block {
  margin-top: clamp(36px, 3.5vw, 62px) !important;
}

.services-level-line {
  display: inline-block;
  padding-top: 0.36em;
}

.services-systems-line {
  font-size: 1em;
  line-height: inherit;
  white-space: nowrap;
}



.guidelines-image-slot {
  width: min(118%, clamp(520px, 48vw, 980px));
  height: clamp(390px, 42vw, 690px);
  margin-left: clamp(-72px, -3.5vw, -28px);
  overflow: visible;
}

.guidelines-image-slot .guidelines-walker {
  width: min(54%, clamp(210px, 24vw, 360px));
  height: auto;
  margin: clamp(122px, 12vw, 172px) auto 0;
  transform: translateY(22px);
  object-fit: contain;
  object-position: center center;
  image-rendering: auto;
  opacity: 0.72;
  filter: none;
}
.guidelines-image-slot .guidelines-traffic-light {
  width: min(42%, clamp(150px, 18vw, 260px));
  height: auto;
  margin: clamp(62px, 7vw, 118px) auto 0;
  object-fit: contain;
  object-position: center center;
  opacity: 0.88;
  filter: drop-shadow(0 18px 34px rgba(23, 27, 31, 0.1));
}
.guidelines-image-slot .dna-symbol {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}



.dna-symbol {
  position: relative;
  z-index: 0;
  width: min(100%, clamp(420px, 40vw, 820px));
  justify-self: center;
  color: #171b1f;
  opacity: 0.24;
  pointer-events: none;
  transform: none;
}
.dna-cutout {
  height: auto;
  filter: none;
}

.helix-curve,
.helix-link {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.helix-curve {
  stroke-width: 7;
}

.helix-curve-b {
  opacity: 0.72;
}

.helix-link {
  stroke-width: 4;
  opacity: 0.78;
}


@media (max-width: 980px) {
  .predicate-content {
    grid-template-columns: 1fr;
  }

  .focus-page .content-image-text {
    width: 100%;
    margin-left: 0;
  }

  .principles-list {
    justify-self: start;
  }

  .dna-symbol {
    width: min(420px, 78vw);
    justify-self: center;
  }
}
.feature-grid {
  display: grid;
  gap: 28px;
  padding-top: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(23, 27, 31, 0.08);
}

.feature-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.feature-card:nth-child(even) img {
  order: 2;
}

.feature-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-card > div {
  padding: clamp(28px, 5vw, 58px);
}

.feature-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.feature-card p.feature-lead {
  color: #2d363d;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  color: #20282e;
  background: #eef3f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.split-list h3,
.info-columns h3,
.person-card h3,
.location-grid h3,
.job-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.split-list ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.systems {
  padding-top: 0;
}

.info-columns,
.stat-grid,
.people-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-columns article,
.stat-grid div,
.person-card,
.legal-grid p,
.location-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-columns article,
.stat-grid div,
.legal-grid p {
  padding: 24px;
}

.info-columns p,
.legal-grid p {
  margin: 0;
  color: var(--muted);
}

.network-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 78px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 82px);
  color: var(--white);
  background: #11191d;
}

.network-band img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.stat-grid div {
  min-height: 142px;
}

.stat-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.career {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #203540;
  color: var(--white);
}

.career > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.career-content {
  padding: clamp(48px, 7vw, 86px);
}

.career-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.job-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.job-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.job-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.people-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.person-card {
  padding: 22px;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
  filter: grayscale(1);
}

.person-card p {
  min-height: 50px;
  margin: 0 0 16px;
  color: var(--muted);
}

.person-card a,
.location-grid a,
.legal a {
  display: block;
  width: fit-content;
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.person-card a + a {
  margin-top: 6px;
}

.locations {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 82px);
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #f8faf9;
}

.location-grid img {
  width: 92px;
  height: 120px;
  object-fit: contain;
  border-radius: 6px;
}

.location-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}

.location-text {
  align-content: center;
  grid-template-columns: 1fr !important;
}

.legal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 88px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 4px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.footer-copyright {
  margin: 0;
  color: #ffffff;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.25;
  text-align: right;
}

/* Hero alignment update */
.hero-content {
  width: min(100%, 920px);
  max-width: 920px;
  margin-left: auto;
}

.hero-content h1 {
  position: relative;
  left: calc(clamp(18px, 6vw, 82px) + min(50%, 460px) - 50vw);
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  font-size: clamp(44px, 4.75vw, 70px);
  line-height: 0.9;
}

.hero-title-line {
  display: block;
  width: min(100%, 797px);
  max-width: 797px;
  margin-right: auto;
  margin-left: auto;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

  .hero {
    min-height: auto;
    padding-top: 136px;
  }

  .hero-content {
    width: min(100%, 920px);
  }

  .hero-facts {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero-facts,
  .feature-card,
  .feature-card:nth-child(even),
  .network-band,
  .career {
    grid-template-columns: 0.95fr 1.45fr 0.95fr 0.75fr 0.95fr 0.95fr;
  }

  .feature-card:nth-child(even) img {
    order: 0;
  }

  .feature-card > img,
  .career > img {
    min-height: 320px;
    max-height: 520px;
  }

  .info-columns,
  .stat-grid,
  .people-grid,
  .legal-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-title-line {
  display: block;
  width: min(100%, 797px);
  max-width: 797px;
  margin-right: auto;
  margin-left: auto;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}
}

@media (max-width: 640px) {

.brand-logo {
    width: min(220px, 60vw);
  }

  .hero {
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-actions,
  .career-actions,
  .button {
    width: 100%;
  }

  .hero-facts,
  .split-list,
  .info-columns,
  .stat-grid,
  .people-grid,
  .legal-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 178px;
  padding: 52px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
}

  .section,
  .locations,
  .network-band,
  .career-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .feature-card > div {
    padding: 18px 14px;
  }

  .location-grid article {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .location-grid img {
    width: 80px;
    height: 104px;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    margin-top: 327px;
  }
}
/* Moving photo tiles */
.moving-tiles-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  padding-inline: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.moving-tiles-page .section-heading {
  margin-left: clamp(18px, 6vw, 82px);
  margin-right: clamp(18px, 6vw, 82px);
}

.moving-tiles-stage {
  --stream-travel: 1632px;
  position: relative;
  width: min(calc(100% - 36px), 1040px);
  min-height: clamp(650px, 74vh, 760px);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
}

.moving-tiles-stage::before,
.moving-tiles-stage::after {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  width: clamp(76px, 11cqw, 128px);
  content: "";
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.moving-tiles-stage::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.72) 38%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 28%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 28%, transparent 100%);
}

.moving-tiles-stage::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.72) 38%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 28%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 28%, transparent 100%);
}

.moving-tiles-track {
  position: absolute;
  inset: 0;
}

.moving-tile {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(270px, 31cqw, 330px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.16);
  border-radius: 0;
  background: #d9e0dd;
  box-shadow: 0 18px 38px rgba(23, 27, 31, 0.2);
  animation: moving-tile-stream 113.4s linear infinite;
  animation-delay: calc((var(--tile-index) - 1) * -12.6s);
  will-change: transform, filter, opacity;
}

.moving-tiles-controls {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: clamp(22px, 4vh, 42px);
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.moving-tiles-controls button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 27, 31, 0.34);
  border-radius: 50%;
  color: #171b1f;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 18px rgba(23, 27, 31, 0.14);
  font: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.moving-tiles-controls button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
}

.moving-tiles-controls [data-tile-action="play"] span {
  width: 13px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-43%, -50%);
}

.moving-tiles-controls [data-tile-action="pause"] span {
  width: 14px;
  height: 15px;
  background: linear-gradient(90deg, currentColor 0 5px, transparent 5px 9px, currentColor 9px 14px);
}

.moving-tiles-controls [data-tile-action="rewind"] span,
.moving-tiles-controls [data-tile-action="forward"] span {
  display: flex;
  width: 18px;
  height: 15px;
  gap: 2px;
}

.moving-tiles-controls [data-tile-action="rewind"] span::before,
.moving-tiles-controls [data-tile-action="rewind"] span::after,
.moving-tiles-controls [data-tile-action="forward"] span::before,
.moving-tiles-controls [data-tile-action="forward"] span::after {
  display: block;
  width: 8px;
  height: 15px;
  flex: 0 0 8px;
  content: "";
  background: currentColor;
}

.moving-tiles-controls [data-tile-action="rewind"] span::before,
.moving-tiles-controls [data-tile-action="rewind"] span::after {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.moving-tiles-controls [data-tile-action="forward"] span::before,
.moving-tiles-controls [data-tile-action="forward"] span::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.moving-tiles-controls button:hover,
.moving-tiles-controls button:focus-visible {
  border-color: var(--logo-green);
  color: #fff;
  background: var(--logo-green);
  outline: none;
  transform: translateY(-2px);
}

.moving-tiles-controls button.is-active {
  border-color: #ff5a5a;
  color: #fff;
  background: #d60909;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 8px rgba(255, 38, 38, 0.95), 0 0 20px rgba(255, 20, 20, 0.72), 0 7px 18px rgba(23, 27, 31, 0.18);
}

.moving-tiles-page .section-heading h2 {
  color: #171b1f;
}
.moving-tiles-page .section-heading h2,
.moving-tile span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}
.moving-tile::before {
  content: none;
}

.moving-tile span {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: currentColor;
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.moving-tile-01 { --tile-index: 2; }
.moving-tile-01 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile-03 { --tile-index: 9; }
.moving-tile-04 { --tile-index: 8; }
.moving-tile-05 { --tile-index: 7; }
.moving-tile-cx { --tile-index: 6; }
.moving-tile-02 { --tile-index: 5; }
.moving-tile-quality { --tile-index: 4; }
.moving-tile-06 { --tile-index: 6; }
.moving-tile-07 { --tile-index: 7; }
.moving-tile-08 { --tile-index: 8; }
.moving-tile-09 { --tile-index: 3; }
.moving-tile-10 { --tile-index: 1; }

.moving-tile-01,
.moving-tile-08 { color: #fff; background: #171b1f; }
.moving-tile-09 { color: #171b1f; background: var(--yellow); }
.moving-tile-03 { color: #fff; background: var(--logo-green); }
.moving-tile-04,
.moving-tile-07 { color: #171b1f; background: #d6dfdc; }
.moving-tile-05,
.moving-tile-10 { color: var(--logo-green-dark); background: #fff; }
.moving-tile-06 { color: #fff; background: var(--blue); }

.moving-tile-02 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/process-cycle.svg?v=5"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 91% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-02 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}

.moving-tile-03 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/telephone-dial.svg?v=15"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 91% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-03 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile-04 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/at-symbol-circle.svg?v=3"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 90% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-04 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile-05 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/euro-symbol-circle.svg?v=3"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 90% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-cx {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/cx-symbol-circle.svg?v=1"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 90% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-cx span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}

.moving-tile-quality {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/quality-ok-circle.svg?v=2"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 90% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-quality span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}

.moving-tile-05 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile-09 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/wissen-sign-circle.svg?v=5"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 90% auto, cover;
  background-repeat: no-repeat;
}

.moving-tile-09 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile-01 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/binary-code-green.svg?v=3"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: 88% auto, cover;
  background-repeat: no-repeat;
}


.moving-tile-10 {
  color: #fff;
  background-color: #071d33;
  background-image: url("./assets/network-spiderweb.svg?v=2"), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.moving-tile-10 span {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
  text-align: right;
}
.moving-tile .tile-title {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-align: left;
}

.moving-tile .tile-more {
  position: absolute;
  top: auto;
  right: 18px;
  bottom: 16px;
  left: auto;
  color: #fff;
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 600;
  line-height: 1;
  text-align: right;
}
.moving-tile .tile-more {
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
}

body.tile-detail-mode main > section:not(.tile-detail-page) {
  display: none;
}

body.tile-detail-mode main > .tile-detail-page[hidden] {
  display: none;
}

body.tile-detail-mode main > .tile-detail-page:not([hidden]) {
  display: block;
}
.tile-detail-page,
.tile-detail-page .section-heading h2,
.tile-detail-page .tile-detail-card span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.tile-detail-page .predicate-content {
  min-height: min(52vh, 560px);
}

.tile-detail-copy {
  min-height: 1px;
}

.tile-detail-visuals {
  display: grid;
  place-items: center;
  width: min(118%, clamp(520px, 48vw, 980px));
}

.tile-detail-card {
  position: relative;
  height: clamp(222px, 29.5vw, 393px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.16);
  border-radius: 0;
  box-shadow: 0 18px 38px rgba(23, 27, 31, 0.2);
  transform: translateY(-117px);
  background-position: center;
  background-repeat: no-repeat;
}

.tile-detail-card span {
  position: absolute;
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-align: left;
}
@keyframes moving-tile-stream {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(var(--stream-travel), -50%, 0);
  }
  20% { opacity: 0; filter: blur(10px); }
  24% { opacity: 0.5; filter: blur(6px); }
  30% { opacity: 1; filter: blur(0); }
  70% { opacity: 1; filter: blur(0); }
  76% { opacity: 0.5; filter: blur(6px); }
  80% { opacity: 0; filter: blur(10px); }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(calc(var(--stream-travel) * -1), -50%, 0);
  }
}

@media (max-width: 700px) {
  .moving-tiles-stage {
    width: calc(100% - 24px);
    min-height: 560px;
  }

  .moving-tiles-stage::before,
  .moving-tiles-stage::after {
    width: 72px;
  }

  .moving-tile {
    width: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moving-tiles-stage {
    overflow-x: auto;
  }

  .moving-tiles-stage::before,
  .moving-tiles-stage::after {
    display: none;
  }

  .moving-tiles-track {
    position: static;
    display: grid;
    grid-template-columns: repeat(10, minmax(200px, 1fr));
    gap: 18px;
    width: max-content;
    padding: 24px;
  }

  .moving-tile {
    position: relative;
    top: auto;
    left: auto;
    width: 220px;
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
.locations-slide-page {
  background: #fff;
}

.locations-slide-page .predicate-content {
  min-height: min(52vh, 560px);
}

.locations-slide-page .section-heading {
  margin-bottom: 32px;
}

.locations-slide-page .locations-list {
  margin-top: clamp(80px, 8vw, 132px);
}
.locations-slide-page .predicate-content {
  align-items: center;
}

.locations-map-wrap {
  display: grid;
  place-items: center;
  width: min(118%, clamp(520px, 48vw, 980px));
  min-height: auto;
  margin-left: clamp(-72px, -3.5vw, -28px);
  justify-self: center;
  align-self: center;
  transform: translateY(66px);
  overflow: visible;
}

.locations-map {
  display: block;
  width: min(82%, clamp(360px, 34vw, 560px));
  max-width: 100%;
  max-height: min(62vh, 640px);
  object-fit: contain;
  object-position: center center;
  opacity: 0.72;
  filter: none;
  image-rendering: auto;
}

#standorte .predicate-content {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

#standorte .locations-intro-text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: clamp(34px, 5.5vw, 96px);
  width: calc(27% - clamp(7.56px, 1.35vw, 22.14px));
  margin: 0;
  color: #171b1f;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  transform: translateY(36px);
}

#standorte .locations-intro-text p {
  margin: 0;
  font: inherit;
  letter-spacing: 0;
}

#standorte .locations-intro-text p + p {
  margin-top: 1.55em;
}

#standorte .locations-list {
  display: flex;
  grid-row: 2;
  width: 100%;
  max-width: none;
  margin-top: clamp(6px, 0.9vw, 14px);
  padding-bottom: clamp(76px, 6.8vw, 108px);
  justify-content: space-between;
  align-items: baseline;
  gap: 0;
  transform: translateY(60px);
}

#standorte .locations-map-wrap {
  width: 100%;
  margin-left: 0;
  justify-self: center;
  align-self: center;
  transform: translateY(18px);
}

#standorte .germany-detailed-map {
  width: min(86vw, clamp(520px, 54vw, 820px));
  opacity: 0.98;
}

#standorte .locations-gallery {
  position: relative;
  width: min(86vw, clamp(520px, 54vw, 820px));
  max-width: 100%;
  height: min(62vh, 640px);
  min-height: 420px;
}

#standorte .locations-gallery-image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 18px 24px rgba(7, 29, 51, 0.3));
  transform: translate(-50%, -50%) scale(0.985);
  transition: opacity 1.1s ease, transform 1.1s ease, visibility 0s linear 1.1s;
}

#standorte .locations-gallery-image.is-active {
  z-index: 1;
  opacity: 0.98;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

#standorte .locations-gallery-stralsund {
  max-width: 88%;
}

#standorte .locations-gallery-panorama {
  width: 88%;
  height: auto;
  max-width: 88%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#standorte .locations-gallery-softened {
  filter: drop-shadow(0 18px 24px rgba(7, 29, 51, 0.3)) blur(0.4px) contrast(0.97);
}

#standorte .locations-gallery-map {
  width: 72%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  filter: none;
}

#standorte .locations-gallery-map.is-active {
  opacity: 0.98;
}

@media (max-width: 980px) {
  #standorte .locations-gallery {
    width: min(100%, 820px);
    height: min(58vh, 600px);
    min-height: 340px;
  }

  #standorte .locations-gallery-image {
    max-width: 100%;
  }

  #standorte .locations-gallery-panorama {
    width: 92%;
    max-width: 92%;
  }
}

@media (max-width: 620px) {
  #standorte .locations-gallery {
    height: min(52vh, 480px);
    min-height: 280px;
  }

  #standorte .locations-gallery-panorama {
    width: 100%;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #standorte .locations-gallery-image,
  #standorte .locations-gallery-image.is-active {
    transform: translate(-50%, -50%);
    transition: opacity 0.2s linear;
  }
}
#standorte .locations-map-wrap {
  grid-row: 1;
}

#standorte .location-entry {
  position: relative;
  display: block;
  flex: 0 0 auto;
  min-width: 0;
  text-align: center;
}

#standorte .location-entry:first-child {
  text-align: left;
}

#standorte .location-entry:last-child {
  text-align: right;
}

#standorte .location-word {
  display: inline-block;
  font-size: clamp(36px, 3.6vw, 60px);
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  filter: none;
}

#standorte,
#standorte * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

#standorte .location-address {
  position: absolute;
  top: calc(100% + clamp(12px, 1vw, 18px));
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  width: max-content;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}



#standorte .location-address a {
  color: #000;
  text-decoration: none;
}

#standorte .location-address a[href^="mailto:"] {
  color: var(--blue);
}

@media (max-width: 980px) {
  #standorte .locations-intro-text {
    position: static;
    grid-row: 1;
    width: 100%;
    margin: 0;
    transform: none;
  }

  #standorte .locations-map-wrap {
    grid-row: 2;
  }

  #standorte .locations-list {
    grid-row: 3;
  }
}
.location-letter-list {
  gap: clamp(18px, 2.1vw, 34px);
  align-content: start;
}

.location-entry {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 1.4vw, 24px);
  line-height: 1;
}

.location-entry-s {
  gap: 0;
}
.location-entry-with-address {
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.8vw, 14px);
}

.location-address {
  display: block;
  color: #000;
  font-size: clamp(18px, 2.25vw, 29px);
  font-weight: 500;
  line-height: 1.22;
  white-space: nowrap;
}
.location-letter {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 0.86em;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(78px, 8vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-letter-m {
  background-image: url("./assets/standorte-muenster-mark.png?v=20260729-extra");
  background-size: 125% 125%;
}

.location-letter-s {
  background-image: url("./assets/standorte-stralsund-mark.jpg?v=20260729-extra");
  background-size: 180% 120%;
  background-position: center center;
}

.location-word {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: clamp(54px, 5.7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-text-stroke: 0.9px var(--logo-green);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.location-word-muenster,
.location-word-stralsund,
.location-word-hamm,
.location-word-erfurt,
.location-word-halle {
  background-image: linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-text-stroke: 0;
}
.location-name {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 800;
  color: var(--ink);
}
.intro .lead {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.intro .section-heading h2 {
  color: var(--logo-green);
}
.mitmachen-slide-page .mitmachen-text {
  margin-top: clamp(14px, 1.4vw, 26px);
  color: #171b1f;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.mitmachen-slide-page .mitmachen-content {
  min-height: min(52vh, 560px);
}

.mitmachen-slide-page .mitmachen-empty-slot {
  visibility: hidden;
}

.mitmachen-slide-page .mitmachen-text p {
  margin: 0;
}

.mitmachen-slide-page .mitmachen-text p + p {
  margin-top: 1.05em;
}

.mitmachen-newspaper-slot {
  display: grid;
  place-items: center;
  visibility: visible;
}

.newspaper-illustration {
  position: relative;
  width: min(70%, clamp(250px, 26vw, 410px));
  aspect-ratio: 0.72;
  padding: clamp(22px, 2.2vw, 34px);
  background: #fff;
  border: 2.2px solid var(--logo-green);
  box-shadow: 14px 16px 0 rgba(65, 125, 113, 0.16);
  color: var(--logo-green);
  transform: rotate(-3deg);
}

.newspaper-illustration::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.4px solid rgba(65, 125, 113, 0.5);
  pointer-events: none;
}

.newspaper-kicker {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.newspaper-title {
  margin-top: clamp(8px, 0.8vw, 12px);
  color: #171b1f;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 900;
  line-height: 0.96;
}

.newspaper-rule {
  height: 3px;
  margin: clamp(16px, 1.5vw, 24px) 0;
  background: var(--logo-green);
}

.newspaper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1vw, 16px) clamp(12px, 1.1vw, 18px);
}

.newspaper-grid span,
.newspaper-columns span {
  display: block;
  height: clamp(8px, 0.7vw, 12px);
  background: rgba(65, 125, 113, 0.42);
}

.newspaper-grid span:nth-child(3n + 1) {
  width: 82%;
}

.newspaper-grid span:nth-child(3n + 2) {
  width: 100%;
}

.newspaper-grid span:nth-child(3n) {
  width: 66%;
}

.newspaper-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(28px, 3vw, 44px);
}

.newspaper-columns span {
  height: clamp(58px, 6vw, 92px);
  background: linear-gradient(180deg, rgba(65, 125, 113, 0.28), rgba(65, 125, 113, 0.1));
  border: 1.4px solid rgba(65, 125, 113, 0.4);
}
.newspaper-illustration {
  width: min(88%, clamp(330px, 35vw, 560px));
  aspect-ratio: 0.78;
  padding: clamp(24px, 2.4vw, 38px);
}

.newspaper-jobs {
  display: grid;
  gap: clamp(14px, 1.25vw, 20px);
}

.newspaper-job {
  padding: clamp(13px, 1.25vw, 18px) clamp(14px, 1.35vw, 20px);
  border: 1.5px solid rgba(65, 125, 113, 0.58);
  background: linear-gradient(180deg, rgba(65, 125, 113, 0.08), rgba(255, 255, 255, 0.92));
}

.newspaper-job-label {
  display: block;
  margin-bottom: 0.45em;
  color: var(--logo-green);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 900;
  text-transform: uppercase;
}

.newspaper-job h3 {
  margin: 0 0 0.55em;
  color: #171b1f;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1.05;
}

.newspaper-job p {
  margin: 0.22em 0 0;
  color: #171b1f;
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1.18;
}
.newspaper-logo {
  display: block;
  width: min(92%, 430px);
  height: auto;
  margin: 0 0 clamp(10px, 0.9vw, 16px);
  object-fit: contain;
}

.newspaper-logo + .newspaper-title {
  margin-top: clamp(8px, 0.75vw, 12px);
}
.newspaper-logo {
  width: min(34%, 180px);
  margin: 0 0 clamp(12px, 1vw, 18px) 0;
}
.newspaper-logo {
  width: clamp(205px, 20vw, 252px);
  margin: 0 0 clamp(12px, 1vw, 18px) 0;
}
.mitmachen-newspaper-slot .newspaper-logo {
  width: clamp(205px, 20vw, 252px);
  max-width: 252px;
  height: auto;
  margin: 0 0 clamp(12px, 1vw, 18px) 0;
}
.newspaper-title {
  display: flex;
  align-items: baseline;
  gap: 0.32em;
  flex-wrap: nowrap;
}

.newspaper-date {
  color: var(--logo-green);
  font-size: 0.52em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.newspaper-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(16px, 1.35vw, 22px);
}

.newspaper-contact-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(38px, 3.2vw, 50px);
  padding: 0.55em 0.8em;
  background: var(--yellow);
  border: 1.5px solid rgba(23, 27, 31, 0.22);
  color: #171b1f;
  font-size: clamp(11px, 0.88vw, 15px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.newspaper-contact-actions a {
  background: linear-gradient(180deg, rgba(65, 125, 113, 0.08), rgba(255, 255, 255, 0.92));
  border: 1.5px solid rgba(65, 125, 113, 0.58);
  color: var(--yellow);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 900;
  text-shadow: none;
}
.mitmachen-text-contact-actions {
  margin-top: clamp(24px, 2vw, 36px);
  max-width: min(100%, 680px);
  text-align: initial;
  text-align-last: auto;
}

.mitmachen-text-contact-actions a {
  font-size: clamp(13px, 0.95vw, 16px);
}
.mitmachen-text-cta {
  margin-top: clamp(26px, 2.4vw, 42px);
  text-align: left;
  text-align-last: auto;
}

.mitmachen-text-cta-heading {
  margin: 0 0 clamp(10px, 1vw, 16px);
  color: var(--yellow);
  font-size: clamp(30px, 2.6vw, 46px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.mitmachen-text-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 34px);
  max-width: none;
  margin: 0;
  text-align: left;
  text-align-last: auto;
}

.mitmachen-text-contact-actions a {
  display: inline-block;
  min-height: 0;
  padding: 0;
  background: none;
  border: 0;
  color: var(--yellow);
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}
.mitmachen-text-cta-heading {
  color: var(--ink);
}
.mitmachen-text-cta {
  margin-top: clamp(56px, 5.2vw, 96px);
}

.mitmachen-text-contact-actions {
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  gap: clamp(18px, 2vw, 34px);
}

.mitmachen-text-contact-actions a {
  font-size: clamp(24px, 2.05vw, 38px);
}
.mitmachen-text-cta-heading {
  font-size: inherit;
  line-height: inherit;
}
.mitmachen-text-cta-heading a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.mitmachen-text-cta-heading {
  text-transform: none;
}

.mitmachen-text-cta-heading a,
.mitmachen-text-contact-actions a {
  color: var(--yellow);
  text-transform: none;
}
.mitmachen-text-cta-heading {
  text-transform: none !important;
}

.mitmachen-text-cta-heading a,
.mitmachen-text-contact-actions a {
  color: var(--yellow) !important;
  text-transform: none !important;
}
.mitmachen-text-cta-heading {
  display: flex !important;
  width: 100% !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: clamp(18px, 2vw, 34px) !important;
  text-align: left !important;
  text-align-last: auto !important;
}

.mitmachen-text-cta-heading a {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  color: var(--yellow) !important;
  text-align: right !important;
}
.mitmachen-text-cta {
  display: grid !important;
  row-gap: clamp(28px, 2.6vw, 48px) !important;
}

.mitmachen-text-cta-heading {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: clamp(18px, 2vw, 34px) !important;
  color: var(--ink) !important;
  text-align: left !important;
  text-align-last: auto !important;
  text-transform: none !important;
}

.mitmachen-text-cta-heading a {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  color: var(--yellow) !important;
  font-weight: 900 !important;
  text-align: right !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap !important;
}
.hero-focus-eye {
  left: 0 !important;
  transform: translate(-50%, -50%) !important;
}
.trademark-tight {
  display: inline-block;
  margin-left: -0.24em;
  position: relative;
  top: -0.55em;
  font-size: 0.5em;
  line-height: 0;
}

/* mitmachen-buttons-white-marker */

.mitmachen-slide-page .mitmachen-text-cta-heading,
.mitmachen-slide-page .mitmachen-text-cta-heading a,
.mitmachen-slide-page .mitmachen-text-contact-actions a {
  color: #ffffff !important;
}

.mitmachen-slide-page .newspaper-contact-actions a {
  color: var(--yellow) !important;
}
/* mitmachen-locations-row-marker */

.mitmachen-slide-page .mitmachen-locations {
  flex: 0 1 min(62%, 760px) !important;
  margin-left: auto !important;
  color: #ffffff !important;
  font-size: clamp(18px, 1.8vw, 26px) !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  text-align: right !important;
  text-transform: none !important;
  white-space: normal !important;
}

.mitmachen-slide-page .mitmachen-locations-row {
  align-items: flex-start !important;
}
/* mitmachen-white-same-size-marker */

.mitmachen-slide-page .mitmachen-text-cta-heading,
.mitmachen-slide-page .mitmachen-text-cta-heading a,
.mitmachen-slide-page .mitmachen-locations {
  font-size: clamp(18px, 1.8vw, 26px) !important;
  line-height: 1.14 !important;
}
/* newspaper-bottom-actions-marker */

.newspaper-illustration {
  display: flex;
  flex-direction: column;
}

.newspaper-jobs {
  flex: 0 0 auto;
}

.newspaper-contact-actions {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

/* job-pages-marker */
.newspaper-job-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(34px, 2.8vw, 46px);
  margin-top: clamp(8px, 0.8vw, 12px);
  padding: 0.55em 0.9em;
  border: 1.5px solid rgba(65, 125, 113, 0.58);
  background: linear-gradient(180deg, rgba(65, 125, 113, 0.08), rgba(255, 255, 255, 0.92));
  color: var(--yellow) !important;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.job-detail-body {
  min-height: 100vh;
  background:
    radial-gradient(circle, rgba(65, 125, 113, 0.2) 0.75px, transparent 0.95px),
    #f4f2ed;
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  color: var(--ink);
}

.job-detail-main {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: clamp(120px, 12vw, 180px) clamp(28px, 6vw, 96px) clamp(64px, 8vw, 120px);
}

.job-detail-card {
  width: min(100%, 1120px);
  border: 2px solid var(--logo-green);
  background:
    radial-gradient(circle, rgba(65, 125, 113, 0.22) 0.7px, transparent 0.95px),
    rgba(255, 255, 255, 0.9);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  padding: clamp(34px, 5vw, 72px);
  box-shadow: 18px 20px 0 rgba(65, 125, 113, 0.14);
}

.job-detail-kicker {
  margin: 0 0 clamp(14px, 1.6vw, 24px);
  color: var(--logo-green);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
}

.job-detail-card h1 {
  margin: 0 0 clamp(24px, 3vw, 44px);
  color: var(--logo-green);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.job-detail-card p {
  max-width: 980px;
  margin: 0 0 1em;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 700;
}

.job-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.4vw, 22px);
  margin-top: clamp(30px, 3vw, 48px);
}

.job-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72em 1.05em;
  border: 1.8px solid var(--logo-green);
  color: var(--logo-green);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 900;
  text-decoration: none;
}

.job-detail-actions a:first-child {
  color: var(--yellow);
}
/* job-benefits-marker */
.job-benefits {
  list-style: none;
  margin: 0 0 clamp(28px, 3vw, 44px);
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
  max-width: 980px;
}

.job-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.45em;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 900;
}

.job-benefits span {
  color: var(--logo-green);
  flex: 0 0 auto;
  transform: translateY(-0.02em);
}
/* job-copy-marker */
.job-copy {
  max-width: 980px;
  margin: clamp(22px, 2.6vw, 38px) 0 clamp(30px, 3.2vw, 50px);
  display: grid;
  gap: clamp(12px, 1.3vw, 18px);
}

.job-detail-card .job-copy p {
  margin: 0;
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.28;
  font-weight: 600;
}

.job-detail-card .job-copy p:first-child {
  color: var(--logo-green);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}
/* job-detail-logo-marker */
.job-detail-logo {
  display: block;
  width: clamp(170px, 18vw, 260px);
  height: auto;
  margin: 0 0 clamp(24px, 3vw, 42px);
  object-fit: contain;
}
/* job-detail-location-marker */
.job-detail-card h1.job-detail-ad-title {
  margin-bottom: clamp(8px, 1vw, 16px);
}

.job-detail-location {
  margin: 0 0 clamp(24px, 3vw, 44px);
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}
/* job-top-centered-marker */
.job-detail-kicker,
.job-detail-card h1.job-detail-ad-title,
.job-detail-location {
  text-align: center;
}

.job-benefits {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.job-benefits li {
  justify-content: center;
  text-align: center;
}
/* job-benefits-nowrap-marker */
.job-benefits {
  max-width: none;
  width: max-content;
  max-width: 100%;
}

.job-benefits li {
  white-space: nowrap;
  font-size: clamp(15px, 2.25vw, 30px);
}
/* job-logo-gap-marker */
.job-detail-logo {
  margin-bottom: clamp(46px, 5.2vw, 82px);
}
/* job-copy-gap-marker */
.job-copy {
  margin-top: clamp(56px, 6vw, 96px);
}
/* job-copy-checks-marker */
.job-detail-card .job-copy p:not(:first-child) {
  display: flex;
  align-items: flex-start;
  gap: 0.72em;
}

.job-detail-card .job-copy p:not(:first-child)::before {
  content: "\2713";
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  border-radius: 999px;
  background: rgba(65, 125, 113, 0.15);
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.03em);
}
/* job-copy-justify-marker */
.job-copy-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
}
/* job-expectations-marker */
.job-expectations {
  max-width: 980px;
  margin: clamp(56px, 6vw, 96px) 0 clamp(30px, 3.2vw, 50px);
  display: grid;
  gap: clamp(18px, 2vw, 30px);
}

.job-expectations h2,
.job-expectations h3,
.job-expectations p {
  margin: 0;
}

.job-expectations h2 {
  color: var(--logo-green);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.job-expectation-item {
  display: grid;
  gap: clamp(5px, 0.65vw, 10px);
}

.job-expectations h3 {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 900;
}

.job-expectations p {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.28;
  font-weight: 600;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
/* job-expectation-plus-marker */
.job-expectation-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.72em;
  row-gap: clamp(5px, 0.65vw, 10px);
  font-size: clamp(19px, 2vw, 30px);
}

.job-expectation-item::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 1.35em;
  height: 1.35em;
  border-radius: 999px;
  background:
    linear-gradient(#7e4aad, #7e4aad) center / 0.66em 0.12em no-repeat,
    linear-gradient(#7e4aad, #7e4aad) center / 0.12em 0.66em no-repeat,
    rgba(126, 74, 173, 0.16);
  display: block;
  align-self: start;
  transform: translateY(0.03em);
}

.job-expectation-item h3,
.job-expectation-item p {
  grid-column: 2;
}
/* job-bottom-buttons-yellow-marker */
.job-detail-actions a,
.job-detail-actions a:first-child {
  border-color: rgba(65, 125, 113, 0.58) !important;
  color: var(--yellow) !important;
}
/* job-copy-heading-gap-marker */
.job-detail-card .job-copy p:first-child {
  margin-bottom: clamp(10px, 1.3vw, 22px);
}
/* job-expectations-hyphenation-marker */
.job-expectations,
.job-expectations h3,
.job-expectations p {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}
/* job-back-width-align-marker */
.job-detail-actions {
  width: 100%;
  max-width: 980px;
}

.job-detail-actions a:last-child {
  flex: 1 1 auto;
  min-width: clamp(150px, 18vw, 260px);
}
/* job-action-buttons-equal-marker */
.job-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.job-detail-actions a,
.job-detail-actions a:last-child {
  width: 100%;
  min-width: 0;
  flex: initial;
}

.job-detail-actions a:last-child {
  grid-column: 1 / -1;
}
/* job-about-section-marker */
.job-about {
  max-width: 980px;
  margin: clamp(56px, 6vw, 96px) 0 clamp(30px, 3.2vw, 50px);
  display: grid;
  gap: clamp(16px, 1.8vw, 28px);
  hyphens: auto;
  -webkit-hyphens: auto;
}

.job-about h2,
.job-about h3,
.job-about p,
.job-about ul {
  margin: 0;
}

.job-about h2 {
  color: var(--logo-green);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.job-about h3 {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 900;
}

.job-about p,
.job-tasks li {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.28;
  font-weight: 600;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.job-tasks {
  padding-left: 1.2em;
  display: grid;
  gap: clamp(10px, 1.1vw, 16px);
}

.job-about-cta {
  color: var(--logo-green) !important;
  text-align: left !important;
}
/* job-tasks-heading-marker */
.job-about h3.job-tasks-heading {
  color: var(--logo-green);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  margin-top: clamp(28px, 3vw, 48px);
}
/* job-tasks-copy-format-marker */
.job-tasks {
  padding-left: 0;
  list-style: none;
  gap: clamp(12px, 1.3vw, 18px);
}

.job-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 0.72em;
}

.job-tasks li::before {
  content: "\2713";
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  border-radius: 999px;
  background: rgba(65, 125, 113, 0.15);
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.03em);
}

.job-task-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}
/* job-tasks-cta-spacing-marker */
.job-tasks,
.job-task-text {
  hyphens: auto;
  -webkit-hyphens: auto;
}

.job-about-cta {
  color: var(--logo-green) !important;
  font-size: clamp(24px, 2.6vw, 38px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  text-align: left !important;
  margin-top: clamp(32px, 3.4vw, 56px) !important;
}

.job-about-cta strong {
  font-weight: 900;
}

.job-detail-actions {
  margin-top: clamp(54px, 5.8vw, 92px);
}

/* contact-slide-content-marker */
.contact-slide-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.contact-slide-page .section-heading {
  margin-bottom: clamp(36px, 4vw, 64px);
}

.contact-slide-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  transform: scale(0.86);
  transform-origin: center center;
}

.contact-slide-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.contact-slide-people .person-card {
  padding: 0;
  background: transparent;
  border: 0;
}

.contact-slide-people .person-card img {
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: none;
}
.contact-slide-people .person-card h3 {
  margin-top: 0;
  color: var(--blue);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.12;
  white-space: nowrap;
}

.contact-slide-people .person-card p {
  min-height: 48px;
  color: #2d363d;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.32;
}

.contact-slide-people .person-card a {
  color: var(--blue);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.25;
}

.contact-slide-people .person-card a[href^="mailto:"],
.contact-slide-people .person-card a[href^="tel:"] {
  text-decoration: none;
}

.contact-slide-people .person-card a[href^="mailto:"]:hover,
.contact-slide-people .person-card a[href^="mailto:"]:focus-visible,
.contact-slide-people .person-card a[href^="tel:"]:hover,
.contact-slide-people .person-card a[href^="tel:"]:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-slide-people .person-card a[href^="mailto:"] {
  font-size: clamp(12px, 1vw, 13px);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .contact-slide-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .contact-slide-people {
    grid-template-columns: 1fr;
  }
}
/* contact-xing-links-marker */
.contact-xing-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  min-height: 24px;
  margin-top: 10px;
  border: 1px solid var(--blue);
  color: var(--blue) !important;
  font-size: 11px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.contact-xing-icon:hover,
.contact-xing-icon:focus-visible {
  background: var(--blue);
  color: var(--white) !important;
}

/* newspaper-title-subline-marker */
.newspaper-title-subline {
  display: block;
  margin-top: 0.16em;
  font-size: 1em;
  line-height: 1;
}
/* contact-tagline-marker */
.contact-slide-tagline {
  margin: clamp(58px, 6vw, 88px) 0 0;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}
/* contact-image-email-end-align */
@media (min-width: 981px) {
  .contact-slide-people .person-card:nth-child(1) img {
    transform: translateX(-14px);
  }

  .contact-slide-people .person-card:nth-child(2) img {
    transform: translate(-28px, 1px);
  }

  .contact-slide-people .person-card:nth-child(3) img {
    transform: translate(-40px, 16px);
  }

  .contact-slide-people .person-card:nth-child(4) img {
    transform: translate(-62px, -24px) scale(0.92);
    transform-origin: center center;
  }
}
/* contact-image-email-end-align-end */

/* Litfass column treatment for the Mitmachen job advertisement */
.mitmachen-slide-page .mitmachen-newspaper-slot {
  overflow: visible;
  padding: clamp(34px, 3vw, 48px) 0 clamp(42px, 3.6vw, 58px);
}

.mitmachen-slide-page .newspaper-illustration {
  width: min(82%, clamp(350px, 32vw, 510px));
  aspect-ratio: 0.7;
  padding: clamp(48px, 4vw, 64px) clamp(34px, 3vw, 48px) clamp(46px, 3.8vw, 60px);
  overflow: visible;
  background:
    linear-gradient(90deg,
      rgba(23, 27, 31, 0.18) 0%,
      rgba(255, 255, 255, 0.96) 11%,
      #ffffff 45%,
      #f8f8f5 70%,
      rgba(23, 27, 31, 0.2) 100%);
  border: 1.5px solid rgba(23, 27, 31, 0.55);
  border-radius: 7% / 2.5%;
  box-shadow: 18px 20px 28px rgba(23, 27, 31, 0.2);
  color: var(--logo-green);
  transform: none;
  isolation: isolate;
}

.mitmachen-slide-page .newspaper-illustration::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: clamp(-30px, -2.2vw, -22px);
  left: -7%;
  width: 114%;
  height: clamp(44px, 3.5vw, 58px);
  border: 1.5px solid rgba(23, 27, 31, 0.58);
  border-radius: 50%;
  background: linear-gradient(180deg, #fbfbf8 0%, #d8d9d4 72%, #bfc3bd 100%);
  box-shadow: 0 8px 10px rgba(23, 27, 31, 0.14);
  pointer-events: none;
}

.mitmachen-slide-page .newspaper-illustration::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: clamp(-40px, -3vw, -30px);
  width: 120%;
  height: clamp(54px, 4.2vw, 70px);
  border: 1.5px solid rgba(23, 27, 31, 0.62);
  border-radius: 50%;
  background: linear-gradient(180deg, #d7d9d4 0%, #f8f8f5 48%, #b8bcb5 100%);
  box-shadow: 0 12px 18px rgba(23, 27, 31, 0.22);
  pointer-events: none;
}

.mitmachen-slide-page .newspaper-illustration > * {
  position: relative;
  z-index: 2;
}

.mitmachen-slide-page .newspaper-logo {
  width: clamp(155px, 15vw, 205px);
  max-width: 48%;
  mix-blend-mode: multiply;
}

.mitmachen-slide-page .newspaper-title {
  font-size: clamp(27px, 2.6vw, 42px);
}

.mitmachen-slide-page .newspaper-job {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(65, 125, 113, 0.52);
  box-shadow: 0 4px 10px rgba(23, 27, 31, 0.06);
}

.mitmachen-slide-page .newspaper-contact-actions a {
  background: rgba(255, 255, 255, 0.7);
}
/* More realistic Litfass column structure */
.mitmachen-slide-page .mitmachen-newspaper-slot {
  padding: clamp(22px, 2vw, 32px) 0 clamp(38px, 3vw, 50px);
}

.mitmachen-slide-page .litfass-column {
  position: relative;
  display: flex;
  width: min(82%, clamp(350px, 32vw, 510px));
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(18px 22px 18px rgba(23, 27, 31, 0.22));
}

.mitmachen-slide-page .newspaper-illustration {
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.7;
  padding: clamp(42px, 3.5vw, 56px) clamp(34px, 3vw, 48px) clamp(42px, 3.5vw, 56px);
  background:
    radial-gradient(circle at 28% 18%, rgba(65, 125, 113, 0.055) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 67%, rgba(23, 27, 31, 0.045) 0 1px, transparent 1.5px),
    linear-gradient(90deg,
      #b8bdb7 0%,
      #e6e7e2 7%,
      #ffffff 18%,
      #fbfbf8 52%,
      #f1f2ed 82%,
      #b5bab4 100%);
  background-size: 13px 13px, 17px 17px, 100% 100%;
  border: 1px solid rgba(38, 62, 56, 0.72);
  border-radius: 12% / 2%;
  box-shadow:
    inset 34px 0 42px -34px rgba(23, 27, 31, 0.58),
    inset -38px 0 46px -36px rgba(23, 27, 31, 0.62);
  transform: none;
}

.mitmachen-slide-page .newspaper-illustration::before,
.mitmachen-slide-page .newspaper-illustration::after {
  display: none;
}

.mitmachen-slide-page .litfass-crown {
  position: relative;
  z-index: 4;
  width: 116%;
  height: clamp(48px, 3.8vw, 62px);
  margin-bottom: clamp(-23px, -1.7vw, -17px);
  border: 1.5px solid #315f55;
  border-radius: 50% 50% 22% 22% / 62% 62% 24% 24%;
  background: linear-gradient(180deg, #7fa397 0%, #517f73 45%, #315f55 100%);
  box-shadow:
    inset 0 10px 16px rgba(255, 255, 255, 0.28),
    inset 0 -10px 14px rgba(23, 27, 31, 0.25),
    0 7px 0 #294e46,
    0 12px 0 #6f9489;
}

.mitmachen-slide-page .litfass-crown::before {
  content: "";
  position: absolute;
  left: 18%;
  top: clamp(-22px, -1.6vw, -16px);
  width: 64%;
  height: clamp(28px, 2.2vw, 38px);
  border: 1.5px solid #315f55;
  border-radius: 50% 50% 28% 28% / 72% 72% 28% 28%;
  background: linear-gradient(180deg, #8caf9f 0%, #4f7d71 70%, #315f55 100%);
  box-shadow: inset 0 7px 10px rgba(255, 255, 255, 0.24);
}

.mitmachen-slide-page .litfass-crown::after {
  content: "";
  position: absolute;
  left: 46%;
  top: clamp(-39px, -2.8vw, -29px);
  width: 8%;
  aspect-ratio: 1;
  border: 1.5px solid #294e46;
  border-radius: 50%;
  background: #6f9489;
  box-shadow: 0 -8px 0 -2px #315f55;
}

.mitmachen-slide-page .litfass-base {
  position: relative;
  z-index: 3;
  width: 122%;
  height: clamp(48px, 3.8vw, 64px);
  margin-top: clamp(-17px, -1.2vw, -12px);
  border: 1.5px solid #315f55;
  border-radius: 16% 16% 50% 50% / 30% 30% 55% 55%;
  background: linear-gradient(180deg, #315f55 0%, #6f9489 30%, #496f65 64%, #294e46 100%);
  box-shadow:
    inset 0 9px 13px rgba(255, 255, 255, 0.22),
    inset 0 -11px 13px rgba(23, 27, 31, 0.3),
    0 9px 0 #213f39;
}

.mitmachen-slide-page .litfass-base::before {
  content: "";
  position: absolute;
  left: 7%;
  top: -8px;
  width: 86%;
  height: 16px;
  border: 1px solid #315f55;
  border-radius: 50%;
  background: #769b90;
}

.mitmachen-slide-page .litfass-base::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  bottom: -25px;
  width: 84%;
  height: 24px;
  border-radius: 50%;
  background: rgba(23, 27, 31, 0.26);
  filter: blur(8px);
}
/* Keep the Litfass crown and base attached without changing page flow */
.mitmachen-slide-page .litfass-column {
  display: block;
}

.mitmachen-slide-page .litfass-crown {
  position: absolute;
  top: clamp(-38px, -2.8vw, -29px);
  left: -8%;
  width: 116%;
  margin: 0;
}

.mitmachen-slide-page .litfass-base {
  position: absolute;
  right: -11%;
  bottom: clamp(-38px, -2.8vw, -29px);
  width: 122%;
  margin: 0;
}
/* Career copy and display */
.career-slide-page {
  background: #000000;
}

.career-slide-page .career-content {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(30px, 4.5vw, 76px);
  min-height: clamp(520px, 66vh, 820px);
  padding: clamp(24px, 3vw, 48px) clamp(34px, 5.5vw, 96px) clamp(42px, 5vw, 76px);
}

.career-slide-page .career-copy {
  color: #ffffff;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.career-slide-page .career-copy p {
  margin: 0;
}

.career-slide-page .career-copy p + p {
  margin-top: 1.15em;
}

.career-slide-page .career-copy-heading {
  display: block;
  margin-bottom: 1.15em;
  font-size: 1em;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  text-align-last: left;
}

.career-slide-page .career-copy > .career-copy-separated {
  margin-top: 2.35em;
}

.career-slide-page .career-jobs-heading {
  margin-bottom: 1.5em;
  font-size: inherit;
  line-height: 1.5;
  text-align: left;
  text-align-last: left;
}

.career-slide-page .career-jobs-heading .career-copy-heading {
  margin-bottom: 0;
  color: #ff5a5a;
  -webkit-text-stroke: 0.7px currentColor;
  text-shadow:
    0 0 3px rgba(255, 90, 90, 0.72),
    0 0 7px rgba(255, 38, 38, 0.48),
    0 0 13px rgba(255, 20, 20, 0.28);
}

.career-slide-page .career-jobs-arrow {
  display: inline-block;
  margin-left: 0.55em;
  color: #ff5a5a;
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  -webkit-text-stroke: 0.7px currentColor;
  text-shadow:
    0 0 3px rgba(255, 90, 90, 0.72),
    0 0 7px rgba(255, 38, 38, 0.48),
    0 0 13px rgba(255, 20, 20, 0.28);
  transform: translateY(-0.14em);
}

.career-slide-page .career-playlist {
  margin-top: 4.15em;
}

.career-slide-page .career-application-email,
.career-slide-page .career-application-phone {
  margin: 0 0 0.9em;
  text-align: left;
  text-align-last: left;
}

.career-slide-page .career-application-email a,
.career-slide-page .career-application-phone a {
  color: #ff5a5a;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  -webkit-text-stroke: 0.35px currentColor;
  text-shadow:
    0 0 3px rgba(255, 90, 90, 0.72),
    0 0 7px rgba(255, 38, 38, 0.48),
    0 0 13px rgba(255, 20, 20, 0.28);
}

@media (min-width: 1000px) {
  .career-slide-page .career-jobs-heading .career-copy-heading {
    white-space: nowrap;
  }
}

.career-slide-page .career-application-email a:hover,
.career-slide-page .career-application-email a:focus-visible,
.career-slide-page .career-application-email a:active,
.career-slide-page .career-application-phone a:hover,
.career-slide-page .career-application-phone a:focus-visible,
.career-slide-page .career-application-phone a:active {
  color: #ff5a5a;
  text-decoration: underline;
  text-decoration-color: #ff5a5a;
  text-underline-offset: 0.16em;
}

.career-slide-page .career-playlist-heading {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.career-slide-page .career-playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
  margin-top: clamp(14px, 1.4vw, 22px);
}

.career-slide-page .career-playlist-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.career-slide-page .career-playlist-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 248 / 298;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(23, 27, 31, 0.36);
}

.career-slide-page .career-playlist-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-slide-page .career-playlist-cover h3 {
  position: absolute;
  top: 43%;
  left: 7%;
  right: 7%;
  margin: 0;
  color: #ffffff;
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.72);
}

.career-slide-page .career-playlist-cover h3 span {
  display: block;
  margin-top: 0.2em;
}

.career-slide-page .career-playlist-item > a {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(23, 27, 31, 0.2);
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 0 7px 14px rgba(23, 27, 31, 0.28);
  color: #ffffff;
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.career-slide-page .career-playlist-item > a:hover,
.career-slide-page .career-playlist-item > a:focus-visible {
  background: #ffffff;
  color: var(--logo-green);
}

.career-slide-page .career-image-wrap {
  display: grid;
  place-items: center;
}

.career-slide-page .career-display-frame {
  position: relative;
  width: min(100%, clamp(470px, 44vw, 700px));
  aspect-ratio: 1.322 / 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(23, 27, 31, 0.28);
  line-height: 0;
}

.career-slide-page .career-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}

.career-slide-page .career-gallery-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease;
}

.career-slide-page .career-gallery-slide-portrait {
  display: grid;
  place-items: center;
}

.career-slide-page .career-gallery-portrait-media {
  position: relative;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
}

.career-slide-page .career-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.career-slide-page .career-gallery-portrait-media img {
  object-position: center;
}

.career-slide-page .career-gallery-portrait-media > .career-energy-image,
.job-detail-page .job-detail-card > .career-energy-image {
  filter: brightness(0.76) saturate(0.88) contrast(1.06);
}

.career-slide-page .career-gallery-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.career-slide-page .career-gallery-portrait-media .career-gallery-logo {
  position: absolute;
  top: clamp(16px, 2.2vw, 26px);
  left: clamp(16px, 2.2vw, 26px);
  display: block;
  width: clamp(185px, 16vw, 225px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  image-rendering: auto;
}

.career-slide-page .career-gallery-label {
  position: absolute;
  top: 86%;
  left: clamp(16px, 2.2vw, 26px);
  display: block;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
}

.career-slide-page .career-gallery-label-long {
  top: 79%;
  right: clamp(16px, 2.2vw, 26px);
  font-size: clamp(14px, 1.15vw, 18px);
  white-space: normal;
}

.career-slide-page .career-gallery-label-aligned {
  top: 79%;
  font-size: clamp(14px, 1.15vw, 18px);
}

.career-slide-page .career-gallery-label-long > span,
.job-detail-page .job-detail-card-label-long > span {
  display: block;
  white-space: nowrap;
}

.job-detail-page .job-detail-card-label-long > span {
  position: static;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.career-slide-page .career-gallery-label-long > span + span,
.job-detail-page .job-detail-card-label-long > span + span {
  margin-top: 0.2em;
}

.career-slide-page .career-gallery-details {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 4px;
  left: clamp(16px, 2.2vw, 26px);
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
}

.career-slide-page .career-gallery-details:hover,
.career-slide-page .career-gallery-details:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.career-slide-page .career-gallery-overlay-dark-bottom {
  background: linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.76) 100%);
}

.career-slide-page .career-gallery-details-light:hover,
.career-slide-page .career-gallery-details-light:focus-visible {
  text-decoration-color: #ffffff;
}

.job-detail-page .job-detail-card {
  width: clamp(225px, 24vw, 322px);
  height: auto;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #000000;
  box-shadow: none;
}

.job-detail-page .job-detail-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.job-detail-page .job-detail-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.job-detail-page .job-detail-card-overlay-dark-bottom {
  background: linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.76) 100%);
}

.job-detail-page .job-detail-logo {
  position: absolute;
  top: clamp(16px, 2.2vw, 26px);
  left: clamp(16px, 2.2vw, 26px);
  display: block;
  width: min(clamp(185px, 16vw, 225px), calc(100% - 44px));
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.job-detail-page .job-detail-card .job-detail-card-overlay > span {
  top: 86%;
  left: clamp(16px, 2.2vw, 26px);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.job-detail-page .job-detail-card .job-detail-card-overlay > .job-detail-card-label-long {
  top: 79%;
  right: clamp(16px, 2.2vw, 26px);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.15;
  white-space: normal;
}

.job-detail-page .job-detail-card .job-detail-card-overlay > .job-detail-card-label-aligned {
  top: 79%;
  font-size: clamp(14px, 1.15vw, 18px);
}

.job-detail-page .sachbearbeiter-title > span {
  display: block;
}

.job-detail-page .sachbearbeiter-title > span + span {
  margin-top: 0.2em;
}

.career-slide-page .career-display-job-link {
  position: absolute;
  top: 31.8%;
  right: 17.5%;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(8px, 0.9vw, 14px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  transform: matrix(0.94, 0.115, -0.04, 1, 0, 0);
  transform-origin: right center;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.career-slide-page .career-display-job-link:hover,
.career-slide-page .career-display-job-link:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 820px) {
  .career-slide-page .career-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-inline: clamp(22px, 6vw, 44px);
  }

  .career-slide-page .career-copy {
    max-width: 680px;
  }

  .career-slide-page .career-playlist-grid {
    max-width: 360px;
  }
}
/* Global madein2k-inspired typography */
body,
body * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  letter-spacing: 0;
}
/* Black header text and page headings */
.site-header .main-nav a,
.section-heading h2 {
  color: #171b1f !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

.site-header .nav-toggle span {
  background: #171b1f !important;
}
/* White backgrounds for tile detail pages */
.tile-detail-page {
  background: #fff !important;
}
/* Tile artwork replaces visible headings on detail pages */
.tile-detail-page .section-heading {
  display: none;
}

/* Detail artwork occupies the former heading position; copy follows below */
.tile-detail-page .predicate-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(38px, 5vw, 72px);
  min-height: 0;
}

.tile-detail-page .tile-detail-visuals {
  order: 1;
  display: grid;
  width: 100%;
  min-height: 0;
  height: auto;
  margin-left: 0;
  place-items: start;
}

.tile-detail-page .tile-detail-card {
  transform: none;
}

.tile-detail-page .tile-detail-copy {
  order: 2;
  width: min(100%, 760px);
  margin-top: 0;
}
/* Detail pages: lowered artwork at left, copy at right */
.tile-detail-page .predicate-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 6vw, 96px);
}

.tile-detail-page .tile-detail-visuals {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.tile-detail-page .tile-detail-card {
  transform: translateY(clamp(34px, 4vw, 58px));
}

.tile-detail-page .tile-detail-copy {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 760px;
  margin-top: 0;
}

@media (max-width: 760px) {
  .tile-detail-page .predicate-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tile-detail-page .tile-detail-visuals,
  .tile-detail-page .tile-detail-copy {
    grid-column: 1;
  }

  .tile-detail-page .tile-detail-visuals {
    grid-row: 1;
  }

  .tile-detail-page .tile-detail-copy {
    grid-row: 2;
  }

  .tile-detail-page .tile-detail-card {
    transform: none;
  }
}
/* Detail page alignment: lower row, shared top edge, tighter spacing */
@media (min-width: 761px) {
  .tile-detail-page .predicate-content {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(20px, 2.2vw, 34px);
    padding-top: clamp(70px, 7vw, 108px);
  }

  .tile-detail-page .tile-detail-card {
    transform: none;
  }
}
/* Size the left detail column to the artwork itself */
@media (min-width: 761px) {
  .tile-detail-page .predicate-content {
    grid-template-columns: max-content minmax(0, 760px);
    justify-content: start;
  }
}
/* Detail copy below artwork, aligned to the same left edge */
@media (min-width: 761px) {
  .tile-detail-page .predicate-content {
    grid-template-columns: 1fr;
    gap: clamp(42px, 4vw, 62px);
  }

  .tile-detail-page .tile-detail-visuals,
  .tile-detail-page .tile-detail-copy {
    grid-column: 1;
  }

  .tile-detail-page .tile-detail-visuals {
    grid-row: 1;
  }

  .tile-detail-page .tile-detail-copy {
    grid-row: 2;
    width: min(100%, 760px);
  }
}
/* White navigation labels and interaction line on the blue header */
.site-header .main-nav a {
  color: #fff !important;
}

.site-header .main-nav a::after {
  background: #fff;
}
/* Match the lower detail-page edge to the blue patterned header */
.tile-detail-page {
  border-bottom: 0;
}

.tile-detail-page::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 14px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  content: "";
  pointer-events: none;
}
/* Explicit return route on every Service detail page */
.tile-detail-return {
  position: absolute;
  z-index: 6;
  top: clamp(68px, 9vw, 118px);
  left: clamp(18px, 6vw, 82px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071d33;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.tile-detail-return::before {
  content: "←";
  font-size: 20px;
  line-height: 1;
}

.tile-detail-return:hover,
.tile-detail-return:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .tile-detail-page .predicate-content {
    padding-top: 52px;
  }
}
/* Underline only the back label, never the arrow */
.tile-detail-return:hover,
.tile-detail-return:focus-visible {
  text-decoration: none;
}

.tile-detail-return span {
  border-bottom: 1px solid transparent;
}

.tile-detail-return:hover span,
.tile-detail-return:focus-visible span {
  border-bottom-color: currentColor;
}
/* Align detail-page bullet lists with the paragraph edge */
.tile-detail-copy ul {
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
  text-align: left;
  text-align-last: left;
}
/* Keep the supported systems in one responsive line */
.tile-detail-copy .technology-systems-line {
  width: 100%;
  font-size: clamp(7px, 1.53vw, 19.2px);
  line-height: 1.35;
  white-space: nowrap;
}
/* Fokus: transparentes Augenmotiv direkt auf weissem Grund */
.focus-page .mission-eye-slot img.focus-eye {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
  clip-path: none;
}

/* Fokus: weisse Typografie auf schwarzem Grund */
.focus-page .section-heading h2,
.focus-page .content-image-text {
  color: #ffffff;
}

.focus-page {
  background: #000000;
}

.focus-page .section-heading h2,
.focus-page .content-image-text {
  color: #ffffff !important;
}

/* Fokus: identische Typografie fuer beide Textabsaetze */
.focus-page .focus-copy-paragraph {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-align: justify;
  hyphens: auto;
}
.focus-page .focus-copy-paragraph + .focus-copy-paragraph {
  margin-top: 1.55em;
}
.focus-page .focus-copy {
  transform: translateY(-9px);
}

/* Fokus: stabile, von Seiteninhalten unabhaengige Grafik */
.focus-page .mission-eye-slot img.focus-eye-fixed {
  display: block !important;
  width: 402px !important;
  height: 402px !important;
  min-width: 402px !important;
  min-height: 402px !important;
  max-width: 402px !important;
  max-height: 402px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  clip-path: none !important;
  transform: translateY(-15px) !important;
  flex: 0 0 402px;
}
@media (max-width: 520px) {
  .focus-page .mission-eye-slot img.focus-eye-fixed {
    width: min(402px, 82vw) !important;
    height: min(402px, 82vw) !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }
}

/* Fokus: zehn feste Binärzeichen-Ringe um das Auge */
.focus-page .focus-binary-graphic {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  transform: translateY(-15px);
  isolation: isolate;
}
.focus-page .focus-binary-graphic img.focus-eye-fixed {
  position: absolute !important;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
}
.focus-page .focus-binary-rings {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.focus-page .focus-binary-digit {
  fill: #ffffff;
  font-family: Consolas, 'Courier New', monospace !important;
  font-size: 14px;
  font-weight: 500;
  text-anchor: middle;
  dominant-baseline: central;
}

.focus-page .focus-binary-graphic {
  transform: translateY(0);
}

.focus-page .focus-binary-digit {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.72));
}

/* Fokus: Binärstruktur läuft weich in einem unsichtbaren Rahmen aus */
.focus-page .focus-binary-graphic {
  overflow: hidden;
}
.focus-page .focus-binary-rings {
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at center, #000 0 52%, rgba(0, 0, 0, 0.96) 66%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.28) 91%, transparent 100%);
  mask-image: radial-gradient(circle at center, #000 0 52%, rgba(0, 0, 0, 0.96) 66%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.28) 91%, transparent 100%);
}

/* Fokus: kreisförmige unsichtbare Begrenzung */
.focus-page .focus-binary-graphic {
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
}

.focus-page .focus-binary-rings {
  opacity: 0.72;
}

/* Fokus: weicher Verlauf der Binärzeichen in den schwarzen Hintergrund */
.focus-page .focus-binary-rings {
  -webkit-mask-image: radial-gradient(circle at center, #000 0 60%, rgba(0, 0, 0, 0.98) 68%, rgba(0, 0, 0, 0.78) 76%, rgba(0, 0, 0, 0.48) 84%, rgba(0, 0, 0, 0.2) 91%, rgba(0, 0, 0, 0.06) 96%, transparent 100%);
  mask-image: radial-gradient(circle at center, #000 0 60%, rgba(0, 0, 0, 0.98) 68%, rgba(0, 0, 0, 0.78) 76%, rgba(0, 0, 0, 0.48) 84%, rgba(0, 0, 0, 0.2) 91%, rgba(0, 0, 0, 0.06) 96%, transparent 100%);
}

.focus-page .focus-binary-rings {
  -webkit-mask-image: radial-gradient(circle at center, #000 0 50%, rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 0.68) 67%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.18) 85%, rgba(0, 0, 0, 0.055) 92%, transparent 98%);
  mask-image: radial-gradient(circle at center, #000 0 50%, rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 0.68) 67%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.18) 85%, rgba(0, 0, 0, 0.055) 92%, transparent 98%);
}




/* Leitlinien: Kompass ersetzt die bisherige Figur */
.guidelines-image-slot .guidelines-compass {
  display: block;
  width: min(74%, 430px);
  height: auto;
  margin: clamp(92px, 9vw, 136px) auto 0;
  overflow: visible;
  filter: drop-shadow(0 14px 18px rgba(19, 53, 48, 0.2));
}
.guidelines-compass .compass-ring,
.guidelines-compass .compass-ticks {
  fill: none;
  stroke: #417d71;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guidelines-compass .compass-ring-outer {
  stroke-width: 5;
}
.guidelines-compass .compass-ring-inner {
  stroke-width: 2;
  opacity: 0.55;
}
.guidelines-compass .compass-ticks {
  stroke-width: 5;
}
.guidelines-compass .compass-cardinals {
  fill: #171b1f;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  text-anchor: middle;
}
.guidelines-compass .compass-needle-north {
  fill: #417d71;
}
.guidelines-compass .compass-needle-south {
  fill: #171b1f;
}
.guidelines-compass .compass-hub {
  fill: #ffffff;
  stroke: #417d71;
  stroke-width: 5;
}
.guidelines-compass .compass-hub-center {
  fill: #171b1f;
}
.guidelines-image-slot .guidelines-compass {
  width: min(50%, 300px);
  margin: clamp(92px, 9vw, 136px) 0 0 auto;
}

.guidelines-image-slot .guidelines-compass {
  width: min(46%, 280px);
  margin: 0 0 0 auto;
}

/* Leitlinien: fotografische Kompassgrafik */
.guidelines-image-slot img.guidelines-compass-image {
  display: block;
  width: min(46%, 280px);
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(19, 53, 48, 0.2));
}

.guidelines-image-slot img.guidelines-compass-image {
  width: min(40%, 230px);
  transform: translateY(-78px);
}

/* Kompass-Seite: Anordnung analog zur Fokus-Seite */
.guidelines-page {
  background: #ffffff;
  min-height: max(calc(100vh - 98px), 820px);
}
.guidelines-page .compass-copy {
  width: 54%;
  margin-top: clamp(14px, 1.4vw, 26px);
  margin-left: clamp(34px, 5.5vw, 96px);
  color: #171b1f;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  transform: translateY(-3px);
}
.guidelines-page .compass-copy p {
  margin: 0;
  font: inherit;
  letter-spacing: 0;
}
.guidelines-page .compass-copy p + p {
  margin-top: 1.55em;
}
.guidelines-page .compass-copy,
.guidelines-page .compass-copy .principle-keyword {
  color: #000000 !important;
}
#einblicke.moving-tiles-page {
  background: #000000 !important;
}
#einblicke .section-heading h2 {
  color: #ffffff !important;
}
#einblicke .moving-tiles-controls button:not(.is-active):not(:hover):not(:focus-visible) {
  background: #ffffff;
}
#einblicke .moving-tiles-controls button:not(.is-active):hover,
#einblicke .moving-tiles-controls button:not(.is-active):focus-visible {
  border-color: #235d72;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
}

/* Startseite: Reihenfolge der beiden Inhaltsstreifen tauschen. */
@media (min-width: 981px) {
  .hero > .hero-facts:not(.hero-facts-top) {
    grid-template-columns: repeat(4, minmax(0, 220px));
    column-gap: clamp(36px, 5vw, 72px);
    justify-content: center;
    height: 180px;
    overflow: visible;
    transform: translateY(-449px);
  }

  .hero > .hero-facts.hero-facts-top {
    top: 677px;
    height: 180px;
    min-height: 180px;
  }

  .hero > .hero-facts.hero-facts-top .hero-top-item {
    min-height: 180px;
    padding: 52px 14px;
  }
}

.hero > .hero-facts:not(.hero-facts-top) strong {
  color: #235d72;
  font-size: 48px;
}

.hero > .hero-facts:not(.hero-facts-top) span {
  width: min(100%, 220px);
  min-height: 2.4em;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
}

.hero > .hero-facts:not(.hero-facts-top) .hero-metrics-slogan {
  position: absolute;
  top: -68px;
  right: 0;
  left: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.hero > .hero-facts:not(.hero-facts-top) .hero-metrics-slogan span {
  width: 100%;
  min-height: 0;
  color: #235d72;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero > .hero-facts.hero-facts-top {
  display: block;
  overflow: hidden;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  min-height: 180px;
  padding: 0;
  background: transparent;
  animation: hero-buzz-marquee 108s linear infinite;
  will-change: transform;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-set {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  flex-direction: row;
  align-items: center;
  gap: clamp(56px, 6vw, 96px);
  min-height: 180px;
  padding: 0 48px;
  background: transparent;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-set .hero-top-item {
  display: block;
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  padding: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-set .hero-brand-case {
  text-transform: uppercase;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-set .hero-top-item-accent {
  color: #235d72;
}

.hero > .hero-facts.hero-facts-top .hero-buzz-set sup {
  position: relative;
  top: -0.35em;
  font-size: 0.62em;
  line-height: 0;
}

@keyframes hero-buzz-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > .hero-facts.hero-facts-top .hero-buzz-track {
    animation: none;
  }
}
#einblicke .moving-tiles-stage::before {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 38%, transparent 100%);
}
#einblicke .moving-tiles-stage::after {
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.72) 38%, transparent 100%);
}

#impressum.legal {
  color: #ffffff;
  background: #000000;
}

#impressum .section-heading .eyebrow,
#impressum .section-heading h2 {
  color: #ffffff !important;
}

#impressum .legal-grid p {
  border: 1px solid rgba(35, 93, 114, 0.72);
  border-radius: 0;
  color: #ffffff;
  background-color: #071d33;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
}

#impressum .legal-grid a {
  color: #ffffff;
}

#impressum .legal-grid a[href^="tel:"]:hover,
#impressum .legal-grid a[href^="tel:"]:focus-visible,
#impressum .legal-grid a[href^="mailto:"]:hover,
#impressum .legal-grid a[href^="mailto:"]:focus-visible {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

#impressum .legal-action-card {
  display: grid;
  place-items: center;
}

#impressum .legal-imprint-button {
  display: inline-block;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

#impressum .legal-imprint-button:hover,
#impressum .legal-imprint-button:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

.impressum-detail-copy {
  max-width: min(100%, 980px) !important;
}

.impressum-detail-copy h3 {
  margin: 2em 0 0.65em;
  color: #ffffff;
  font-size: 1em;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: 0;
}

.impressum-detail-copy h3:first-child {
  margin-top: 0;
}

.impressum-detail-copy p {
  margin: 0;
}

.impressum-detail-copy p + p {
  margin-top: 1.15em;
}

.impressum-detail-copy a {
  color: #ffffff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.impressum-detail-copy .impressum-whistleblower-link {
  display: inline;
  text-decoration: none;
}

.impressum-detail-card {
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 3px 3px, 100% 100%;
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
}

.privacy-detail-card span {
  right: 18px;
  font-size: clamp(14px, 1.45vw, 21px);
  overflow-wrap: anywhere;
}

.privacy-detail-copy .privacy-section-title {
  margin-top: 3em;
}

.privacy-detail-copy .privacy-section-title:first-child,
.privacy-detail-copy > h3:first-child + .privacy-section-title {
  margin-top: 2em;
}

.privacy-detail-copy .privacy-list {
  display: block;
  margin: 0.9em 0 1.3em;
  padding-left: 1.35em;
  list-style: disc outside;
}

.privacy-detail-copy .privacy-list li {
  display: list-item;
  margin: 0 0 0.55em;
  padding: 0;
  list-style: inherit;
}

.privacy-detail-copy .privacy-list li::before {
  content: none;
}

@media (max-width: 640px) {
  .site-footer {
    display: flex;
    gap: 14px;
  }

  .site-footer .footer-logo {
    width: min(190px, 52vw);
  }

  .footer-copyright {
    max-width: 120px;
    font-size: 10px;
  }
}
#einblicke .moving-tile-02,
.tile-detail-page .moving-tile-02 {
  background-image: url("./assets/process-cycle.svg?v=5"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 91% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-03,
.tile-detail-page .moving-tile-03 {
  background-image: url("./assets/telephone-dial.svg?v=15"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 91% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-04,
.tile-detail-page .moving-tile-04 {
  background-image: url("./assets/at-symbol-circle.svg?v=3"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 90% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-05,
.tile-detail-page .moving-tile-05 {
  background-image: url("./assets/euro-symbol-circle.svg?v=3"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 90% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-cx,
.tile-detail-page .moving-tile-cx {
  background-image: url("./assets/cx-symbol-circle.svg?v=1"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 90% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-quality,
.tile-detail-page .moving-tile-quality {
  background-image: url("./assets/quality-ok-circle.svg?v=2"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 90% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-09,
.tile-detail-page .moving-tile-09 {
  background-image: url("./assets/wissen-sign-circle.svg?v=5"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 90% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-01,
.tile-detail-page .moving-tile-01 {
  background-image: url("./assets/binary-code-green.svg?v=3"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: 88% auto, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
#einblicke .moving-tile-10,
.tile-detail-page .moving-tile-10 {
  background-image: url("./assets/network-spiderweb.svg?v=2"), radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px), linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-position: center, 0 0, center;
  background-size: cover, 3px 3px, cover;
  background-repeat: no-repeat, repeat, no-repeat;
}
.tile-detail-page {
  background: #000000 !important;
  color: #ffffff !important;
  min-height: 100vh;
}
.tile-detail-page .tile-detail-copy,
.tile-detail-page .tile-detail-copy p,
.tile-detail-page .tile-detail-copy li,
.tile-detail-page .tile-detail-copy strong,
.tile-detail-page .tile-detail-return {
  color: #ffffff !important;
}

.tile-detail-page:not(.job-detail-page) .tile-detail-copy > p:first-child {
  font-weight: 800;
}

.tile-detail-page .tile-detail-copy > .sales-closing-line,
.tile-detail-page .tile-detail-copy > .service-closing-line {
  margin-top: 1.5em;
  font-weight: 800;
}

.job-detail-page .job-copy-centered {
  width: 100%;
  text-align: center;
}

.job-detail-page .energy-expert-copy {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.job-detail-page .energy-expert-copy * {
  font-family: inherit !important;
  letter-spacing: 0;
}

.job-detail-page .energy-expert-copy h3 {
  margin: 2.25em 0 0.75em;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.job-detail-page .energy-expert-copy h3:first-child { margin-top: 0; }
.job-detail-page .energy-expert-copy .energy-expert-callout {
  margin: 0 0 1em;
}
.job-detail-page .energy-expert-copy p { margin: 0 0 1em; }
.job-detail-page .energy-expert-copy ul {
  display: grid;
  gap: 0.45em;
  margin: 0 0 1.25em;
  padding: 0;
  list-style: none;
}
.job-detail-page .energy-expert-copy li {
  position: relative;
  padding-left: 1.35em;
  text-align: left;
}

.job-detail-page .energy-expert-copy li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9em;
  line-height: inherit;
}
.job-detail-page .energy-expert-copy a {
  color: #ffffff;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.job-detail-page .energy-expert-copy a:hover {
  text-decoration: underline;
}

.job-detail-page .energy-expert-copy .energy-expert-contact-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.job-detail-page .energy-expert-copy .energy-expert-contact-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.12em;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: 160ms ease;
}

.job-detail-page .energy-expert-copy .energy-expert-contact-link:hover::after,
.job-detail-page .energy-expert-copy .energy-expert-contact-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
.job-detail-page .energy-expert-copy .energy-expert-closing { margin-top: 2em; }

.job-detail-page .sachbearbeiter-copy p strong,
.job-detail-page .sachbearbeiter-copy li strong {
  font-weight: 400;
}

.job-detail-page .sachbearbeiter-copy .energy-expert-callout {
  font-weight: 400;
}

.job-detail-page .customer-service-copy,
.job-detail-page .customer-service-copy * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  letter-spacing: 0;
}

.job-detail-page .customer-service-copy p strong,
.job-detail-page .customer-service-copy li strong {
  font-weight: 400;
}

.job-detail-page .customer-service-copy .energy-expert-callout {
  font-weight: 400;
}

.job-detail-page .customer-service-copy .customer-service-callout-heading {
  margin: 0 0 1em;
  font-weight: 800;
}

.job-detail-page .energy-expert-copy .job-callout-heading {
  margin: 0 0 1em;
  font-weight: 800;
}

.job-detail-page .job-copy-centered ul {
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}

.job-detail-page .job-copy-centered p,
.job-detail-page .job-copy-centered li {
  text-align: center !important;
  text-align-last: center !important;
}

.job-detail-page .job-copy-centered ~ p:has(> strong:first-child) {
  margin-top: 1.4em;
}

.job-detail-page .job-copy-centered .job-role-line {
  margin-top: 1.5em;
}

.job-detail-page .job-copy-centered .job-location-line {
  margin-bottom: 1.5em;
}

.job-detail-page .tile-detail-copy > .job-section-break {
  margin-top: 2.2em !important;
}

.job-detail-page .job-du-list {
  display: grid;
  gap: 0.9em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-detail-page .job-du-list li {
  position: relative;
  padding-left: 1.4em;
}

.job-detail-page .job-du-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0.12em;
  width: 0.48em;
  height: 0.48em;
  border: 1px solid #ff5a5a;
  border-radius: 50%;
  background: #d60909;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 8px rgba(255, 38, 38, 0.95),
    0 0 20px rgba(255, 20, 20, 0.72);
  transform: translateY(-50%);
}

.job-detail-page .job-benefit-heading {
  position: relative;
  padding-left: 1.4em;
}

.job-detail-page .job-benefit-heading::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0.12em;
  width: 0.48em;
  height: 0.48em;
  border: 1px solid #72ffac;
  border-radius: 50%;
  background: #16c96b;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 8px rgba(32, 255, 128, 0.95),
    0 0 20px rgba(16, 224, 104, 0.72);
  transform: translateY(-50%);
}
.guidelines-page .compass-image-slot {
  display: grid;
  place-items: center;
  position: relative;
}
.guidelines-page .compass-image-slot img.compass-image-fixed {
  display: block !important;
  width: 402px !important;
  height: 402px !important;
  min-width: 402px !important;
  min-height: 402px !important;
  max-width: 402px !important;
  max-height: 402px !important;
  margin: 0 auto !important;
  object-fit: contain;
  transform: translateY(-55px);
  filter: none;
}
@media (max-width: 760px) {
  .guidelines-page .compass-copy {
    width: 100%;
    margin-left: 0;
  }
  .guidelines-page .compass-image-slot img.compass-image-fixed {
    width: min(402px, 82vw) !important;
    height: min(402px, 82vw) !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }
}
/* Kompass: sichtbarer Durchmesser entspricht dem Binärkreis der Fokus-Seite */
.guidelines-page .compass-image-slot img.compass-image-fixed {
  width: 550px !important;
  height: 550px !important;
  min-width: 550px !important;
  min-height: 550px !important;
  max-width: 550px !important;
  max-height: 550px !important;
  transform: translateY(0);
}

.guidelines-page .compass-image-slot img.compass-image-fixed,
.guidelines-page .compass-image-slot .compass-pattern-disc {
  grid-area: 1 / 1;
}

.guidelines-page .compass-image-slot .compass-pattern-disc {
  z-index: 2;
  width: 122px;
  aspect-ratio: 1;
  border: 4px solid #202224;
  border-radius: 50%;
  transform: translateY(2px);
  background:
    linear-gradient(#000, #000) center / 2px 100% no-repeat,
    linear-gradient(90deg, #000, #000) center / 100% 2px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0.85px, transparent 1.1px),
    linear-gradient(90deg, #071d33 0%, #235d72 100%);
  background-size: 2px 100%, 100% 2px, 3px 3px, 100% 100%;
}

.guidelines-page .compass-image-slot .compass-pattern-disc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  transform: translate(-50%, -50%);
}
@media (max-width: 760px) {
  .guidelines-page .compass-image-slot img.compass-image-fixed {
    width: min(550px, 92vw) !important;
    height: min(550px, 92vw) !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }
}
#karriere.career-slide-page {
  background: #000000 !important;
}

#karriere .section-heading h2,
#karriere .career-copy,
#karriere .career-playlist-heading {
  color: #ffffff !important;
}
