/* CSS Document */

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Light.eot');
    src: url('fonts/BentonSans-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/BentonSans-Light.woff2') format('woff2'),
        url('fonts/BentonSans-Light.woff') format('woff'),
        url('fonts/BentonSans-Light.ttf') format('truetype'),
        url('fonts/BentonSans-Light.svg#BentonSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Abschnitt Layout */
   /* section {
     min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 2em;
      position: relative;
      padding: 40px;
    }
*/
section {
  display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 2em;
      position: relative;
      padding: 40px;
}

.ipr-page-content {
  position: relative;
  z-index: 2;
  background: #1d1d1d;
  color: #f0f0f0;
  padding: 80px 0 0;
}

video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      background: black; /* falls kein Video geladen wird */
    }

    /* Fallback-Bild, falls Videos nicht laufen */
    .fallback {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("Aerial-view-of-Pacific-Ocean-Coast-Devils-Slide-California.jpg") no-repeat center center;
      background-size: cover;
      z-index: -2;
    }

    /* Vordergrund-Inhalt */
    .content {
      position: relative;
      z-index: 1;
    }

    h1 {
      font-size: 3em;
      margin: 0 0 20px;
    }

    p {
      font-size: 1.2em;
    }

    button {
      margin-top: 20px;
      padding: 12px 24px;
      font-size: 1em;
      border: none;
      border-radius: 8px;
      background: #ff6b6b;
      color: white;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #e63946;
    }

.alignfull {
	width: 100vw;
  margin-left: calc(50% - 50vw);
	padding-right: 9.5vw;
  padding-left: 9.5vw;color: #2c2b2b;
}

.hero {
      position: relative;
      color: white;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      background: black;
    }

/* Overlay (Performance + Lesbarkeit) */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      opacity: 0;
      transition: opacity 2s ease; /* sanftes Einfaden */
      z-index: -1;
    }

/* Scroll-Pfeil (SVG) */
    .scroll-down {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      cursor: pointer;
      animation: bounce 2s infinite;
    }

    .scroll-down svg {
      width: 40px;
      height: 40px;
      fill: white;
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .scroll-down:hover svg {
      opacity: 1;
    }

@keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(8px); }
      60% { transform: translateY(4px); }
    }

body, html {
     margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      color: white;
      scroll-behavior: smooth; /* weiches Scrollen */
	font-family: 'BentonSans', sans-serif;
    }

  /* MenÃ¼ */
  nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 40px;
  box-sizing: border-box;
  z-index: 10;
  transition: background 0.5s, color 0.5s, padding 0.3s;
  background: rgba(0,0,0,0.5);
}

nav a {
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color 0.4s ease;
	margin: 0 18px; /* statt 15px */
  padding: 5px 0;
	text-transform: uppercase;
}

/* MenÃ¼ links */
nav .menu-left {
  display: flex;
  align-items: center;
}

/* MenÃ¼ rechts absolut fixieren */
nav .menu-right {
  position: absolute;
  right: 40px;  /* Abstand vom Rand */
  display: flex;
  align-items: center;
}

  nav .menu-left a, nav .menu-right a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.5s;
	   position: relative; /* fÃ¼r Unterstreichung */
  }

/* Logo absolut zentriert */
nav .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8em;
  font-weight: bold;
  color: white;
	display: flex;
  justify-content: center;
  align-items: center;
  /*transition: color 0.5s, font-size 0.3s;*/
	 transition: transform 0.3s, top 0.3s;
  pointer-events: none; /* Klicks gehen durch, optional */
}

