/* =========================================================
   BEYOND STEPS — Wirkmodell V0.1
   Eigene CSS-Datei für /html/subs/wirkmodell.html
   Basis: Über-mich-Seite
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3/source-sans-3-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bruno Ace SC";
  src: url("../assets/fonts/bruno-ace-sc/bruno-ace-sc-v7-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Michroma";
  src: url("../assets/fonts/michroma/michroma-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: "Bruno Ace SC", sans-serif;
  --font-brand-sub: "Michroma", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-ui: "Inter", sans-serif;

  --color-bg: #02060a;
  --color-text-main: #c9edf3;
  --color-text-strong: #e6f8fb;
  --color-text-soft: rgba(201, 237, 243, 0.84);
  --color-text-faint: rgba(159, 203, 213, 0.68);
  --color-gold: rgba(209, 171, 97, 0.86);
  --color-gold-soft: rgba(209, 171, 97, 0.38);
  --color-link-hover: rgba(240, 221, 171, 0.96);

  --page-padding-x: 54px;
  --page-padding-y: 38px;
  --page-width: 1500px;
  --wirkmodell-wheel-size: 560px;
  --wirkmodell-stage-gap: 0px;
  --wirkmodell-cutout-size: 617px;
  --wirkmodell-cutout-gap: 25px;
  --wirkmodell-copy-shift: calc((var(--wirkmodell-cutout-size) / 2) - var(--wirkmodell-cutout-gap));
  --wirkmodell-card-gold-a: rgba(216, 193, 138, 0.92);
  --wirkmodell-card-gold-b: rgba(216, 193, 138, 0.34);
  --wirkmodell-card-gold-c: rgba(216, 193, 138, 0.04);

  --wirkmodell-svg-offset-x: -3px;
  --wirkmodell-svg-offset-y: 2px;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-main);
  background: var(--color-bg);
  font-family: var(--font-body);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wirkmodell-page {
  position: relative;
  min-height: 100svh;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.40) 38%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.38) 100%),
    radial-gradient(circle at 28% 42%, rgba(55, 92, 104, 0.16) 0%, rgba(55, 92, 104, 0) 42%),
    url("../assets/img/backgrounds/bg-general-hd.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.78) saturate(0.98);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 74%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: var(--page-padding-y) var(--page-padding-x) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-logo {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.legal-nav a {
  color: rgba(163, 222, 232, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--color-link-hover);
  text-shadow: 0 0 12px rgba(220, 194, 136, 0.20);
}

.site-logo-link:focus-visible,
.site-nav a:focus-visible,
.legal-nav a:focus-visible {
  outline: 1px solid rgba(220, 194, 136, 0.72);
  outline-offset: 4px;
}

.wirkmodell-hero {
  width: min(100%, var(--page-width));
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  padding: 75px var(--page-padding-x) 96px;
}

.wirkmodell-hero__header {
  width: min(100%, 980px);
}

.wirkmodell-kicker {
  margin: 0;
  color: rgba(209, 171, 97, 0.86);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.62rem, 0.7vw, 0.82rem);
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wirkmodell-hero__title {
  margin: 12px 0 0;
  font-family: var(--font-brand);
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: transparent;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 36%, #49b5c7 72%, #276871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.wirkmodell-line {
  display: block;
  width: 820px;
  max-width: 72%;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 52%, rgba(209, 171, 97, 0) 100%);
  box-shadow: 0 0 10px rgba(209, 171, 97, 0.08);
}

.wirkmodell-stage {
  display: grid;
  grid-template-columns: var(--wirkmodell-wheel-size) minmax(0, 1fr);
  align-items: start;
  gap: var(--wirkmodell-stage-gap);
  margin-top: 92px;
}

/* Fix: Die Textbox schmiegt sich optisch an das Wheel an,
   liegt als rechteckiges Element aber teilweise über dem Wheel.
   Darum muss das Wheel als Interaktionsfläche über der Textbox liegen. */
.wirkmodell-stage__wheel-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 8;
  pointer-events: auto;
}

.wirkmodell-stage__wheel-stack {
  position: relative;
  z-index: 8;
  width: min(100%, var(--wirkmodell-wheel-size));
  aspect-ratio: 1 / 1;
  isolation: isolate;
  pointer-events: auto;
}

.wirkmodell-stage__wheel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95) saturate(0.90) contrast(1.02);
}

.wirkmodell-stage__svg {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: auto;

  transform: translate(
    var(--wirkmodell-svg-offset-x),
    var(--wirkmodell-svg-offset-y)
  );
}

