@charset "UTF-8";
@import "vendors/fonts.css";
@import "vendors/fontawesome-pro.css";
:root {
  --marker-color: hsl(215, 54%, 40%);
}

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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.0416666667vw, 1.25rem);
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}

a {
  color: hsl(0, 0%, 0%);
}

a:is(:hover, :focus) {
  color: hsl(0, 0%, 0%);
}

strong {
  font-weight: 700;
}

h2, h3, h4, h5 p {
  margin-bottom: 0.88rem;
}

:target {
  scroll-margin-top: 8.5rem; /* Abstand nach oben */
}

.container > p + p {
  margin-top: 1rem;
}

.container ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: hsl(0, 0%, 100%);
  width: 100%;
  z-index: 99;
  transition: 0.45s transform;
  transform: translateY(-10%);
}

@media screen and (min-width: 45em) {
  .site-header {
    box-shadow: none;
    transform: translateY(0);
  }
  .site-header .site-header__logo {
    transform: scale(1) translateY(0);
    mix-blend-mode: multiply;
  }
  .site-header.scrolled .site-header__logo {
    transform: scale(0.8) translateY(25%);
  }
  .site-header.scrolled {
    transform: translateY(-33%);
  }
}
.site-header.scrolled {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: min(95%, 90.1875rem);
  margin-inline: auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

@media screen and (min-width: 45em) {
  .site-header__inner {
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
  }
}
.site-header__logo {
  padding: 1rem 0;
  transform: scale(0.95) translateY(5%);
  transition: 0.55s all;
  transform-origin: left center;
}

@media screen and (min-width: 45em) {
  .site-header__logo {
    grid-column: unset;
  }
}
.site-header__logo img {
  max-width: 100%;
  height: auto;
  width: clamp(14.75rem, 16.3020833333vw, 19.5625rem);
  transition: width 0.3s ease-in-out;
}

.site-header__menu {
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 0.5rem;
}

@media screen and (min-width: 45em) {
  .site-header__menu {
    align-items: end;
    align-self: end;
  }
}
@media screen and (min-width: 65em) {
  .site-header__menu {
    flex-flow: row;
    gap: 2rem;
    align-items: center;
    align-self: center;
    justify-content: end;
  }
}
#navigation {
  position: fixed;
  width: 0;
  top: 0;
  right: 0;
  height: 100vh;
  transition: transform 0.25s;
  background-color: #fff;
  z-index: 99;
  padding-top: clamp(6.5625rem, 7.8125vw, 9.375rem);
  padding-left: clamp(6.5625rem, 7.8125vw, 9.375rem);
}

#navigation[data-visible=false] {
  transform: translateX(100%);
  width: 0;
  padding: 0;
  overflow: hidden;
}

#navigation[data-visible=true] {
  transform: translateX(0);
  width: 90%;
  max-width: 30rem;
}

@media screen and (min-width: 45em) {
  #navigation {
    position: relative;
    min-height: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    padding: 0;
    place-self: flex-end;
  }
  #navigation[data-visible=false] {
    transform: translateX(0);
    width: inherit;
  }
  #navigation[data-visible=true] {
    transform: translateX(0);
    width: inherit;
  }
}
#main-navigation {
  display: grid;
}

#main-navigation [role=navigation] .nav {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
  flex-flow: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav {
    flex-flow: row;
    gap: clamp(1.8rem, 2.9166666667vw, 3.5rem);
  }
}
#main-navigation [role=navigation] .nav li {
  padding-bottom: 1rem;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav li {
    padding-bottom: 0;
  }
}
#main-navigation [role=navigation] .nav li a {
  font-size: clamp(1.1rem, 1.0416666667vw, 1.25rem);
  font-weight: 400;
  text-decoration: none;
}

#meta-navigation-top, #meta-navigation-bottom {
  display: grid;
}

#meta-navigation-top [role=navigation] .nav, #meta-navigation-bottom [role=navigation] .nav {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-flow: column;
  align-items: flex-start;
}

@media screen and (min-width: 45em) {
  #meta-navigation-top [role=navigation] .nav, #meta-navigation-bottom [role=navigation] .nav {
    flex-flow: row;
    gap: 2rem;
    align-items: flex-start;
  }
}
#meta-navigation-bottom {
  display: grid;
}