.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo-wrapper img {
  height: 50px;
  transition: opacity 0.3s, height 0.3s;
  position: absolute;   /* Ã¼bereinander stapeln */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.logo-white { opacity: 1; }
.logo-black { opacity: 0; }

nav.shrink .logo-wrapper img {
  height: 30px;   /* verkleinert beim Scrollen */
}

/* Wechsel beim Hover und beim Scrollen */
nav:hover .logo-white,
nav.shrink .logo-white {
  opacity: 0;
}

nav:hover .logo-black,
nav.shrink .logo-black {
  opacity: 1;
}

  /* Hover Effekt */
  nav:hover {
   background: rgba(255,255,255,0.9);
  }

  nav:hover .menu-left a,
  nav:hover .logo,
  nav:hover .menu-right a {
    color: black;
  }

/* Sticky beim Scrollen */
  nav.shrink {
    padding: 10px 40px;
    background: rgba(255,255,255,0.9);
	  color: black;
  }
  
nav.shrink .menu-left a, nav.shrink .menu-right a, nav.shrink .logo {
	color: black;
}

  nav.shrink .logo {
    font-size: 1.2em;
  }

/* Basis fÃ¼r Unterstreichung */
nav .menu-left a::after,
nav .menu-right a::after {
  content: '';
  display: block;
  height: 2px;           /* StÃ¤rke der Linie */
  width: 0;              /* Linie startet bei 0 */
  background: currentColor; /* Linie Ã¼bernimmt Textfarbe */
  transition: width 0.3s ease;
}

/* Hover: Linie wÃ¤chst von links nach rechts */
nav .menu-left a:hover::after,
nav .menu-right a:hover::after {
  width: 100%;
}

/* Footer-Abschnitt */
.footer {
  min-height: auto;
  height: 60px;
  background: #001f3f; /* dunkelblau */
  color: white;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* etwas kleiner, da wir | nutzen */
  padding: 10px;
}

.footer a, .footer span {
	font-family: 'Roboto', sans-serif;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.7;
}

.lg {
	padding-right: 150px;
}

.pagebg {
	/*background: url("vernetzung.jpg") no-repeat center center;
      background-size: cover;*/
	background: #484747; /* dunkelgrau wie unionroom */
  color: #D5D5D5 ;
}

.pagebg .content {
	width: 85%;
	min-width: 950px;
	line-height: 1.6;
}




/* ---------- HERO ---------- */
.hero2 {
  position: relative;
  width: 100%;
  height: 100vh; /* volle HÃ¶he Bildschirm */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  will-change: transform, opacity;
	font-family: 'BentonSans', sans-serif;
}

.hero_small {
  position: relative;
  width: 100%;
 /* height: 20vh; volle HÃ¶he Bildschirm */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  will-change: transform, opacity;
	font-family: 'BentonSans', sans-serif;
}

.herosmall-bg {
	position: absolute;
	inset: 0;
	background: url('images/vernetzung.jpg') no-repeat center center;
  background-size: cover;
	z-index: 0;
}

.herosmall-faq-bg {
	position: absolute;
	inset: 0;
	background: url('images/faq.jpg') no-repeat center center;
  background-size: cover;
	z-index: 0;
}

.opacity75
{
	opacity: 75%;
}

.herosmall-bg::after, .herosmall-faq-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dunkles Overlay fÃ¼r bessere Lesbarkeit */
  opacity: 0;                 /* Start: unsichtbar */
  transition: opacity 1.5s ease-in; /* Sanftes Einfaden */
}

.hero2-bg {
	position: absolute;
	inset: 0;
	background: url('images/vernetzung.jpg') no-repeat center center;
  background-size: cover;
	z-index: 0;
}

.hero2-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dunkles Overlay fÃ¼r bessere Lesbarkeit */
  opacity: 0;                 /* Start: unsichtbar */
  transition: opacity 1.5s ease-in; /* Sanftes Einfaden */
}

/* Klasse, die wir nach Laden setzen */
.hero2-bg.overlay-visible::after {
  opacity: 1;
}

.heroprof-bg {
	position: absolute;
	inset: 0;
	background: url('images/professionals.jpg') no-repeat center center;
  background-size: cover;
	z-index: 0;
}