.wirkmodell-stage__svg :not(.wheel-hit) {
  pointer-events: none;
}

.wirkmodell-stage__copy {
  position: relative;
  z-index: 2;
  pointer-events: none;
  width: calc(100% + var(--wirkmodell-copy-shift));
  min-height: var(--wirkmodell-wheel-size);
  margin-left: calc(0px - var(--wirkmodell-copy-shift));
  padding: 34px 34px 34px calc((var(--wirkmodell-cutout-size) / 2) + 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: none;
}

.wirkmodell-stage__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      var(--wirkmodell-card-gold-a) 0%,
      var(--wirkmodell-card-gold-b) 38%,
      var(--wirkmodell-card-gold-c) 100%
    ) top left / 100% 1px no-repeat,
    linear-gradient(
      90deg,
      var(--wirkmodell-card-gold-a) 0%,
      var(--wirkmodell-card-gold-b) 38%,
      var(--wirkmodell-card-gold-c) 100%
    ) bottom left / 100% 1px no-repeat,
    linear-gradient(
      90deg,
      rgba(23, 97, 131, 0.34) 0%,
      rgba(22, 96, 129, 0.22) 34%,
      rgba(15, 61, 83, 0.10) 72%,
      rgba(10, 34, 47, 0.03) 100%
    );
  -webkit-mask: radial-gradient(
    circle calc(var(--wirkmodell-cutout-size) / 2) at 0 50%,
    transparent 0 calc(var(--wirkmodell-cutout-size) / 2),
    #000 calc(var(--wirkmodell-cutout-size) / 2 + 1px)
  );
  mask: radial-gradient(
    circle calc(var(--wirkmodell-cutout-size) / 2) at 0 50%,
    transparent 0 calc(var(--wirkmodell-cutout-size) / 2),
    #000 calc(var(--wirkmodell-cutout-size) / 2 + 1px)
  );
}

.wirkmodell-stage__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 42% 50%, rgba(85, 208, 226, 0.06) 0%, rgba(85, 208, 226, 0) 34%);
  -webkit-mask: radial-gradient(
    circle calc(var(--wirkmodell-cutout-size) / 2) at 0 50%,
    transparent 0 calc(var(--wirkmodell-cutout-size) / 2),
    #000 calc(var(--wirkmodell-cutout-size) / 2 + 1px)
  );
  mask: radial-gradient(
    circle calc(var(--wirkmodell-cutout-size) / 2) at 0 50%,
    transparent 0 calc(var(--wirkmodell-cutout-size) / 2),
    #000 calc(var(--wirkmodell-cutout-size) / 2 + 1px)
  );
}

