@charset "UTF-8";
@import "vendors/fonts.css";
:root {
  --marker-color: #000000;
}

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

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

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

html {
  overflow-x: hidden;
}

body {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6666666667vw, 1.25rem);
  color: #000000;
  background-color: #ffffff;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  overflow-x: hidden;
}

a {
  color: #525152;
  text-decoration: underline;
}

a:is(:hover, :focus) {
  color: #89927c;
}

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: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  z-index: 999;
  transition: 0.45s transform;
  transform: translateY(-10%);
}

@media screen and (min-width: 45em) {
  .site-header {
    box-shadow: none;
    transform: translateY(0) !important;
  }
  .site-header .site-header__logo {
    transform: scale(1) translateY(0);
    transition: transform 0.3s ease;
  }
  .site-header.scrolled .site-header__logo {
    transform: scale(1) translateY(0);
  }
  .site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.site-header.scrolled {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: flex;
  width: min(90vw, 68rem);
  margin-inline: auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

@media screen and (min-width: 45em) {
  .site-header__inner {
    gap: 1.5rem;
  }
}
.site-header__logo {
  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(8rem, 17.8vw, 13.35rem);
  transition: width 0.3s ease-in-out;
}

.site-header__menu {
  display: flex;
  flex-flow: column;
  align-items: end;
  align-self: end;
}

#navigation {
  position: absolute;
  width: 0;
  top: 0;
  right: 0;
  height: 100vh;
  transition: transform 0.25s;
  background-color: #fff;
  z-index: 99;
  padding-top: clamp(6.5625rem, 12.5vw, 9.375rem);
  padding-right: clamp(6.5625rem, 12.5vw, 9.375rem);
}

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

@media screen and (min-width: 45em) {
  #navigation[data-visible=false] {
    overflow: visible;
  }
}
#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: 1.5rem;
  align-items: stretch;
  flex-flow: column;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.15;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav {
    position: relative;
    flex-flow: row;
    gap: clamp(1.8rem, 4.6666666667vw, 3.5rem);
  }
}
#main-navigation [role=navigation] .nav li.submenu-closing .sub-menu {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#main-navigation [role=navigation] .nav li a {
  display: block;
  font-size: clamp(1rem, 1.4666666667vw, 1.1rem);
  font-weight: 700;
  color: #89927c;
  text-decoration: none;
}

#main-navigation [role=navigation] .nav li a br {
  display: none;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav li a br {
    display: inline;
  }
}
#main-navigation [role=navigation] .nav li a:hover {
  color: #d0df6b;
}

#main-navigation [role=navigation] .nav li .sub-menu {
  display: none;
  list-style: none;
  margin-top: 0.5rem;
}

#main-navigation [role=navigation] .nav li .sub-menu li {
  margin-bottom: 0.5rem;
}

#main-navigation [role=navigation] .nav li .sub-menu li:hover a {
  color: #d0df6b !important;
}

#main-navigation [role=navigation] .nav li .sub-menu li a {
  font-size: 0.9rem;
  font-weight: normal;
}

#main-navigation [role=navigation] .nav li .sub-menu li a:hover {
  color: #d0df6b;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav li {
    position: static;
  }
  #main-navigation [role=navigation] .nav li:hover .sub-menu, #main-navigation [role=navigation] .nav li:focus-within .sub-menu {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  #main-navigation [role=navigation] .nav li .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    border-top: 1.5rem solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    margin: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(2px);
    transition: opacity 0.3s ease, transform 0.1s ease;
  }
  #main-navigation [role=navigation] .nav li .sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    height: 100vh;
    background: linear-gradient(0deg, hsl(87, 39%, 24%) 0%, hsla(87, 39%, 24%, 0.8) 20%, hsla(174, 39%, 27%, 0.8) 60%);
    z-index: -1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
  }
  #main-navigation [role=navigation] .nav li .sub-menu li a {
    font-size: clamp(1.1rem, 2.1333333333vw, 1.6rem);
    color: #ffffff;
    font-weight: normal;
    white-space: nowrap;
  }
}
#main-navigation [role=navigation] .nav .menu-item--search {
  display: flex;
  flex-direction: column;
}

#main-navigation [role=navigation] .nav .menu-item--search .nav-search {
  margin-top: 0.2rem;
  background-color: #eaece8;
  border: 1px solid #6e716a;
  border-radius: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 0.2rem 0.6rem;
  width: 8rem;
}

#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: center;
}

@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: none;
}

@media screen and (min-width: 45em) {
  #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 a {
  text-decoration: none;
}

.site-footer .instagram, .site-footer .portal {
  height: auto;
  width: clamp(2rem, 3.5066666667vw, 2.63rem);
  margin: 0.5rem 0;
}