.heroprof-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dunkles Overlay fÃ¼r bessere Lesbarkeit */
  opacity: 0;                 /* Start: unsichtbar */
  transition: opacity 1.5s ease-in; /* Sanftes Einfaden */
}

/* Klasse, die wir nach Laden setzen */
.heroprof-bg.overlay-visible::after {
  opacity: 1;
}

/* Text in der Mitte */


.hero2-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero2-content p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* ---------- Main Content ---------- */
.main2-content {
  background: #1d1d1d; /* dunkelgrau wie unionroom */
  color: #f0f0f0;
  padding: 80px 20px;
}

.main2-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.main2-content p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* ---------- HERO ---------- */
.hero3 {
  position: relative;
  width: 100%;
  height: 100vh; /* volle HÃ¶he Bildschirm */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  will-change: transform, opacity;
	font-family: 'BentonSans', sans-serif;
}

.hero3-bg {
	position: absolute;
	inset: 0;
	/*background: url('images/team.jpg') no-repeat top center;*/
	overflow: hidden; /* damit nichts Ã¼bersteht */
  background-size: cover;
	z-index: 0;
}

/* --- Hero3 Slideshow --- */

.hero3-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero3Slideshow 18s infinite ease-in-out;
  opacity: 0;
}

.hero3-slide.slide1 { background-image: url('images/team-ed1.jpg'); animation-delay: 0s; }
.hero3-slide.slide2 { background-image: url('images/team-3.jpg'); animation-delay: 6s; }
.hero3-slide.slide3 { background-image: url('images/team_us.jpg'); animation-delay: 12s; }

/* Keyframes: jedes Bild ~6s sichtbar, weich Ã¼berblendet */
@keyframes hero3Slideshow {
  0%   { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; }
}

.hero3-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dunkles Overlay fÃ¼r bessere Lesbarkeit */
  opacity: 0;                 /* Start: unsichtbar */
  transition: opacity 1.5s ease-in; /* Sanftes Einfaden */
}

/* Klasse, die wir nach Laden setzen */
.hero3-bg.overlay-visible::after {
  opacity: 1;
}

/* Text in der Mitte */
.hero3-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero3-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero3-content p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* ---------- Main Content ---------- */
.main3-content {
  background: #1d1d1d; /* dunkelgrau wie unionroom */
  color: #f0f0f0;
  padding: 80px 20px;
}

.main3-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.main3-content p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}




.wp-block-list {
  text-align: left;
}

.wp-block-columns p, .wp-block-columns ol{
	margin-top:0;
	
}

.lh35 {
	line-height: 35px;
}

.decoline::after {
 
  bottom: 0;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #006ba8;
}

.decoline p {
	margin-bottom: 10px;
}

.timeline-wrap {
	min-height: 0;
}


.animated-cover {
  position: relative;
  overflow: hidden;
}

.animated-cover img,
.animated-cover .wp-block-cover__image-background {
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.5s ease-out;
}

.animated-cover .wp-block-cover__inner-container > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Wenn aktiv, Animation starten */
.animated-cover.is-visible img,
.animated-cover.is-visible .wp-block-cover__image-background {
  opacity: 1;
  transform: scale(1);
}

.animated-cover.is-visible .wp-block-cover__inner-container > * {
  opacity: 1;
  transform: translateY(0);
}


/* Overlay-Ebene Ã¼ber dem Video */
.tree-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Verdeckte (ausgegraute) Bereiche */
.mask.hidden {
  position: absolute;
  background: rgba(0,0,0,0.8);
  border-radius: 8px;
  backdrop-filter: blur(2px);
  transition: opacity 0.5s ease;
}

/* Sichtbare Personen (Nodes) */
.node.visible {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #00bfff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00bfff;
  transform: translate(-50%, -50%);
}

/* Linien (SVG) */
.tree-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.tree-lines line {
  stroke: #00bfff;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.9;
  animation: drawLine 1s ease forwards;
}

@keyframes drawLine {
  from {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
  }
  to {
    stroke-dashoffset: 0;
  }
}