.wirkmodell-stage__copy > * {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.wirkmodell-stage__lead,
.wirkmodell-stage__copy p {
  max-width: 740px;
  margin: 0;
  padding: 0 0 0 33px;
  color: rgba(223, 242, 247, 0.90);
  font-size: clamp(1.08rem, 1.18vw, 1.30rem);
  line-height: 1.58;
  letter-spacing: 0.006em;
  text-wrap: pretty;
}

.wirkmodell-stage__copy > .wirkmodell-stage__lead {
  color: rgba(235, 246, 249, 0.96);
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.045em;
  transform: translateY(-25px);
}

.wirkmodell-stage__copy p:not(.wirkmodell-stage__lead) {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  line-height: 1.58;
  letter-spacing: 0.003em;
}

.wirkmodell-stage__copy p + p {
  margin-top: 18px;
}


.wirkmodell-default {
  max-width: 980px;
  padding-left: 0;
}

.wirkmodell-default__title {
  margin: 0;
  max-width: none;
  font-family: var(--font-brand);
  font-size: clamp(1.90rem, 2.9vw, 1.90rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.045em;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(
    90deg,
    #d8f4f8 0%,
    #95dce7 34%,
    #49b5c7 68%,
    #276871 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.wirkmodell-default__line {
  display: block;
  width: min(720px, 86%);
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.82) 0%,
    rgba(205, 168, 99, 0.34) 52%,
    rgba(205, 168, 99, 0) 100%
  );
  box-shadow: 0 0 8px rgba(205, 168, 99, 0.08);
}

/* stärkerer Selektor, damit .wirkmodell-stage__copy p NICHT gewinnt */
.wirkmodell-stage__copy p.wirkmodell-default__eyebrow {
  margin: 10px 0 0;
  padding-left: 0;
  color: rgba(192, 229, 236, 0.70);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.58rem, 0.72vw, 0.82rem);
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wirkmodell-default__text {
  margin-top: 28px;
}

.wirkmodell-stage__copy .wirkmodell-default__text p {
  margin: 0;
  padding-left: 0;
  max-width: 850px;
  color: rgba(210, 235, 241, 0.86);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  line-height: 1.54;
  letter-spacing: 0.004em;
  text-wrap: pretty;
}

.wirkmodell-stage__copy .wirkmodell-default__text p + p {
  margin-top: 18px;
}

/* stärkerer Selektor, damit die Meta nicht eingerückt wird */
.wirkmodell-stage__copy p.wirkmodell-default__meta {
  margin: 28px 0 0;
  padding-left: 0;
  max-width: 900px;
  color: rgba(179, 207, 214, 0.78);
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  line-height: 1.62;
  letter-spacing: 0.004em;
}


.site-footer {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.privacy-note {
  margin: 0;
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 1120px) {
  :root {
    --page-padding-x: 18px;
    --page-padding-y: 20px;
  }

  .page-bg {
    background-position: 74% center;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-logo {
    width: 34px;
  }

  .site-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .wirkmodell-hero {
    min-height: calc(100svh - 74px);
    padding-top: 55px;
    padding-bottom: 78px;
  }

  .wirkmodell-hero__title {
    font-size: clamp(1.65rem, 8.6vw, 2.55rem);
    letter-spacing: 0.035em;
  }

  .wirkmodell-line {
    width: min(280px, 72%);
    margin-top: 12px;
  }


  .wirkmodell-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .wirkmodell-stage__wheel-wrap {
    justify-content: center;
  }

  .wirkmodell-stage__wheel-stack {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .wirkmodell-stage__copy {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 50px 22px 32px;
    border-radius: 0;
  }

  .wirkmodell-stage__copy::before {
    background:
      linear-gradient(
        90deg,
        var(--wirkmodell-card-gold-a) 0%,
        var(--wirkmodell-card-gold-b) 38%,
        var(--wirkmodell-card-gold-c) 100%
      ) top left / 100% 1px no-repeat,
      linear-gradient(
        90deg,
        var(--wirkmodell-card-gold-a) 0%,
        var(--wirkmodell-card-gold-b) 38%,
        var(--wirkmodell-card-gold-c) 100%
      ) bottom left / 100% 1px no-repeat,
      linear-gradient(
        90deg,
        rgba(23, 97, 131, 0.24) 0%,
        rgba(22, 96, 129, 0.16) 34%,
        rgba(15, 61, 83, 0.08) 72%,
        rgba(10, 34, 47, 0.03) 100%
      );
    -webkit-mask: none;
    mask: none;
  }

  .wirkmodell-stage__copy::after {
    display: none;
  }

  .wirkmodell-stage__copy p:not(.wirkmodell-stage__lead) {
    padding-left: 0;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .wirkmodell-stage__copy > .wirkmodell-stage__lead {
    padding-left: 0;
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 1.08;
    transform: none;
  }

  .wirkmodell-stage__copy p + p {
    margin-top: 24px;
  }


  .wirkmodell-default {
    padding-left: 0;
  }

  .wirkmodell-default__title {
    font-size: clamp(1.55rem, 8vw, 2.5rem);
    line-height: 1.12;
    white-space: normal;
  }

  .wirkmodell-default__line {
    width: min(260px, 78%);
    margin-top: 10px;
  }

  .wirkmodell-stage__copy p.wirkmodell-default__eyebrow {
    margin-top: 14px;
    padding-left: 0;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .wirkmodell-default__text {
    margin-top: 22px;
  }

  .wirkmodell-stage__copy .wirkmodell-default__text p {
    padding-left: 0;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .wirkmodell-stage__copy p.wirkmodell-default__meta {
    margin-top: 22px;
    padding-left: 0;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .site-footer {
    padding: 0 18px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-note,
  .legal-nav a {
    font-size: 0.67rem;
  }

  .legal-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}



/* =========================================================
   Wirkmodell — SVG Element-Beschriftungen
   15 Elemente / 22 Textzeilen wegen zweizeiliger Begriffe
   ========================================================= */

.wirkmodell-stage__svg .wheel-label--item {
  font-family: var(--font-brand-sub);
  fill: rgba(34, 174, 192, 0.92);
  font-size: 14.2px;
  font-weight: 400;
  letter-spacing: 0.008em;
  paint-order: stroke fill;
  stroke: rgba(2, 6, 10, 0.42);
  stroke-width: 0.28px;
  stroke-linejoin: round;
}

.wirkmodell-stage__svg .wheel-label--oe {
  font-family: var(--font-brand-sub);
  fill: rgba(191, 216, 199, 0.96);
  font-size: 31.8px;
  font-weight: 400;
  letter-spacing: 0.02em;
  paint-order: stroke fill;
  stroke: rgba(2, 6, 10, 0.46);
  stroke-width: 0.36px;
  stroke-linejoin: round;
}

/* =========================================================
   Wirkmodell — SVG Hoverflächen vorbereiten
   Die Flächen bleiben vorerst sichtbar.
   ========================================================= */

.wirkmodell-stage__svg .wheel-hit {
  cursor: pointer;
  pointer-events: all !important;
  fill: rgb(216, 193, 138);
  fill-opacity: 0;
  stroke: rgba(216, 193, 138, 0.72);
  stroke-opacity: 0;
  stroke-width: 0.9px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  vector-effect: non-scaling-stroke;
  transition:
    fill-opacity 180ms ease,
    stroke-opacity 180ms ease,
    filter 180ms ease;
}

.wirkmodell-stage__svg .wheel-hit:hover,
.wirkmodell-stage__svg .wheel-hit:focus-visible,
.wirkmodell-stage__svg .wheel-hit.is-debug-active {
  fill-opacity: 0.18;
  stroke-opacity: 0.54;
  filter:
    drop-shadow(0 0 7px rgba(216, 193, 138, 0.36))
    drop-shadow(0 0 14px rgba(78, 166, 178, 0.18));
}

.wirkmodell-stage__svg .wheel-hit:focus,
.wirkmodell-stage__svg .wheel-hit:focus-visible,
.wirkmodell-stage__svg .wheel-hit:active {
  outline: none;
}

.wirkmodell-stage__debug-kicker {
  transform: none;
  color: rgba(216, 193, 138, 0.92);
}

.wirkmodell-stage__debug-area {
  margin-top: 2px;
  color: transparent;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 38%, #49b5c7 74%, #276871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
}

.wirkmodell-stage__copy p.wirkmodell-stage__debug-area {
  font-family: var(--font-brand);
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  line-height: 1.08;
}


.wirkmodell-stage__debug-meta {
  color: rgba(201, 237, 243, 0.72);
  font-family: var(--font-ui);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* =========================================================
   Wirkmodell — Click-Status und Textbox-Inhalte
   ========================================================= */

.wirkmodell-stage__svg .wheel-hit.is-active {
  fill-opacity: 0.30;
  stroke-opacity: 0.82;
  filter:
    drop-shadow(0 0 9px rgba(216, 193, 138, 0.48))
    drop-shadow(0 0 18px rgba(78, 166, 178, 0.24));
}

.wirkmodell-content-kicker {
  margin: 0 0 4px;
  padding-left: 33px;
  color: rgba(216, 193, 138, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wirkmodell-stage__copy .wirkmodell-content-kicker {
  color: rgba(241, 228, 199, 0.92) !important;
}

.wirkmodell-content-title {
  margin: 0 0 20px;
  padding-left: 33px;
  color: transparent;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 38%, #49b5c7 74%, #276871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(1.65rem, 2.0vw, 2.85rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.055em;
}

.wirkmodell-content-bam {
  max-width: 760px;
  padding-left: 56px;
  margin: 0 0 26px;
}

.wirkmodell-content-bam p {
  position: relative;
  padding-left: 18px;
}


.wirkmodell-content-bam p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(216, 193, 138, 0.82);
  box-shadow: 0 0 7px rgba(216, 193, 138, 0.28);
}

.wirkmodell-content-bam p + p {
  margin-top: 1px;
}

.wirkmodell-content-subtitle {
  margin: 18px 0 6px;
  padding-left: 33px;
  color: rgba(216, 193, 138, 0.92);
  font-family: var(--font-ui);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.wirkmodell-stage__copy p.wirkmodell-content-text {
  max-width: 760px;
  padding-left: 33px;
  color: rgba(223, 242, 247, 0.88);
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .wirkmodell-content-kicker,
  .wirkmodell-content-title,
  .wirkmodell-content-bam,
  .wirkmodell-content-subtitle,
  .wirkmodell-stage__copy p.wirkmodell-content-text {
    padding-left: 0;
  }

  .wirkmodell-content-title {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }
}