.site-footer .portal-wrapper {
  position: relative;
  width: clamp(4rem, 6.6666666667vw, 5rem);
  height: clamp(4rem, 6.6666666667vw, 5rem);
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .portal-icon {
  width: 100%;
  object-fit: contain;
}

[aria-controls=main-navigation] {
  width: 4.5rem;
  background: transparent;
  border: none;
  display: block;
  place-self: flex-end;
  z-index: 9999;
  margin-left: auto;
  cursor: pointer;
}

@media screen and (min-width: 45em) {
  [aria-controls=main-navigation] {
    display: none;
  }
}
[aria-controls=main-navigation] .hamburger__line {
  transition: y 0.25s 0.25s, transform 0.25s, opacity 0s 0.25s;
  transform-origin: center;
  fill: #898A8A;
}

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

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

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top, [aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  y: 45;
}

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

[aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  transform: 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;
}

.breaking-news {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.breaking-news__label {
  background-color: #929b47;
  color: white;
  font-size: fluid(1.43rem, 1.1rem, 1.43rem);
  font-weight: 300;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breaking-news__label::after {
  content: "›";
  font-size: fluid(1.43rem, 1.1rem, 1.43rem);
  line-height: 1;
}

.breaking-news__list {
  display: flex;
  gap: 3rem;
  flex: 1;
}

.breaking-news__item {
  font-size: fluid(1.1rem, 1rem, 1.1rem);
  font-weight: 600;
  color: #272627;
  white-space: nowrap;
}

.button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 0;
  background-color: #ffffff;
  color: #525152;
  font-size: clamp(1.1rem, 1.7333333333vw, 1.3rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.button--dark {
  background-color: #272627;
  color: #ffffff;
}

.button--sage {
  background-color: #c4c8be;
  color: #525152;
}

.button--pistachio {
  background-color: #e4e6d1;
  color: #525152;
}

.button--bluegray {
  background-color: #b4b9bd;
  color: #525152;
}

.button--olive {
  background-color: #929b47;
  color: white;
}

.button--cream {
  background-color: #ebe2c3;
  color: #272627;
}

.circle {
  --circle-color: #304934;
  position: relative;
  width: clamp(7rem, 15.52vw, 11.64rem);
  height: clamp(7rem, 15.52vw, 11.64rem);
  background-color: var(--circle-color);
  opacity: 0.9;
  border-radius: 50%;
  color: #ffffff;
  z-index: 3;
  margin-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media (max-width: 768px) {
  .circle {
    margin-inline: auto;
  }
}
.circle__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-60%) translateX(-50%);
  width: 100%;
  text-align: center;
}

.circle__headline {
  font-size: clamp(2.15rem, 7.1333333333vw, 5.35rem);
  font-weight: 400;
  line-height: 1.1;
  display: block;
}

.circle__body {
  font-size: clamp(1rem, 1.8133333333vw, 1.36rem);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 18px;
  color: #525262;
}

/* Labels */
.form label {
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Inputs, Selects, Textarea */
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=date],
.form select,
.form textarea {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  background-color: #ffffff;
  color: #525262;
  outline: none;
}

/* Select – dezenter Custom-Pfeil */
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: linear-gradient(45deg, transparent 50%, #525262 50%), linear-gradient(135deg, #525262 50%, transparent 50%);
  background-position: calc(100% - 1.35rem) 50%, calc(100% - 1.05rem) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

/* Textarea */
.form textarea {
  border-radius: 30px;
  resize: vertical;
}

/* Zwei Felder nebeneinander */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Halbbreites Feld */
.form .is-half {
  width: 50%;
}

/* Mobile */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form .is-half {
    width: 100%;
  }
}
/* Submit */
.submit-btn {
  margin-top: 26px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #2fa47f;
  color: #ffffff;
  cursor: pointer;
}

.hero {
  --gradient-rect-height: 77%;
  --gradient-start: #3F5525;
  --gradient-mid: #3F5525;
  --gradient-end: #2B615C;
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 4%;
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__gradient-overlay rect#gradientRect {
  height: var(--gradient-rect-height);
}

.hero__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__circle {
  --circle-color: #304934;
  position: absolute;
  width: 13.2866666667vw;
  height: 13.2866666667vw;
  background-color: var(--circle-color);
  opacity: 0.9;
  border-radius: 50%;
  bottom: clamp(1.25rem, 3.3333333333vw, 2.5rem);
  left: 18vw;
  color: #ffffff;
  z-index: 3;
}

.hero__content {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
}

.hero__headline {
  font-size: 3.8466666667vw;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}

.hero__body {
  font-size: 2.8133333333vw;
  line-height: 1;
  display: block;
}

h1, .heading-1 {
  font-size: clamp(1.9625rem, 4.9866666667vw, 3.74rem);
  color: #000000;
  font-weight: "Lexend", sans-serif;
  text-transform: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h2, .heading-2 {
  font-size: clamp(1.5625rem, 3.796vw, 2.847rem);
  color: #000000;
  font-weight: 300;
  text-transform: normal;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h3, .heading-3 {
  font-size: clamp(1.13rem, 3vw, 2.25rem);
  color: #000000;
  font-weight: "Lexend", sans-serif;
  text-transform: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h4, .heading-4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #55724b;
  font-weight: 300;
  text-transform: normal;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h1.text-light, .heading-1.text-light {
  font-size: clamp(1.766rem, 4.488vw, 3.366rem);
  letter-spacing: 1px;
}

h2.text-light, .heading-2.text-light {
  font-size: clamp(1.406rem, 3.416vw, 2.562rem);
  letter-spacing: 1px;
}

h3.text-light, .heading-3.text-light {
  font-size: clamp(1.017rem, 2.7vw, 2.025rem);
  letter-spacing: 1px;
}

h4.text-light, .heading-4.text-light {
  font-size: clamp(0.99rem, 1.8vw, 1.35rem);
  letter-spacing: 1px;
}

h1 .text-light, h2 .text-light, h3 .text-light, h4 .text-light,
.heading-1 .text-light, .heading-2 .text-light, .heading-3 .text-light, .heading-4 .text-light {
  font-size: 0.9em;
  letter-spacing: 1px;
}

.intro {
  color: #ffffff;
  margin-inline: clamp(6rem, 16.4933333333vw, 12.37rem);
  padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  font-size: clamp(1rem, 1.6626666667vw, 1.247rem);
}

.intro > p {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.image-caption {
  position: relative;
  display: inline-block;
}

.image-caption img {
  display: block;
}

.image-caption__text {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.75rem;
  line-height: 1.2;
  display: inline-block;
  border-radius: 0;
  white-space: nowrap;
}

.list {
  padding-inline: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.downloads-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.downloads-list__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.downloads-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c1ddca;
  border-radius: 0.5rem;
  color: #55724b;
}

.downloads-list__icon svg {
  width: 24px;
  height: 24px;
}

.downloads-list__content {
  flex: 1;
  min-width: 0;
}

.downloads-list__title {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.downloads-list__title:hover {
  color: #55724b;
}

.downloads-list a.downloads-list__title:hover {
  text-decoration: underline;
}

.downloads-list__description {
  margin-top: 0.25rem;
  line-height: 1.5;
  opacity: 0.8;
}

.downloads-list__button {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #55724b;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.downloads-list__button:hover {
  background: #3e5337;
  transform: scale(1.1);
}

.downloads-list__button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 576px) {
  .downloads-list__item {
    flex-wrap: wrap;
  }
  .downloads-list__content {
    flex: 1 1 calc(100% - 64px);
  }
  .downloads-list__button {
    margin-left: auto;
  }
}
.toolbox {
  display: flex;
  align-items: end;
}

.toolbox::before {
  position: relative;
  display: block;
  content: "";
  width: clamp(8rem, 16.84vw, 12.63rem);
  height: clamp(8rem, 16.84vw, 12.63rem);
  background-image: url("../img/toolbox.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(35%);
  z-index: 0;
}

.chat {
  width: clamp(5rem, 11.4533333333vw, 8.59rem);
  height: clamp(5rem, 11.4533333333vw, 8.59rem);
}

.media-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: clamp(1.7rem, 4.196vw, 3.147rem);
  font-weight: 300;
  line-height: 1.4;
  opacity: 1;
  transition: opacity 1s ease;
}

.tools {
  width: clamp(6rem, 16.835vw, 12.62625rem);
  height: auto;
}

.wp-edge-slider {
  width: 100vw;
  position: relative;
  margin-left: calc(50% - min(90vw, 68rem) / 2);
  padding-bottom: 1.25rem;
}

.wp-edge-slider__viewport {
  overflow: hidden;
}

.wp-edge-slider__track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 450ms ease;
  cursor: grab;
  user-select: none;
}

.wp-edge-slider__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.wp-edge-slider__slide {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: clamp(10rem, 24.5168vw, 18.3876rem);
  text-decoration: none;
  color: inherit;
}

.wp-edge-slider__slide img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

.art-slide {
  display: block;
  position: relative;
  overflow: hidden;
}

.art-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.art-slide:hover .art-slide__overlay {
  opacity: 1;
}

.wp-edge-slider__spacer {
  flex: 0 0 auto;
  width: 0px;
}

.wp-edge-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.wp-edge-slider__dots .wp-edge-slider__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--slider-dot-color, #ecb847);
  opacity: 0.35;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.wp-edge-slider__dots .wp-edge-slider__dot.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.wp-edge-slider__dots .wp-edge-slider__dot:focus-visible {
  outline: 2px solid var(--slider-dot-color, #ecb847);
  outline-offset: 3px;
  opacity: 1;
}

.wp-edge-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wp-edge-slider__arrow svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.wp-edge-slider__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wp-edge-slider__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.wp-edge-slider__arrow--next {
  right: calc(50vw - min(90vw, 68rem) / 2 + 1rem);
}

@media screen and (min-width: 45em) {
  .wp-edge-slider__arrow--next {
    right: calc(50vw - min(90vw, 68rem) / 2 + 2rem);
  }
}
.wp-edge-slider__arrow--prev {
  left: 0.5rem;
}

@media screen and (min-width: 45em) {
  .wp-edge-slider__arrow--prev {
    left: 1rem;
  }
}
.ticker {
  position: relative;
  overflow: hidden;
}

.ticker__move {
  white-space: nowrap;
}

.ticker__element {
  display: inline-block;
}

.ticker__element > div {
  display: flex;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-wrapper .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.video-wrapper .video-poster.is-hidden {
  display: none;
}

/* Das Video füllt den Container */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay-Text */
.video-overlay {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: clamp(1.5rem, 3.796vw, 2.847rem);
  font-weight: 300;
  opacity: 1;
  transition: opacity 1s ease;
}

.video-wrapper__gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5%;
  z-index: 2;
  pointer-events: none;
  /* Transparenter Übergang → Seiten-Hintergrundfarbe */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #44515b 100%);
}

.video-play {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.video-play__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-play__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
}

.video-play:hover .video-play__icon {
  background: rgba(0, 0, 0, 0.65);
}

.video-play.is-hidden {
  display: none;
}

#videoIntroText {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

#videoIntroText.video-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  border-radius: 0;
}

.project-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.genossenschaft-organe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .genossenschaft-organe {
    grid-template-columns: repeat(3, 1fr);
  }
}
.organ-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.organ-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.organ-card .button-link {
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.organ-card .button-link:hover {
  transform: translateX(5px);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  row-gap: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 45em) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 45em) {
  .team-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-member__photo {
  padding-bottom: 1px;
  width: 100%;
}

.team-member__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-member__content {
  padding-top: 0.75rem;
  margin-inline: 2rem;
}

.team-member__content h3, .team-member__content h4 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.team-member__content p {
  margin-bottom: 0.5rem;
}

.team-member__content p:last-child {
  margin-bottom: 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.activity-card h3 {
  margin-bottom: 0;
}

.contact-info h3 {
  margin-bottom: 0;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background-color: #000000;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

.button--light {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.button--light:hover {
  background-color: #ffffff;
  color: #2b615d;
}

.project-slider {
  position: relative;
}

.project-slider__header {
  margin-bottom: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.project-slider__header h2 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

@media screen and (min-width: 45em) {
  .project-slider__header {
    max-width: 60%;
  }
}
.project-slider__container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.project-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.project-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.project-slider__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  min-height: clamp(20rem, 33.3333333333vw, 30rem);
  align-items: end;
}

@media screen and (min-width: 45em) {
  .project-slider__content {
    grid-template-columns: 14rem 1fr;
  }
}
@media screen and (min-width: 65em) {
  .project-slider__content {
    grid-template-columns: 14rem 1fr;
  }
}
.project-slider__text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
  padding: clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0;
}

.project-slider__text h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.project-slider__slide.is-active .project-slider__text {
  opacity: 1;
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  transform: translateY(0);
}

.project-slider__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-slider__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.project-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43, 97, 93, 0.7);
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.project-slider__nav:hover {
  background: rgba(43, 97, 93, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.project-slider__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.project-slider__nav--prev {
  left: 20px;
}

@media screen and (min-width: 45em) {
  .project-slider__nav--prev {
    left: 30px;
  }
}
.project-slider__nav--next {
  right: 20px;
}

@media screen and (min-width: 45em) {
  .project-slider__nav--next {
    right: 30px;
  }
}
.project-slider__nav svg {
  pointer-events: none;
}

.project-slider__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  padding-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.project-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(43, 97, 93, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.project-slider__indicator:hover {
  background: rgba(43, 97, 93, 0.6);
  transform: scale(1.2);
}

.project-slider__indicator.active {
  background: #2b615d;
  transform: scale(1.3);
}

.project-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  border-radius: 0;
}

.project-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.accordion {
  width: 100%;
}

.accordion__item {
  border-bottom: 1px solid white;
}

.accordion__header {
  width: 100%;
  background: transparent;
  border: none;
  padding: clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion__header:hover {
  opacity: 0.7;
}

.accordion__header:focus {
  outline: none;
  outline-offset: 2px;
}

.accordion__title {
  font-size: 1.247rem;
  font-weight: 700;
  color: #272627;
  margin: 0;
  padding-right: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
  line-height: 1.3;
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #272627;
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion__header[aria-expanded=true] .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__content[aria-hidden=false] {
  max-height: 2000px;
}

.accordion__body img {
  width: 100%;
  height: auto;
  display: block;
}

.accordion__body p {
  margin: 0 0 clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0;
}

.accordion__body p:last-child {
  margin-bottom: 0;
}

.accordion--light .accordion__header {
  color: #272627;
}

.accordion--light .accordion__item {
  border-color: white;
}

.accordion--dark .accordion__title,
.accordion--dark .accordion__icon::before,
.accordion--dark .accordion__icon::after {
  color: #ffffff;
  background-color: #ffffff;
}

.accordion--dark .accordion__item {
  border-color: white;
}

.immo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.immo-slider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: immo-fade 60s linear infinite;
}

@keyframes immo-fade {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  3% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#bot_chat_trigger {
  opacity: 0 !important;
  pointer-events: none !important;
}

.quick-links {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-links__item {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.quick-links__item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-links__item[data-tooltip]::after {
  content: attr(data-tooltip);
  display: block;
  position: absolute;
  left: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff !important;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.85rem !important;
  line-height: 1.4;
  white-space: nowrap;
  text-indent: 0;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  z-index: 101;
}

.quick-links__item[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

.quick-links__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.tips-section {
  background-color: #efc875;
}

.tips-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

@media screen and (min-width: 45em) {
  .tips-accordion {
    grid-template-columns: 1fr 1fr;
  }
}
.tips-accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.tips-accordion__trigger {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #525152;
  cursor: pointer;
  transition: color 0.2s ease;
}

.tips-accordion__trigger:hover {
  color: #96a952;
}

.tips-accordion__trigger[aria-expanded=true] {
  color: #96a952;
}

.tips-accordion__panel-mobile {
  display: none;
  padding: clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0 clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.tips-accordion__panel-mobile.is-active {
  display: block;
}

@media screen and (min-width: 45em) {
  .tips-accordion__panel-mobile {
    display: none !important;
  }
}
.tips-accordion__content {
  display: none;
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .tips-accordion__content {
    display: block;
  }
}
.tips-accordion__panel {
  display: none;
}

.tips-accordion__panel.is-active {
  display: block;
}

.tips-accordion__video {
  margin-top: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.tips-accordion__video .video-wrapper {
  max-width: 400px;
}

.immo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.immo-placeholder__icon {
  width: 30%;
  height: auto;
  opacity: 0.4;
}

.immo-gallery-wrapper {
  position: relative;
}

.immo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.immo-gallery__item--main {
  grid-column: span 2;
  grid-row: span 2;
}

.immo-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.immo-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.immo-gallery__arrow svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.immo-gallery__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.immo-gallery__arrow--next {
  right: 1rem;
}

.immo-gallery__arrow--prev {
  left: calc(50% + 1rem);
}

@media (max-width: 768px) {
  .immo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .immo-gallery__item--main {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.immo-table {
  width: 100%;
  border-collapse: collapse;
}

.immo-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.immo-table tr:last-child {
  border-bottom: none;
}

.immo-table td {
  padding: 0.75rem 0;
  vertical-align: top;
}

.immo-table__label {
  color: #666;
  font-weight: 400;
  width: 50%;
}

.immo-table__value {
  color: #333;
  font-weight: 600;
  text-align: right;
}

.immo-details {
  background: #f5f5f5;
  padding: 2rem;
}

.immo-descriptions .immo-section p {
  line-height: 1.7;
}

.immo-map {
  width: 100%;
  overflow: hidden;
}

.immo-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.immo-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.immo-lightbox__image {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

.immo-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.immo-lightbox__close:hover {
  transform: scale(1.2);
}

.immo-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.immo-lightbox__arrow svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.immo-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.immo-lightbox__arrow--prev {
  left: 1.5rem;
}

.immo-lightbox__arrow--next {
  right: 1.5rem;
}

.immo-lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
}

.job-hero {
  overflow: hidden;
  max-height: 450px;
}

.job-hero__img {
  object-fit: cover;
}

.job-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  background-color: rgba(146, 155, 71, 0.85);
}

.job-hero__tagline {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1333333333vw, 1.6rem);
  font-style: normal;
  line-height: 1.4;
}

.job-title-box {
  background-color: #a2ab4e;
  color: #fff;
  padding-block: 2.5rem;
}

.job-title-box h1, .job-title-box p {
  color: #fff;
}

.job-benefits-box {
  background-color: #e7eec2;
  color: #272627;
  padding-block: 2.5rem;
}

.job-cta {
  background-color: #e4e6d1;
  color: #272627;
}

.job-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.job-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.karriere-video-caption {
  max-width: 14rem;
  margin-left: auto;
  line-height: 1.5;
  text-align: right;
}

.karriere-benefits-bg {
  background-color: #e5e7ca;
}

.karriere-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
  text-align: center;
}

@media (max-width: 48em) {
  .karriere-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
.karriere-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.karriere-benefit__icon {
  width: 5rem;
  height: 5rem;
}

.karriere-benefit__label {
  font-size: clamp(0.85rem, 1.3333333333vw, 1rem);
  line-height: 1.4;
}

.karriere-job-list {
  list-style: disc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.karriere-job-list li::marker {
  color: #272627;
}

.karriere-job-link {
  display: inline-block;
  background-color: #e4e6d3;
  color: #272627;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.4666666667vw, 1.1rem);
}

.karriere-job-link:hover {
  background-color: #a2ab4e;
  color: #fff;
}

.mediathek-downloads {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mediathek-download-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.mediathek-download-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mediathek-download-year {
  font-size: clamp(1rem, 1.4666666667vw, 1.1rem);
}

.mediathek-covers {
  display: flex;
  gap: 2rem;
}

.mediathek-cover-item {
  display: flex;
  flex-direction: column;
}

.nachb-accordion__cover--placeholder {
  width: 280px;
  aspect-ratio: 3/4;
  background-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: block;
}

.nachb-section {
  background-color: #efc875;
}

.nachb-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

@media screen and (min-width: 45em) {
  .nachb-accordion {
    grid-template-columns: 2fr 3fr;
  }
}
.nachb-accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nachb-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nachb-accordion__trigger {
  display: block;
  width: 100%;
  padding: 0.6rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #525152;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nachb-accordion__trigger:hover, .nachb-accordion__trigger[aria-expanded=true] {
  color: #96a952;
}

.nachb-accordion__cover {
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nachb-accordion__panel-mobile {
  display: none;
  padding: clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0 clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.nachb-accordion__panel-mobile.is-active {
  display: block;
}

@media screen and (min-width: 45em) {
  .nachb-accordion__panel-mobile {
    display: none !important;
  }
}
.nachb-accordion__panel-mobile .button {
  margin-top: 0.75rem;
}

.nachb-accordion__content {
  display: none;
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .nachb-accordion__content {
    display: block;
  }
}
.nachb-accordion__panel {
  display: none;
}

.nachb-accordion__panel.is-active {
  display: block;
}

.mediathek-press {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mediathek-press-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mediathek-press-row:hover {
  opacity: 0.7;
}

.mediathek-press-row:last-child {
  border-bottom: none;
}

.mediathek-press-row.is-hidden {
  display: none;
}

.mediathek-press-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mediathek-press-thumb {
  width: 5.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.mediathek-press-date {
  min-width: 6rem;
  color: #939393;
  white-space: nowrap;
}

.mediathek-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 48em) {
  .mediathek-videos {
    grid-template-columns: 1fr;
  }
}
.mediathek-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.mediathek-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mediathek-video__title {
  margin-top: 0.5rem;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #6e716a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

.search-result {
  display: block;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result:hover {
  background-color: #f5f5f5;
}

.search-result--empty {
  color: #999;
  font-size: 0.8rem;
}

.search-result__page {
  display: block;
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.search-result__section {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2b615d;
  margin-bottom: 0.2rem;
}

.search-result__snippet {
  display: block;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

.search-result__snippet mark {
  background-color: #d4edda;
  color: #333;
  padding: 0 0.1em;
}

.text-gray-metal {
  color: #939393;
}

.bg-gray-metal {
  background-color: #939393;
}

.text-stone {
  color: #89927c;
}

.bg-stone {
  background-color: #89927c;
}

.text-dark-gray {
  color: #525152;
}

.bg-dark-gray {
  background-color: #525152;
}

.text-almost-black {
  color: #272627;
}

.bg-almost-black {
  background-color: #272627;
}

.text-light-bluegray {
  color: #b4b9bd;
}

.bg-light-bluegray {
  background-color: #b4b9bd;
}

.text-slate-taupe {
  color: #686361;
}

.bg-slate-taupe {
  background-color: #686361;
}

.text-sage {
  color: #c4c8be;
}

.bg-sage {
  background-color: #c4c8be;
}

.text-charcoal {
  color: #686768;
}

.bg-charcoal {
  background-color: #686768;
}

.text-steel {
  color: #8f979d;
}

.bg-steel {
  background-color: #8f979d;
}

.text-silver-steel {
  color: #a1a8ad;
}

.bg-silver-steel {
  background-color: #a1a8ad;
}

.text-silver-sage {
  color: #d3d8d5;
}

.bg-silver-sage {
  background-color: #d3d8d5;
}

.text-muted-sage {
  color: #929e95;
}

.bg-muted-sage {
  background-color: #929e95;
}

.text-silver-green {
  color: #aab8aa;
}

.bg-silver-green {
  background-color: #aab8aa;
}

.text-taupe {
  color: #d3cebc;
}

.bg-taupe {
  background-color: #d3cebc;
}

.text-warm-taupe {
  color: #cbc2b5;
}

.bg-warm-taupe {
  background-color: #cbc2b5;
}

.text-ash {
  color: #b1b9b3;
}

.bg-ash {
  background-color: #b1b9b3;
}

.text-dusty-rose {
  color: #c4bcb7;
}

.bg-dusty-rose {
  background-color: #c4bcb7;
}

.text-warm-gray {
  color: #9d988d;
}

.bg-warm-gray {
  background-color: #9d988d;
}

.text-ice-blue {
  color: #c6d1d3;
}

.bg-ice-blue {
  background-color: #c6d1d3;
}

.text-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.text-moss {
  color: #55724b;
}

.bg-moss {
  background-color: #55724b;
}

.text-dark-moss {
  color: #3F5525;
}

.bg-dark-moss {
  background-color: #3F5525;
}

.text-lime {
  color: #d0df6b;
}

.bg-lime {
  background-color: #d0df6b;
}

.text-bright-lime {
  color: #b1ce4a;
}

.bg-bright-lime {
  background-color: #b1ce4a;
}

.text-olive {
  color: #929b47;
}

.bg-olive {
  background-color: #929b47;
}

.text-pistachio {
  color: #bfca90;
}

.bg-pistachio {
  background-color: #bfca90;
}

.text-lime-khaki {
  color: #bac687;
}

.bg-lime-khaki {
  background-color: #bac687;
}

.text-light-pistachio {
  color: #e4e6d1;
}

.bg-light-pistachio {
  background-color: #e4e6d1;
}

.text-pale-pistachio {
  color: #cbd4a4;
}

.bg-pale-pistachio {
  background-color: #cbd4a4;
}

.text-sand {
  color: #b7ae92;
}

.bg-sand {
  background-color: #b7ae92;
}

.text-beige {
  color: #9fa695;
}

.bg-beige {
  background-color: #9fa695;
}

.text-eucalyptus {
  color: #5c6d60;
}

.bg-eucalyptus {
  background-color: #5c6d60;
}

.text-olive-gray {
  color: #7f8175;
}

.bg-olive-gray {
  background-color: #7f8175;
}

.text-pale-sage {
  color: #dcdfb5;
}

.bg-pale-sage {
  background-color: #dcdfb5;
}

.text-sage-green {
  color: #c9cda3;
}

.bg-sage-green {
  background-color: #c9cda3;
}

.text-pale-sage-cream {
  color: #e0e5c8;
}

.bg-pale-sage-cream {
  background-color: #e0e5c8;
}

.text-forest {
  color: #375731;
}

.bg-forest {
  background-color: #375731;
}

.text-olive-forest {
  color: #456c36;
}

.bg-olive-forest {
  background-color: #456c36;
}

.text-cream-mint {
  color: #f2f7e0;
}

.bg-cream-mint {
  background-color: #f2f7e0;
}

.text-mint {
  color: #82bb94;
}

.bg-mint {
  background-color: #82bb94;
}

.text-pale-lime {
  color: #d0e293;
}

.bg-pale-lime {
  background-color: #d0e293;
}

.text-deep-teal {
  color: #2b615d;
}

.bg-deep-teal {
  background-color: #2b615d;
}

.text-dark-teal {
  color: #356861;
}

.bg-dark-teal {
  background-color: #356861;
}

.text-slate-blue {
  color: #44515b;
}

.bg-slate-blue {
  background-color: #44515b;
}

.text-dark-slate {
  color: #47555f;
}

.bg-dark-slate {
  background-color: #47555f;
}

.text-slate-gray {
  color: #5c7480;
}

.bg-slate-gray {
  background-color: #5c7480;
}

.text-cream {
  color: #ebe2c3;
}

.bg-cream {
  background-color: #ebe2c3;
}

.text-pale-cream {
  color: #efe5c0;
}

.bg-pale-cream {
  background-color: #efe5c0;
}

.text-mint-cream {
  color: #e8f0c9;
}

.bg-mint-cream {
  background-color: #e8f0c9;
}

.text-seafoam {
  color: #c1ddca;
}

.bg-seafoam {
  background-color: #c1ddca;
}

.text-yellow-lime {
  color: #e0ea9d;
}

.bg-yellow-lime {
  background-color: #e0ea9d;
}

.text-ivory {
  color: #fdf8ed;
}

.bg-ivory {
  background-color: #fdf8ed;
}

.text-camel {
  color: #d5af87;
}

.bg-camel {
  background-color: #d5af87;
}

.text-copper {
  color: #cfa274;
}

.bg-copper {
  background-color: #cfa274;
}

.text-tan {
  color: #d4a162;
}

.bg-tan {
  background-color: #d4a162;
}

.text-dark-brown {
  color: #5a4436;
}

.bg-dark-brown {
  background-color: #5a4436;
}

.text-wheat {
  color: #d7c68b;
}

.bg-wheat {
  background-color: #d7c68b;
}

.text-khaki-tan {
  color: #d5c487;
}

.bg-khaki-tan {
  background-color: #d5c487;
}

.text-khaki-gold {
  color: #d0bc78;
}

.bg-khaki-gold {
  background-color: #d0bc78;
}

.text-champagne {
  color: #f7e3b6;
}

.bg-champagne {
  background-color: #f7e3b6;
}

.text-mustard {
  color: #decb81;
}

.bg-mustard {
  background-color: #decb81;
}

.text-golden {
  color: #f6da85;
}

.bg-golden {
  background-color: #f6da85;
}

.text-bright-yellow {
  color: #fff77f;
}

.bg-bright-yellow {
  background-color: #fff77f;
}

.text-amber {
  color: #ecb847;
}

.bg-amber {
  background-color: #ecb847;
}

.text-dark-gold {
  color: #c9a92d;
}

.bg-dark-gold {
  background-color: #c9a92d;
}

.text-emerald {
  color: #28a67e;
}

.bg-emerald {
  background-color: #28a67e;
}

.bg-slate-blue a {
  color: #b1ce4a;
}

.bg-slate-blue a:hover {
  color: #fff;
}

.container-max {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}

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

.container {
  width: min(90vw, 68rem);
  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);
}

.space-sm {
  padding-top: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.space-left-2 {
  padding-left: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

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

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

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

/* Grund-Container für jede Headline */
.headline-block {
  display: flex;
  gap: 1.5rem;
}

/* Bild vor der Überschrift */
.headline-block__image {
  width: auto;
  flex-shrink: 0;
}

/* Standard-Headline-Styling (optional anpassbar) */
.headline-block__text {
  margin: 0;
  line-height: 1.2;
}

/* Modifier: Überschrift MIT Bild */
.headline--with-image {
  display: flex;
}

/* Modifier: Überschrift ZENTRIERT – funktioniert MIT oder OHNE Bild */
.headline--center {
  justify-content: center;
  text-align: center;
  /* Speziell, wenn ein Bild dabei ist: */
}

.headline--center.headline--with-image {
  /* Wir zentrieren den ganzen Block, Bild + Text als Einheit */
  justify-content: center;
}

/* Modifier: Überschrift mit versetzter Unterzeile (50% eingerückt) */
.headline--staggered {
  display: inline-block;
  text-align: left;
}

.headline--staggered__sub {
  display: inline-block;
  margin-left: 50%;
  width: 100%;
}

.img-size--l {
  width: clamp(7rem, 19.16vw, 14.37rem);
  height: auto;
}

.text-regular {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-light {
  font-weight: 300;
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-sm {
  font-size: clamp(0.75rem, 1.188vw, 1rem);
}

.table td, .table tr {
  font-size: clamp(1rem, 1.6626666667vw, 1.247rem);
}

.table-sm td, .table-sm tr {
  font-size: clamp(0.8rem, 1.2413333333vw, 0.931rem);
}

.notice-append {
  position: absolute;
  top: 0;
  line-height: 1;
  transform: translateX(-150%);
  font-size: clamp(2.8rem, 7.704vw, 5.778rem);
  color: #ffffff;
  font-weight: 700;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-66 {
  width: 66%;
}

.w-75 {
  width: 75%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.w-min {
  min-width: 600px;
}

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

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

.align-items-end {
  align-items: end;
}

.position-relative {
  position: relative;
}

.even-columns {
  display: grid;
  gap: var(--grid-gap, clamp(1.09375rem, 2.0833333333vw, 1.5625rem));
}

@media screen and (min-width: 45em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
@media (max-width: 44.99em) {
  .even-columns {
    display: flex;
    flex-direction: column;
  }
  .even-columns > .image {
    order: 1;
  }
  .even-columns > .text {
    order: 2;
    padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  }
}
@media screen and (min-width: 45em) {
  .even-columns--2-3 {
    grid-auto-flow: row;
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (min-width: 45em) {
  .even-columns--3-2 {
    grid-auto-flow: row;
    grid-template-columns: 3fr 2fr;
  }
}

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