#section2 {
  scroll-margin-top: 70px;
}

/* Cover-Block: Text unten zentrieren + volle Breite */
.cover-bottom-full {
    display: flex;
    align-items: flex-end;   /* Inhalt nach unten */
    justify-content: center; /* horizontal zentriert */
    padding: 0;              /* falls WP standardmÃ¤ÃŸig padding setzt */
}

.cover-bottom-full .wp-block-cover__inner-container {
    width: 100%;
}

.cover-bottom-full .wp-block-cover__inner-container > * {
    margin: 0 auto;          /* Text zentrieren */
    width: 100%;             /* Text-Hintergrund 100% */
    /*text-align: center; */     /* Text zentrieren */
}

/* Optional: Hintergrund des Textblocks auf volle Breite erzwingen */
.cover-bottom-full p,
.cover-bottom-full h1,
.cover-bottom-full h2,
.cover-bottom-full h3 {
    display: block;
    width: 100%;
    padding: 1rem 0;         /* damit es schÃ¶ner aussieht */
}

.grid-style.style-3 figcaption{
	/*background-color: #1d1d1d;*/
	background: rgba(0,0,0,0.00);
	color: white;
	font-size: 16px;
}
.grid-style.style-3 h3{
	/*background-color: #1d1d1d;*/
	background: rgba(0,0,0,0.00);
	color: white;
	font-size: 20px;
}

.hide {
	visibility: hidden;
}


:root{
  --ipr-blue:#0771B6;
  --ipr-dark:#1c1c1c;
  --ipr-bottom:#2b2b2b;
  --ipr-band:linear-gradient(
    to right,
    #dcdcdc 0%,
	  #f5f5f5 60%,
	  #ffffff 100%
  );
	--ipr-band-page:linear-gradient(
    to right,
    rgba(220,220,220,0.8), rgba(255,255,255,0.8)
  );
  --hero-bg:url("images/ipr_bg.jpg");
  --footer-h: 152px;
}

/* Wrapper: nimmt 1 ViewporthÃ¶he ein, aber Inhalt darunter ist normal scrollbar */
.ipr-front{
  position: relative;
  /*min-height: calc(100vh - var(--footer-h));*/
	min-height: calc(100vh);
  overflow: hidden;
}

/* Background: fixed, damit es beim Scrollen hinter dem Intro stabil bleibt */
.ipr-bg{
  position: fixed;
	top: 0; left: 0; right: 0;
  bottom: var(--footer-h);
  inset: 0;
  z-index: 0;
  background: var(--hero-bg) center/cover no-repeat;
  transform: scale(1.02);
  animation: ipr-kenburns 18s ease-in-out infinite alternate;
  filter: saturate(1.02) contrast(1.03);
}



/* dunkler Verlauf fÃ¼r Lesbarkeit */
.ipr-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.55) 100%
  );
}

@keyframes ipr-kenburns{
  0%{ transform: scale(1.02) translate3d(0,0,0); }
  100%{ transform: scale(1.10) translate3d(-1.5%,-1%,0); }
}

/* Center layer: exakt zentriert */
.ipr-center{
  position: absolute;
  z-index: 2;
  min-height: calc(100vh - var(--footer-h));
  display: flex;
   flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;              /* Abstand Band -> Button */
  padding: 24px 0 48px;   /* unten etwas Luft */
	width: 100%;
	top: 20%;
}

.hero2-content {
  /*position: fixed;*/
	top: 0; left: 0; right: 0;
  z-index: 1;
  width: 100%;
  max-height: 20vh;
  min-height: 240px;        /* damit es nicht zu flach wird */
  height: 18vh;             /* idealer Sweet Spot */
  background: var(--ipr-band-page);
  display: flex;
	flex-direction: column;   /* wichtig */
  align-items: center;      /* horizontal zentriert */
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 2vw 5vw;
  border-radius: 0; /* wie PDF: Band/Block */
	color: #000;
}