#meta-navigation-top [role=navigation] .nav {
  align-items: stretch;
  margin-inline: 1rem;
}

#meta-navigation-top [role=navigation] .nav a {
  width: 100%;
}

@media screen and (min-width: 45em) {
  #meta-navigation-top {
    display: none;
  }
}
.site-footer {
  position: relative;
  padding: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.site-footer #footer-navigation .nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  width: auto;
}

.site-footer #footer-navigation .nav li a {
  color: #656;
  text-decoration: none;
}

.site-footer #footer-navigation .nav li a:hover {
  text-decoration: underline;
}

.accordion-item {
  border: 1px solid transparent;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(23, 97, 171, 0.05);
  color: hsl(215, 54%, 40%);
  font-weight: bold;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item[open] summary {
  background: #eef3f8;
}

.accordion-item .accordion-title {
  flex: 1;
}

.accordion-item .accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  font-size: 1.2rem;
}

.accordion-item .accordion-icon i {
  transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon i::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: hsl(180, 29%, 51%);
  font-weight: 700;
}

.accordion-item:not([open]) .accordion-icon i::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: hsl(180, 29%, 51%);
  font-weight: 700;
}

.accordion-item .accordion-content {
  padding: clamp(0.8rem, 0.8333333333vw, 1rem);
  background: #fff;
  list-style: none;
}