/* Band selbst */
.ipr-band{
  width: 100%;
  max-height: 20vh;
  min-height: 240px;        /* damit es nicht zu flach wird */
  height: 18vh;             /* idealer Sweet Spot */
  background: var(--ipr-band);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 5vw;
  border-radius: 0; /* wie PDF: Band/Block */
}

/* Slider */
.ipr-band__viewport{ width: 100%; height: 100%; overflow: hidden; }
.ipr-band__track{
  display:flex;
  width:200%;
	height: 100%;
  align-items: center;
  animation: ipr-slide 10s ease-in-out infinite;
}
@keyframes ipr-slide{
  0%, 40%{ transform: translateX(0%); }
  50%, 90%{ transform: translateX(-50%); }
  100%{ transform: translateX(0%); }
}
.ipr-band__slide{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 190px;
}

.ipr-band__logo{
  max-width: min(760px, 85%);
  height:auto;
  display:block;
}

/* Mission */
.ipr-mission{ text-align:center; color:#111; width:min(860px, 92%); }
.ipr-mission__title{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
}
.ipr-mission__mark{
  width:84px; height:84px;
  border-radius:18px;
  background: linear-gradient(135deg, rgba(7,113,182,.25), rgba(220,50,47,.18));
}
.ipr-mission__text{
  margin-top: 10px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  opacity: .9;
}

/* Bottom CTA bar: immer am unteren Bildschirmrand */
.ipr-bottom{
  background: transparent;
  padding: 60px 0 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* CTA Button */
.ipr-cta{
  display:inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: #ef7f7f;
  color:#fff;
  text-decoration:none;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Content darunter: startet nach dem Intro-Viewport */
.site-content{
  position: relative;
  z-index: 4;              /* Ã¼ber dem fixed BG */
  background: var(--ipr-dark);
  padding-top: 100vh;      /* Intro belegt 1 Viewport */
}

/* Wenn du willst, dass Background nur im Intro sichtbar ist:
   dann gib dem Content einen eigenen Hintergrund (wie oben) und
   die BG bleibt hinter allem, stÃ¶rt aber nicht. */

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ipr-bg{ animation: none; }
  .ipr-band__track{ animation: none; transform: translateX(0%); }
}

/*
h1{
	font-size: 18px;
	font-weight: bold;
}

h2{
	font-size: 16px;
	font-weight: bold;
}

p {
	font-size: 0.6em;
}*/

.faq-list-entry-title {
	margin-top: 1rem;
	margin-bottom: 1rem;
	display:flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	align-items: center;
}

.faq-list-entry{
	cursor: pointer;
}

.faq-list-entry-description {
	text-align: left;
	/*display: none;*/
}

#ipr_personal_info{
	position:absolute;
	bottom: 2em;
	width: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%,
  rgba(255, 255, 255, 0.6) 25%,
  rgba(255, 255, 255, 0.8) 30%,
  rgba(255, 255, 255, 0.8) 70%,
  rgba(255, 255, 255, 0.6) 75%,
  rgba(255, 255, 255, 0.5) 100% );
	
}

#ipr_personal_info h3{
	font-size: 0.6em;
	margin-top: 15px;
}

.awsm-personal-info {
	margin-bottom: 15px;
}

#ipr_personal_info span{
	color: #000;
	font-size: 0.5em;
}

.ipr-step__num{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #cfc9bf; /* warmes grau wie im Beispiel */
  color: #1d1d1d;
  display: grid;
  place-items: center;
  font-weight: 999;
  font-size: 25px;
  line-height: 1;
}

.wp-block-columns-ipr {
  margin-bottom: 0!important;
}

.is-style-rounded img {
	border-radius: 45px !important;
}

.wp-block-list {
	margin: 0 0 1em 0;
}

/*.ipr-break-left {
  margin-left: calc(50% - 50vw) !important;
}

.ipr-break-right {
  margin-right: calc(50% - 50vw) !important;
}


.ipr-break-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
*/

/* Outer section darf nichts abschneiden */
.wp-block-columns.ipr-split-section,
.ipr-split-section {
  display: grid !important;
  /*grid-template-columns: 3fr 1fr;*/
  gap: 3rem;
  align-items: stretch !important;
  overflow: visible !important;
}

/* 1. Bereich: Text breit, Bild rechts schmal */
.ipr-split-right-image {
  grid-template-columns: minmax(0, 3fr) minmax(560px, 1.2fr);
}

/* 2. Bereich: Bild links breiter, Text rechts schmaler */
.ipr-split-left-image {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 3fr);
}

/* Wichtig: kein Parent darf den Ausbruch abschneiden */
.ipr-page-content,
.entry-content,
.wp-site-blocks {
  overflow-x: clip;
}

/* Gutenberg Reset */
.ipr-split-section > .wp-block-column {
 /* margin: 0 !important;*/
  min-width: 0;
}

/* Linkes Ausbruch-Bild */
.ipr-break-left2 {
  position: relative;
  left: calc(0% - 10vw);
  width: calc(0% + (30vw - 0%));
  overflow: hidden;
	height: 100%;
}


.ipr-break-right2 {
  position: relative;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden;
  /*right: calc(0% - 10vw);*/
  /*width: calc(0% + (30vw - 0%));*/
min-width: 560px;
  height: 100%;
}

.ipr-break-right2 figure {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}



.ipr-break-right2 img {
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
	width: 100%;
  height: 100%;
  object-fit: cover;        /* füllt komplett */
  object-position: right center;  /* Fokus Mitte */
	display: block;
}


.ipr-break-right3 {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-width: 0;
	margin-right: calc(0% - 10vw) !important;
}

.ipr-break-right3 figure {
  position: absolute;
  inset: 0;
  margin: 0;
    display: flex;
  justify-content: flex-end;   /* Bild immer nach rechts */
  align-items: stretch;
}

.ipr-break-right3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* ganzes Bild sichtbar */
  object-position: right center;
  display: block;

  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.ipr-split-right2-image {
  grid-template-columns: minmax(0, 3fr) minmax(320px, 520px);
}





/* Fade separat, deutlich kontrollierbarer 
.ipr-break-right3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(to right, #4f4c4d 0%, rgba(79,76,77,0) 100%);
}*/

.ipr-break-left2 figure{
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
/* Bild wird gecroppt */
.ipr-break-left img,
.ipr-break-right img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.ipr-break-left img, .ipr-break-left2 img {
   width: 100%;
  height: 100%;
  object-fit: cover;        /* füllt komplett */
  object-position: top left;  /* Fokus Mitte */
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.ipr-break-right img {
  object-position: 80% center;
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}


.ipr-break-left img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain; /* statt cover */
  background: #1d1d1d; /* optional für leere Flächen */
}

.ipr-break-right figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}

.ipr-break-right img {
  width: 100% !important;
  height: auto !important;
  min-height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;

  -webkit-mask-image: none;
  mask-image: none;
}

.centered-image img{
	width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}

.right-right-image img {
  position: absolute;
  top: 0;
  right: 0;                 /* rechts fest */
  left: auto;
  height: 100% !important;
  width: auto !important;   /* wichtig */
  min-width: 100%;          /* füllt die Breite */
  max-width: none;
  object-fit: cover;
  object-position: right center;
  display: block;

  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}


.padding-bottom {
	padding-bottom: 1.5em;
}