h1, .heading-1 {
  font-size: clamp(1.7rem, 2.0416666667vw, 2.45rem);
  color: hsl(215, 54%, 40%);
  font-weight: 700;
  text-transform: unset;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

h2, .heading-2 {
  font-size: clamp(1.65rem, 2.2916666667vw, 2.75rem);
  color: hsl(0, 0%, 0%);
  font-weight: 700;
  text-transform: unset;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

h3, .heading-3 {
  font-size: clamp(1.05rem, 1.1458333333vw, 1.375rem);
  color: hsl(0, 0%, 0%);
  font-weight: 700;
  text-transform: unset;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

h4, .heading-4 {
  font-size: clamp(1.1rem, 1.1458333333vw, 1.375rem);
  color: hsl(0, 0%, 0%);
  font-weight: 700;
  text-transform: unset;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

h6, .heading-6 {
  font-size: clamp(0.88rem, 0.9895833333vw, 1.1875rem);
  color: #878787;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

.eyebrow {
  display: block;
  font-size: clamp(0.88rem, 0.9895833333vw, 1.1875rem);
  color: #878787;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: "normal";
}

[aria-controls=main-navigation] {
  width: 4.5rem;
  background: transparent;
  border: none;
  display: block;
  justify-self: end;
  align-self: center;
  z-index: 9999;
}

@media screen and (min-width: 45em) {
  [aria-controls=main-navigation] {
    display: none;
  }
}
[aria-controls=main-navigation] .hamburger__line {
  fill: hsl(215, 54%, 40%);
  transform-box: fill-box;
  transform-origin: center;
  transform: translateY(0) rotate(0);
  transition: transform 0.25s, opacity 0.25s;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger {
  --hamburger-color: var(--font-color);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.25s;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top {
  transform: translateY(20px) rotate(45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  transform: translateY(-20px) rotate(-45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__middle {
  opacity: 0;
}

[aria-controls=footer-navigation] {
  padding: 3rem 0;
}

[aria-controls=footer-navigation] ul {
  list-style: none;
  justify-content: center;
  display: flex;
  gap: 3rem;
}

[aria-controls=footer-navigation] ul li a {
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  border-style: solid;
  border-width: 0.09375rem;
  border-color: hsl(180, 29%, 51%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
  border-radius: 0.6125rem;
  padding-block: clamp(0.25rem, 0.2708333333vw, 0.325rem);
  padding-inline: clamp(0.85rem, 0.8333333333vw, 1rem);
  text-decoration: none;
  font-size: clamp(1rem, 1.0416666667vw, 1.25rem);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.button i {
  font-size: 1.25rem;
  color: hsl(180, 29%, 51%);
  margin-right: 0.5rem;
}

.button img {
  height: 1.25rem;
  width: auto;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

.button:hover {
  border-color: #234676; /* Abdunkeln bei Hover */
  background-color: #efefef;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 727/323;
}

@media screen and (min-width: 45em) {
  .hero-image-wrapper {
    aspect-ratio: 1127/323;
  }
}
.hero-image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

@media screen and (min-width: 45em) {
  .hero-image {
    height: 100%;
  }
}
.hero-content {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  padding-block: 0;
  padding-inline: clamp(1rem, 1.875vw, 2.25rem);
  z-index: 1;
}

@media screen and (min-width: 45em) {
  .hero-content {
    top: 50%;
  }
}
.hero-title {
  font-size: clamp(1.3rem, 3.0208333333vw, 3.625rem);
  font-family: "Source Sans 3", sans-serif;
  background-color: #095181;
  color: white;
  padding: 0.5rem 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.main-image img {
  width: 100%;
  aspect-ratio: 1247/936;
  object-fit: cover;
}

.main-nav {
  display: flex;
  background-color: hsl(215, 54%, 40%);
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-color: #095181;
}

.main-nav .main-caption {
  padding-block: 0;
  padding-inline: clamp(0.25rem, 1.25vw, 1.5rem);
}

.main-nav .main-caption #active-title {
  font-weight: bold;
}

.main-nav .main-caption p {
  font-size: clamp(1rem, 1.0416666667vw, 1.25rem);
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.main-nav .thumbnail-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.main-nav .thumbnail {
  width: clamp(3rem, 4.1666666667vw, 5rem);
  cursor: pointer;
  border: 3px solid white;
  border-radius: 0.25rem;
}

.main-nav .thumbnail-wrapper {
  position: relative;
}

.main-nav .thumbnail-wrapper.active-thumb::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid white;
  width: 0;
  height: 0;
  z-index: 1;
}

.main-nav .thumbnail-wrapper:hover,
.main-nav .thumbnail-wrapper.active-thumb {
  transform: scale(1.1);
}

.hero-subline {
  font-size: clamp(1rem, 1.4583333333vw, 1.75rem);
  color: #095181;
  margin: 0;
}

.title-image {
  position: relative;
  width: min(100%, 115.625rem);
  height: auto;
  margin: 0 auto;
}

.title-image > img {
  width: 100%;
  aspect-ratio: 19/5;
  object-fit: cover;
  object-position: center;
}

.grid {
  margin: clamp(2.1875rem, 2.6041666667vw, 3.125rem) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.grid__cell {
  background-color: #E0E0E0;
  padding: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

.grid__cell-icon {
  width: clamp(2rem, 2.5vw, 3rem);
  height: clamp(2rem, 2.5vw, 3rem);
  margin-bottom: 1rem;
}

/* Zusätzliche Stile für den Karten-Abschnitt */
.map-consent-section {
  position: relative;
  /* Behält das Padding des .container bei, falls vorhanden,
     oder setze hier spezifisches Padding für den gesamten Abschnitt */
  padding-top: 20px;
  padding-bottom: 40px;
}

.map-info-controls {
  position: absolute;
  width: 80%;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9; /* Heller Hintergrund für den Infobereich */
  border: 1px solid #ddd;
  border-bottom: none; /* Kein unterer Rand, da Bild/Karte direkt folgt */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 0; /* Kein Abstand zum darunterliegenden Bild/Karte */
}

.map-consent-notice {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.map-consent-notice a {
  color: #007bff; /* Oder deine Theme-Farbe */
  text-decoration: underline;
}

#map-placeholder-image-element {
  display: block; /* Stellt sicher, dass das Bild die volle Breite einnimmt */
  width: 100%;
  height: auto; /* Höhe automatisch anpassen */
  max-height: 750px; /* Maximale Höhe, optional */
  object-fit: cover; /* Stellt sicher, dass das Bild den Bereich füllt, ggf. beschneiden */
  object-position: top;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px solid #ddd; /* Passend zum oberen Rand der Infobox */
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#map-iframe-container {
  /* Stile für den Container des iframes, falls benötigt.
     Der Iframe selbst wird gestylt. */
}

#map-iframe-container iframe {
  display: block;
  width: 100%;
  height: 750px; /* Höhe anpassen nach Bedarf */
  border: 0; /* Standard-iframe-Rand entfernen */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px solid #ddd; /* Passend zum oberen Rand der Infobox */
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.contact-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

@media screen and (min-width: 45em) {
  .contact-group {
    grid-template-columns: 1fr 1fr;
  }
}
/* Allgemeine Listeinstellungen */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 1.6666666667vw, 2rem);
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  /* Bildstyling */
  /* Textbereich (body) */
}

@media screen and (min-width: 45em) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards li {
  display: grid;
  background-color: hsla(210, 76%, 38%, 0.05);
  overflow: hidden;
}

@media screen and (min-width: 65em) {
  .cards li {
    grid-template-columns: 1fr;
  }
}
.cards li img {
  aspect-ratio: 289/193;
  object-fit: cover;
  width: 100%;
}

.cards li .body {
  flex: 1;
  height: 100%;
  padding: clamp(1rem, 1.4583333333vw, 1.75rem);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.cards__about {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 45em) {
  .cards__about {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.cards__about li .body {
  justify-content: normal;
}

.cards__about li .body h3, .cards__about li .body .heading-3 {
  margin: 0;
}

.cards__about li .body p {
  color: hsl(180, 29%, 51%);
}

.cards__job {
  grid-template-columns: repeat(1, 1fr);
}

.cards__job li {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  background-color: unset;
}

@media screen and (min-width: 45em) {
  .cards__job li {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image content";
  }
}
.cards__job li .body {
  justify-content: space-evenly;
  align-items: center;
  border: 1px solid hsla(0, 0%, 44%, 0.35);
}

@media screen and (min-width: 45em) {
  .cards__job li .body {
    grid-area: content;
  }
}
.cards__job li .body h3 {
  font-size: clamp(1.8rem, 1.6666666667vw, 2rem);
}

.cards__job li .body h3 .subtitle {
  display: block; /* In die nächste Zeile setzen */
  font-size: clamp(1rem, 1.125vw, 1.35rem); /* Kleinere Schriftgröße */
  font-weight: 500;
  margin-top: 0.25rem; /* Abstand nach oben */
  line-height: 1.2; /* Angenehmes Zeilenlayout */
}

.cards__job li .action {
  display: flex;
  gap: 1rem;
}

.cards__job li img {
  width: 100%;
  height: auto;
  aspect-ratio: 19/9;
  object-fit: cover;
}

@media screen and (min-width: 45em) {
  .cards__job li img {
    grid-area: image;
  }
}
@media screen and (min-width: 45em) {
  .cards__job li:nth-child(2n) {
    grid-template-areas: "content image";
  }
}
.cards__benefits {
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 2rem 0 !important;
}

@media screen and (min-width: 45em) {
  .cards__benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards__benefits li {
  display: flex;
  flex-flow: column;
  background-color: hsla(210, 76%, 38%, 0.12);
  padding: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
  text-align: center;
}

.cards__benefits li .card-title {
  padding: 0.75rem 0;
}

.cards__benefits li i {
  font-size: clamp(2.2rem, 2.3333333333vw, 2.8rem);
}

.form-wrapper {
  max-width: 600px;
}

.form-wrapper p {
  margin-bottom: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
  font-size: clamp(0.88rem, 0.8333333333vw, 1rem);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 15%;
  opacity: 0;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: none;
  background-color: hsla(210, 76%, 38%, 0.05);
  font-size: clamp(0.9rem, 1.0416666667vw, 1.25rem);
  border-radius: 4px;
  font-size: 1rem;
}

input[name=firstname], textarea[name=firstname] {
  display: none;
}

.error {
  color: red;
  font-size: 0.875rem;
}

.success {
  color: green;
  font-weight: bold;
}

/* Lightbox container */
.lightbox {
  position: fixed;
  top: -9999px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.lightbox.active {
  display: flex;
  top: 0;
  opacity: 1;
}

/* Lightbox content */
.lightbox-content {
  background: white;
  padding: 1.75rem;
  border-radius: 0.5rem;
  max-width: 520px;
  width: 90%;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.lightbox-content h1, .lightbox-content h2, .lightbox-content h3, .lightbox-content h4, .lightbox-content h5 {
  padding-block: 1rem;
}

/* Lightbox close button */
.lightbox .close {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 3rem;
  font-size: 2.5rem;
  background-color: #fff;
  border-radius: 99px;
  width: 3rem;
  height: 3rem;
  text-align: center;
  color: #000;
  cursor: pointer;
}

.rich-content {
  line-height: 1.4;
}

@media screen and (min-width: 45em) {
  .rich-content {
    max-width: 85%;
  }
}
.rich-content p {
  margin: 1rem 0; /* Abstand zwischen Absätzen */
}

.rich-content ul, .rich-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.rich-content ul li > p, .rich-content ol li > p {
  margin-block: 0.75rem;
}

.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 {
  margin: 2rem 0 1rem; /* Abstand oberhalb und unterhalb der Überschrift */
  line-height: 1.2; /* Engere Zeilenhöhe für Überschriften */
}

.rich-intro p {
  font-size: 110%;
}

.slider-wrapper {
  background-color: hsla(210, 76%, 38%, 0.05); /* Vollflächige Hintergrundfarbe */
  width: 100%; /* Über die gesamte Breite des Browsers */
}

.slider {
  position: relative;
  max-width: min(95%, 90.1875rem); /* Beschränkt die Breite auf den Container */
  margin: 0 auto; /* Zentriert den Slider */
  position: relative; /* Ermöglicht die Positionierung von Elementen innerhalb */
  display: flex; /* Flexbox für Slides */
  overflow: hidden; /* Verhindert, dass Inhalte über den Slider hinaus angezeigt werden */
  box-sizing: content-box;
}

@media screen and (min-width: 45em) {
  .slider {
    border-left: 2em solid hsl(0, 0%, 100%);
    border-right: 2em solid hsl(0, 0%, 100%);
  }
}
.slide {
  flex: 0 0 100%; /* Ein Slide nimmt die volle Breite des Containers ein */
  position: absolute; /* Ermöglicht die Platzierung von Text oder Buttons */
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.slide.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%; /* Bild passt sich der Slide-Breite an */
  height: auto; /* Bild behält das Seitenverhältnis */
  aspect-ratio: 12/9;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 45em) {
  .slide img {
    aspect-ratio: 20/9;
  }
}
.slide::before {
  content: ""; /* Leeres Pseudo-Element für das Overlay */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58%; /* Nur die unteren 10 % abdecken */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); /* Gradient von Schwarz zu transparent */
  z-index: 8;
}

@media screen and (min-width: 45em) {
  .slide::before {
    height: 28%;
  }
}
.slide-text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  padding: 0;
  border-radius: 5px;
  z-index: 9;
}

@media screen and (min-width: 45em) {
  .slide-text {
    bottom: 1.25rem;
    left: 1.25rem;
    color: #fff;
    padding: 0.75rem;
  }
}
.slide-text h2, .slide-text h3, .slide-text h4 {
  margin-bottom: 0;
}

.nav-dots {
  text-align: center;
  padding-top: 0.75rem;
  border-left: 2em solid hsl(0, 0%, 100%);
  border-right: 2em solid hsl(0, 0%, 100%);
  background-color: white;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  margin: 5px;
  background-color: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #333;
}

.table {
  width: 100%;
}

.table tr > td {
  padding: 0.75rem;
  vertical-align: top;
}

.table tr {
  background-color: #F5F5F5;
}

.ticker {
  background-color: hsl(215, 54%, 40%);
  color: white;
  overflow: hidden;
}

.ticker__move {
  white-space: nowrap;
}

.ticker__element {
  display: inline-block;
}

.ticker__element > div {
  display: flex;
  align-items: center;
  font-style: italic;
  font-size: "Source Sans 3", sans-serif;
  padding: 1rem;
}

.ticker__element > div span:after {
  content: "+++";
  display: inline-block;
  padding: 0 1rem;
}

.cols {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

@media screen and (min-width: 45em) {
  .cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 45em) {
  .cols-2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (min-width: 45em) {
  .cols-4-7 {
    grid-template-columns: 4fr 7fr;
  }
}
.container-wrapper {
  background-color: hsla(210, 76%, 38%, 0.05); /* Vollflächige Hintergrundfarbe */
  width: 100%; /* Über die gesamte Breite des Browsers */
}

.container {
  width: min(95%, 90.1875rem);
  margin-inline: auto;
  box-sizing: content-box;
}

.container-margin-left {
  padding-inline: var(--margin-inline);
}

@media screen and (min-width: 45em) {
  .container-margin-left {
    padding-left: var(--margin-inline);
    padding-right: 0;
  }
}
.container-margin-right {
  padding-inline: var(--margin-inline);
}

@media screen and (min-width: 45em) {
  .container-margin-right {
    padding-right: var(--margin-inline);
    padding-left: 0;
  }
}
.container-margin-inline {
  padding-inline: var(--margin-inline);
}

.clr-invert {
  --clr-invert: white;
  --hamburger-color: white;
}

.clr-invert h1, .clr-invert h2, .clr-invert h3, .clr-invert h4, .clr-invert h5, .clr-invert h6, .clr-invert p, .clr-invert a, .clr-invert a:hover {
  color: var(--clr-invert);
}

.clr-invert .button[data-type=secondary], .clr-invert .button.secondary {
  border-color: var(--clr-invert);
  color: var(--clr-invert);
}

.clr-invert .button[data-type=secondary]:hover, .clr-invert .button.secondary:hover {
  opacity: 0.8;
}

.clr-invert .nav a:not(.button) {
  color: var(--clr-invert);
}

.clr-invert .nav a:not(.button):hover {
  color: var(--clr-invert);
}

.text-white {
  color: white;
}

.bg-pale {
  background-color: hsla(210, 76%, 38%, 0.05);
}

.ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.margin-inline-auto {
  margin-inline: auto;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--flex-column-gap, clamp(1.09375rem, 1.3020833333vw, 1.5625rem));
  row-gap: var(--flex-row-gap, calc(clamp(1.09375rem, 1.3020833333vw, 1.5625rem) / 2));
  width: fit-content;
}

.flex-group.mx-auto {
  width: 100%;
  justify-content: center;
}

.image-size-auto {
  width: 100%;
}

.image-size-50 {
  width: 50%;
}

.image-size-1 {
  width: 1rem;
}

.image-size-2 {
  width: 2rem;
}

.image-size-3 {
  width: 3rem;
}

.image-size-4 {
  width: 4rem;
}

.image-size-5 {
  width: 5rem;
}

.image-size-6 {
  width: 6rem;
}

.image-size-7 {
  width: 7rem;
}

.image-size-8 {
  width: 8rem;
}

.image-size-9 {
  width: 9rem;
}

.image-size-10 {
  width: 10rem;
}

.image-auto {
  width: 100%;
  object-fit: cover; /* oder: contain */
  object-position: top;
  display: block;
}

@media screen and (min-width: 45em) {
  .image-auto {
    height: 100%;
  }
}
.space-1 {
  padding-top: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-2 {
  padding-top: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

.space-3 {
  padding-top: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-4 {
  padding-top: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.space-5 {
  padding-top: clamp(5.46875rem, 6.5104166667vw, 7.8125rem);
}

.space-6 {
  padding-top: clamp(6.5625rem, 7.8125vw, 9.375rem);
}

.space-inline-1 {
  padding-inline: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-inline-2 {
  padding-inline: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

.space-inline-3 {
  padding-inline: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-inline-4 {
  padding-inline: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.space-block-1 {
  padding-block: clamp(1.09375rem, 1.3020833333vw, 1.5625rem);
}

.space-block-2 {
  padding-block: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}

.space-block-3 {
  padding-block: clamp(3.28125rem, 3.90625vw, 4.6875rem);
}

.space-block-4 {
  padding-block: clamp(4.375rem, 5.2083333333vw, 6.25rem);
}

.transform-y-100 {
  transform: translateY(-100%);
}

.transform-y-200 {
  transform: translateY(-200%);
}

.transform-y-300 {
  transform: translateY(-300%);
}

.transform-y-400 {
  transform: translateY(-400%);
}

.transform-y-500 {
  transform: translateY(-500%);
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  display: block;
}

.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container .video-wrapper video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