/* Textspalte */
.ipr-split-section > .wp-block-column:not(.ipr-break-left):not(.ipr-break-right):not(.ipr-break-right):not(.ipr-break-left2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile */
@media (max-width: 900px) {
  .wp-block-columns.ipr-split-section,
  .ipr-split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ipr-break-left,
  .ipr-break-right {
    left: auto;
    right: auto;
    width: 100%;
    min-height: 320px;
  }

  .ipr-break-left figure,
  .ipr-break-right figure {
    position: relative;
    inset: auto;
    height: 320px;
  }
}

.ipr-fullwidth-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

/* Bild selbst */
.ipr-fullwidth-image img {
  width: 100%;
  /*height: 380px; */
  height: clamp(220px, 30vh, 280px);
  object-fit: cover;
  display: block;
}

.ipr-fullwidth-image img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.ipr-team-image {
	min-height: 450px;
}


.ipr-steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
	padding-top: 1em;
	padding-bottom: 2em;
}
.ipr-step-row__content {
  --page-bg: #e2edf6;

  position: relative;
  border: 1px solid rgba(0,0,0,0.5);
  padding: 56px 28px 28px 28px; /* oben mehr Platz */
  background: rgba(255,255,255,0);
}

/* Badge sitzt oberhalb des Rahmens */
.ipr-step-row__badge {
  position: absolute;
  top: -24px;
  left: 24px;
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--page-bg);
  z-index: 3;
}

/* Nur die obere Rahmenlinie unterbrechen */
.ipr-step-row__badge::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 10px;
  background: var(--page-bg);
  z-index: -1;
}

.ipr-step-row__badge::after {
  content: none;
}

.ipr-step-row__badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
	-webkit-filter: invert(1);
   filter: invert(1);
}
/*
.ipr-step-row__content {
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 36px 28px 28px 28px;
  background: rgba(255,255,255,0.01);
}

.ipr-step-row__badge {
  position: absolute;
  top: -30px;
  left: 24px;
  width: 64px;
  height: 64px;
  background: #484747;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ipr-step-row__badge {
  position: absolute;
  top: -30px;
  left: 24px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #484747;
  z-index: 2;
}

.ipr-step-row__badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: #484747;
  z-index: -1;
}

.ipr-step-row__badge::after {
  content: none;
}
.ipr-step-row__badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}*/
/*
.ipr-step-row__badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: #484747; 
  z-index: -1;
}
*/
.ipr-step-row__content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0,0,0,0.88);
}

.ipr-step-row__content strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.mywpglossary-list-entry-description
{
	text-align: left;
}

.mywpglossary-list-entry-description p
{
	font-size: 0.6em;
}

.mywpglossary-letters {
	color: bisque;
	text-align: center;
	display: block !important;
}

.mywpglossary-letters a{
	color: bisque;
}

h1 {
	font-size: 3rem;
}
h2 {
  font-size: 2rem;
}

.ipr-scroll-indicator {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer; /* ðŸ‘ˆ Mauszeiger */
}

.ipr-scroll-indicator span {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  margin: -6px;
  animation: ipr-arrow 1.6s infinite;
}

/* zweite Pfeil leicht verzÃ¶gert */
.ipr-scroll-indicator span:nth-child(2) {
  animation-delay: 0.0s;
}

@keyframes ipr-arrow {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.2;
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.2;
  }
}

a {
  color: inherit;                 /* Ã¼bernimmt Textfarbe */
  text-decoration: underline;     /* immer unterstrichen */
  font-weight: normal;
  /*transition: all 0.2s ease;*/
}

a:hover {
  font-weight: 600;               /* wird fett beim Hover */
}

strong {
	font-weight: 900;
}

.nav-toggle {
  display: none;
  background: transparent !important;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.arrowbg {
	background-image:url(images/arrows.png);
	background-size: 100% 100%;
	width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw);
  padding-left: 8vw;
  padding-right: 8vw;
}


/* =========================
   MOBILE / TABLET
   ========================= */

@media (max-width: 1100px) {
  .pagebg .content {
    width: min(100%, 900px);
    min-width: 0;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  nav {
    padding: 18px 22px;
  }

  .lg {
    padding-right: 0;
  }

  .logo-wrapper img {
    height: 38px;
  }

  nav.shrink .logo-wrapper img {
    height: 30px;
  }

  .hero2-content h1,
  .hero3-content h1,
  h1 {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  p,
  .hero2-content p,
  .hero3-content p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .hero2-content {
    min-height: 180px;
    height: auto;
    max-height: none;
    padding: 28px 24px;
  }

  .ipr-band {
    min-height: 180px;
    height: auto;
    max-height: none;
    padding: 28px 20px;
  }

  .ipr-band__slide {
    min-height: 140px;
  }

  .ipr-mission__title {
    font-size: clamp(28px, 6vw, 44px);
  }

  .ipr-mission__text {
    font-size: clamp(16px, 2.8vw, 22px);
  }
}

/* Tablet / Mobile Navigation */
@media (max-width: 900px) {
  nav {
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
  }

  nav .logo,
  nav .menu-right {
    display: none;
  }

  nav .menu-left {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
	.nav-toggle {
    display: inline-flex;
  }
	
.nav-toggle:focus,
.nav-toggle:active {
  background: transparent !important;
  outline: none;
  box-shadow: none;
}
	
	.nav-toggle:hover {
  opacity: 0.7;
}

  nav .menu-left a {
    display: block;
	  color: #1d1d1d;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  nav.menu-open .menu-left {
    display: flex;
  }

  .nav-toggle {
    appearance: none;
    border: none;
    background: transparent !important;
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  nav.shrink .nav-toggle span,
  nav:hover .nav-toggle span {
    background: #000;
  }

  nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .pagebg .content {
    width: 100%;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  section.hero.pagebg {
    padding: 30px 0;
  }

  .hero2,
  .hero3 {
    min-height: 78vh;
    height: auto;
  }

  .hero2-content,
  .hero3-content {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 24px 20px;
    box-sizing: border-box;
  }

  .hero2-content h1,
  .hero3-content h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    line-height: 1.15;
  }

  .hero2-content p,
  .hero3-content p {
    font-size: 1rem;
  }

  button,
  .ipr-cta {
    font-size: 0.95rem;
    padding: 12px 22px;
  }

  .wp-block-columns.ipr-split-section,
  .ipr-split-section,
  .ipr-split-right-image,
  .ipr-split-left-image {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ipr-break-left,
  .ipr-break-right,
  .ipr-break-left2,
  .ipr-break-right2 {
    position: relative;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-right: 0 !important;
    overflow: hidden;
    min-height: 0;
  }

  .ipr-break-left figure,
  .ipr-break-right figure,
  .ipr-break-left2 figure,
  .ipr-break-right2 figure {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .ipr-break-left img,
  .ipr-break-right img,
  .ipr-break-left2 img,
  .ipr-break-right2 img {
    width: 100% !important;
    height: auto !important;
    max-height: 340px;
    object-fit: cover;
    display: block;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .ipr-fullwidth-image img {
    height: clamp(180px, 28vh, 240px);
  }

  .decoline {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    line-height: 1.2;
  }

  .wp-block-list li,
  p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .ipr-team-image {
    min-height: 0;
  }

  .footer {
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    text-align: center;
    padding: 14px 18px;
  }
}

/* Kleine Smartphones */
@media (max-width: 600px) {
  nav {
    padding: 14px 16px;
  }

  .logo-wrapper img {
    height: 32px;
  }

  nav .menu-left {
    top: 64px;
    padding: 14px 16px 20px;
  }

  .hero2,
  .hero3 {
    min-height: 70vh;
  }

  .hero2-content,
  .hero3-content {
    padding: 20px 16px;
  }

  .pagebg .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ipr-band {
    padding: 20px 16px;
  }

  .ipr-band__logo {
    max-width: 92%;
  }

  .ipr-mission__title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .ipr-mission__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .ipr-scroll-indicator {
    margin-top: 14px;
  }

  .ipr-step-row__content {
    padding: 48px 20px 22px 20px;
  }

  .ipr-step-row__content strong {
    font-size: 20px;
  }

  .ipr-step-row__content p {
    font-size: 16px;
  }
}