:root {
  --green: #157e00;
  --blue: #127dab;
  --text: #000000;
  --green-bg: #e8f2e5;
  --blue-gradient: linear-gradient(129.04deg, #00628d 17.15%, #0098da 82.6%);
  --grid: 1280px;
  --section-pad: 75px;
  --section-pad-mobile: 35px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;

}

h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

h2.h2-2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

p {
  font-size: 22px;
  line-height: 34px;
}

a {
  color: inherit;
  text-decoration: none;
}

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


.grid {
  width: min(var(--grid), 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--green-bg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 12px;
}

.list {
  list-style: none;
  margin: 20px 0 28px;
}

.list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-item div {
  padding: 22px;
}

.form {
  display: grid;
  gap: 14px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #c7d7c2;
  font-size: 16px;
}

.form-note {
  font-size: 12px;
  color: #3b3b3b;
}


.header {
  background: #ffffff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero-shell {
  background: #ffffff;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  width: 100%;
}

.hero-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  position: relative;
}

.hero-top-link:nth-child(1) {
  font-size: 12px;
}

.hero-top-link:nth-child(2) {
  font-size: 16px;
}

.icon-search {
  width: 12px;
  height: 12px;
  border: 4px solid var(--green);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: var(--green);
  bottom: -3px;
  right: -4px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.hero-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 32px;
}

.hero-logo img {
  height: 62px;
  width: auto;
}

.hero-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  justify-content: center;
}

.hero-nav a {
  position: relative;
  display: inline-block;
}

.hero-top-link::after,
.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4.5px;
  background: var(--green);
  bottom: -10px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-top-link:hover::after,
.hero-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-cta {
  border: none;
  background: var(--green);
  color: #ffffff;
  padding: 7px 33px;
  line-height: 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta-mobile {
  display: none;
}

.hero-cta:hover {
  box-shadow: inset 0 0 0 3px var(--green);
  background: #fff;
  color: var(--green);
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.menu-toggle {
  width: 28px;
  height: 20px;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  display: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
    position: absolute;
    left: 0;
    right: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.eHeader_navBottom {
  font-size: 20px;
}
.hero-image {
  width: 100%;
  height: 600px;
  background: url("../img/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
}

.hero-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.hero-overlay {
  background-color: #e3eef2;
  min-height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay h2 {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  color: var(--blue);
  font-weight: 700;
  max-width: 1240px;
  margin: 0 auto;
}


.content-section {
  background: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.content-text {
  max-width: 720px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.content-media {
  width: 100%;
  height: 100%;
  max-width: 500px;
  justify-self: end;
}

.content-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  object-position: top;
}

.content-section h2 {
  color: var(--blue);
}

.content-section h3 {
  color: var(--blue);
  font-size: 20px;
  line-height: 28px;
}

.cta-g {
  border: 3px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 4px 27px;
  line-height: 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.cta-g:hover {
  border: 3px solid var(--green);
  color: #fff;
  background-color: var(--green);
}


section.content-section:has(.content-grid--reverse) {
  background: var(--green-bg);
}


.zahlen-section {
  position: relative;
  /* Adjusted based on previous content */
    background: none;
    height: auto;
}

.zahlen-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 860px;
  background: url("../img/section-3.jpg") center/cover no-repeat;
  z-index: 0;
}

.zahlen-section>* {
  position: relative;
  z-index: 1;
}

.zahlen-section .unser-wirken {
  margin: 0 auto;
  margin-top: 550px;
  max-width: 1280px;
  background: #fff;
  border-radius: 32px;
  padding: 50px 30px 30px 30px;
  box-shadow: 7px 6px 23px 0px #0707074d;
}

.zahlen-section .unser-wirken h2 {
  text-align: left;
  color: var(--blue);
}

.zahlen-grid {
  margin-top: 50px;
}

.zahlen-grid .zahlen-item {
  background: linear-gradient(129.04deg, #00628D 17.15%, #0098DA 82.6%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 14px;
  padding: 25px 30px;
  gap: 10px;
  height: 290px;
}
.zahlen-grid .zahlen-number {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
}

.zahlen-grid .zahlen-text {
  font-size: 22px;
  color: #fff;
  line-height: 34px;
  font-weight: 700;
}


.weise-section {
  background: #ffffff;
}

.weise-title {
  text-align: left;
  color: var(--blue);
  margin-bottom: 75px;
}

.weise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.weise-card {
  background: var(--green-bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.page-285 .weise-card .weise-btn {
  position: absolute;
  left: 40px;
  bottom: 20px;
}
.page-285 .weise-card {
  padding-bottom: 40px;
}

.weise-card img {
  width: 100%;
  height: 247px;
  display: block;
  object-fit: cover;
}

.weise-card-body {
  padding: 30px 40px 30px 40px;
  text-align: left;
}
.zahlen-section .zahlen-item .zahlen-text {
  text-align: center;
}
.weise-card-body h3 {
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -2%;
}

.weise-card-body p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 37px;
}

.weise-btn {
  display: inline-block;
  padding: 4px 27px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  width: fit-content;
}

.weise-btn:hover {
  background: var(--green);
  color: #fff;
}

.white-btn {
  border: 4px solid #fff;
  color: #fff;
}

.white-btn:hover {
  background: #fff;
  color: var(--green)
}


.blumen-vor-dem-brot-section {
  background: url("../img/section-4.jpg") center/cover no-repeat;
  height: 641px;
}

.blumen-grid {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.blumen-box {
  width: 613px;
  min-height: 420px;
  padding: 35px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blumen-box h2 {
  color: #ffffff;
  font-size: 30px;
}

.blumen-box p {
  line-height: 32px;
  font-size: 20px;
}

.blumen-cta {
  font-size: 25px;
  display: inline-block;
  padding: 10px 24px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  width: fit-content;
}

.blumen-cta:hover {
  background: #ffffff;
  color: var(--blue);
}


.neues-section {
  background: #e3eef2;
}

h2.neues-title {
  text-align: left;
  color: var(--blue);
  margin-bottom: 50px;
}

.neues-slider {
    margin: 0 auto;
}

.swiper-header {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 0 0 14px 14px;
  flex-grow: 1;
  margin-top: 15px;
}

.neues-slider.swiper {
  width: 100%;
  display: block;
}

.neues-slider .swiper-wrapper {
  align-items: stretch;
}

.neues-slider .swiper-slide {
  height: auto;
  display: flex;
}

.neues-section .neues-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.neues-section .neues-card a {
  display: flex;
  flex-direction: column;
  height: 100%; /* Make the anchor tag fill the height of the card */
}

.neues-card img {
    width: 100%;
    height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.neues-section .neues-card img {
  height: 500px;
  border-radius: 14px 0 0;
  width: auto;
}

.neues-card h3 {
  color: var(--blue);
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}

.neues-section .neues-card h3 {
  font-size: 30px;
  line-height: 1.3;
  text-align: left;
}

.neues-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 24px;
}

.neues-section .neues-dots {
  gap: 10px;
  margin: 16px 0 22px;
}

.neues-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b7d7a6;
}

.neues-section .neues-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  opacity: 0.35;
}

.neues-dot.is-active {
    background: var(--green);
}

.neues-section .neues-dot.is-active {
  opacity: 1;
}

.neues-cta {
    display: block;
  padding: 4px 27px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  width: fit-content;
}

.neues-cta:hover {
  background: var(--green);
  color: #fff;
}


.medien-section {
  background: var(--blue);
  color: #ffffff;
  padding: 75px 0px 200px 0px !important;
}

.medien-title {
  text-align: left;
  color: #ffffff;
  margin-bottom: 100px;
}

.media-slider.swiper {
  width: 100%;
  overflow: visible;
}



.media-card {
  background: var(--media-bg) center/cover no-repeat;
  border-radius: 14px;
    height: 590px;
    min-height: 590px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
    position: relative;
    overflow: visible;
}

.medien-section .media-slider .swiper-slide,
.medien-section .media-card {
  height: 590px;
  min-height: 590px;
  margin-bottom: 74px;
}


.freunde-section .media-card-content h3 {
  color: #fff;
}
.media-card-content h3 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 23px;
}

.media-card-content p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 23px;
  max-width: 268px;
}

.media-card-cta {
  display: inline-block;
  padding: 8px 18px;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

.media-card-cta:hover {
  background: #ffffff;
  color: var(--blue) !important;
}

.media-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  width: fit-content;
  align-self: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    height: 140px;
    max-width: 470px;
    width: calc(100% - 40px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  overflow: visible !important;
}

.media-logo img {
    height: 100%;
  width: auto;
  display: block;
}

.media-logo--dlr img {
  width: 378px;
  height: 56px;
  object-fit: contain;
}

.media-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.medien-section {
  overflow-x: hidden;
}

.media-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.35;
}

.media-dot.is-active {
  opacity: 1;
}


.standorte-section {
  background: #E8F2E5;
}

.standorte-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: center;
}

.standorte-visual img {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.standorte-content h2 {
  color: var(--blue);
  margin-bottom: 50px;
}

.standorte-content p {
  font-size: 22px;
  margin-bottom: 50px;
}

.standorte-cta {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 25px;
}

.standorte-cta:hover {
  background: var(--green);
  color: #ffffff;
}


.footer-info-section {
  background: #ffffff;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.footer-info-col h3 {
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 18px;
}

.footer-subtitle {
  margin-top: 26px;
}

.footer-pill {
  border-radius: 999px;
  display: inline-block;
  padding: 10px 22px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 25px;
}

.footer-pill:hover {
  background: var(--green);
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
}

.footer-social img {
  display: block;
}

.footer-info-col p {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 34px;
}

.footer-info-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-col .footer-links a {
  color: var(--green);
  font-weight: 700;
  font-size: 26px;
}

.footer-logos-section {
  background: #E3EEF2;
}

.footer-logos-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  margin-bottom: 20px;
}

.footer-logos-header h3 {
  color: var(--blue);
  font-size: 30px;
}

.footer-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-logo-card {
  background: #ffffff;
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
}

.footer-logo-card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.footer-bottom {
  background: var(--blue);
  color: #ffffff;
  padding: 22px 0;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
}

.hero-nav a.active {
    color: var(--blue);
  }

@media (max-width: 1440px) {
  .hero-image {
    height: 500px;
  }
}

@media (max-width: 1365px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  h2.h2-2 {
    font-size: 26px;
  }

  p {
    font-size: 20px;
    line-height: 32px;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    column-gap: 20px;
    row-gap: 0;
    align-items: center;
  }

  .hero-shell.menu-open {
    row-gap: 20px;
  }

  .hero-main {
    display: contents;
  }

  .hero-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-actions .hero-cta {
    display: none;
  }

  .hero-top {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    display: none;
  }

  .hero-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    display: none;
  }

  .hero-nav a {
    text-align: center;
    width: 100%;
  }



  .hero-nav .hero-cta-mobile {
    display: inline-flex;
    margin-top: 20px;
  }

  .hero-shell.menu-open .hero-top {
    display: flex;
    padding-top: 16px;
  }

  .hero-shell.menu-open .hero-nav {
    display: flex;
    margin-top: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h2.h2-2 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-shell {
    grid-template-columns: 1fr auto;
    text-align: center;
    column-gap: 20px;
    row-gap: 0;
    align-items: center;
  }

  .hero-shell.menu-open {
    row-gap: 20px;
  }

  .hero-top {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-nav {
    grid-row: 3;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 18px;
  }

  .hero-nav a {
    text-align: center;
    width: 100%;
  }

  .hero-actions {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .hero-logo {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-text {
    max-width: 100%;
  }

  .content-media {
    max-width: 100%;
    justify-self: start;
  }

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

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

  .neues-slider {
    grid-template-columns: 1fr;
  }

  .neues-card img {
    height: auto;
  }

  .media-card {
    height: 320px;
  }

  .standorte-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .standorte-visual {
    display: flex;
    justify-content: center;
  }

  .footer-logos-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-grid {
    flex-direction: column;
  }
}

@media (min-width: 981px) {
  .content-grid {
    grid-template-columns: minmax(0, 720px) minmax(0, 500px);
  }

  .content-grid--reverse {
    grid-template-columns: minmax(0, 500px) minmax(0, 720px);
  }

  .content-grid--reverse .content-media {
    justify-self: start;
  }
}

@media (max-width: 86px) {
  .eFooter_dataCol-3 {
    width: auto;
  }
}


@media (max-width: 1024px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
  }
}



.neues-section .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  margin: 0 5px;
  background: #157E00;
}
.neues-section .neues-cta {
  margin-top: 40px;
}
.neues-slider.swiper {
}
.medien-section.freunde-section {
}
.freunde-section .medien-title {
  text-align: center;
  margin-bottom: 74px;
  margin-top: 30px;
}

.freunde-section .grid {
  overflow: hidden;
}

.medien-section.freunde-section {
  padding-bottom: 100px !important;
}
.freunde-section .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  margin: 0 5px;
  background: #fff;
}
.section.map {
  background: #E8F2E5;
}




.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cover,
.contain {
  overflow: hidden;
}
.cover > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.contain > img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.inside {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
  width: 1300px;
  margin: 0 auto;
}

.flex-sb {
  justify-content: space-between;
}
.flex-sa {
  justify-content: space-around;
}
.flex-c {
  justify-content: center;
}
.flex-r {
  justify-content: flex-end;
}
.flex-l {
  justify-content: start;
}
.flex-t {
  align-items: flex-start;
}
.flex-b {
  align-items: flex-end;
}
.flex-m {
  align-items: center;
}
.flex-s {
  align-items: stretch;
}
.nowrap {
  flex-wrap: nowrap;
}


.news-row {
  padding: 75px 0;
}
.news-row .image a {
  border-radius: 15px;
}
.news-row .text h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
  color: #127DAB;
}
.news-row .text {
  width: calc(100% - 520px);
  line-height: 1.35;
  font-size: 22px;
}
.hero-image.news {
  height: 505px;;
}
.section.footer-info-section {
  display: none;
}
.news-row .image a {
  width: 443px;
}

@media (max-width: 1440px) {
  .inside {
    width: 92vw;
  }
  .news-row .text p {
    font-size: 18px;
  }
  .news-row .text {
    width: calc(100% - 460px);
    font-size: 16px;
  }
  .news-row .text h3 {
    font-size: 32px;
  }
  .news-row {
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .news-row .text h3 {
      font-size: 26px;
  }
}
@media (max-width: 960px) {
  .inside {
    width: 100%;
  }
  h1 {
    font-size: 42px;
  }
  .hero-overlay h2 {
    font-size: 24px;
  }
  .hero-overlay {
    min-height: 120px;
    padding: 30px 0;
  }

  .hero-image.news {
    height: 420px;
  }
  .news-row .image a {
    width: 360px;
  }
  .news-row .text {
    width: calc(100% - 370px);
  }
}
@media (max-width: 768px) {
  .hero-image.news {
    height: 360px;
  }
  .news-row .image a {
    width: 320px;
  }
  .news-row .text {
    width: calc(100% - 330px);
  }
  .news-row .text p {
  }
}
@media (max-width: 580px) {
  .news-row .image {
    order: -1;
    margin-bottom: 20px;
    height: 260px;
    width: 100%;
  }
  .news-row .image a {
    width: 100%;
    height: 100%;
  }
  .news-row .text {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-overlay h2 {
      font-size: 20px;
  }
}
.screen-btw .green p {
    color: #fff;
    font-weight: 400;
  }
  .screen-btw .green .deutschlandfunk_logo img {
    display: block;
  }
  .screen-btw .green .deutschlandfunk_logo {
    padding: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #E3EEF2;
    border-radius: 15px;
    right: -360px;
    position: absolute;
  }
  .screen-btw .green h3 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
  }
  .screen-btw .green .button a {
    display: inline-block;
    padding: 6px 28px;
    border-radius: 22px;
    color: #157E00;
    background: #fff;
    font-weight: 700;
  }
  .screen-btw .green .button {
    margin-top: 30px;
  }
  .screen-btw .green {
    position: relative;
    margin-top: 60px;
    width: 760px;
    max-width: 100%;
    display: inline-block;
    background: linear-gradient(108.66deg, #287718 17.77%, #0F8D06 67.54%);
    border-radius: 16px;
    padding: 60px 210px 60px 60px;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
  }
  .screen-btw .content {
    position: relative;    
  }
  .screen-btw .content:after {
    background-image: url("data:image/svg+xml,%3Csvg width='89' height='83' viewBox='0 0 89 83' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1016_3682)'%3E%3Cpath d='M0.539062 20.2859C0.539062 14.7859 2.33906 10.1859 5.83906 6.38589C9.33906 2.58589 13.7391 0.785889 18.8391 0.785889C23.9391 0.785889 30.4391 3.38589 34.6391 8.68589C38.8391 13.9859 41.0391 20.3859 41.0391 27.9859C41.0391 43.4859 34.1391 59.7859 20.4391 76.6859C17.1391 80.7859 14.0391 82.8859 11.2391 82.8859C6.43906 82.8859 4.13906 80.2859 4.13906 74.9859C4.13906 69.6859 5.43906 68.0859 8.13906 64.1859C15.4391 53.4859 19.1391 46.3859 19.1391 42.7859C19.1391 39.1859 17.7391 39.4859 14.9391 38.7859C5.33906 36.0859 0.539062 29.8859 0.539062 20.2859ZM47.6391 20.2859C47.6391 14.7859 49.4391 10.1859 52.9391 6.38589C56.4391 2.68589 60.8391 0.785889 65.9391 0.785889C71.0391 0.785889 77.5391 3.38589 81.7391 8.68589C85.9391 13.9859 88.1391 20.3859 88.1391 27.9859C88.1391 43.3859 81.2391 59.6859 67.3391 76.6859C64.0391 80.7859 60.9391 82.8859 58.1391 82.8859C53.3391 82.8859 51.0391 80.2859 51.0391 74.9859C51.0391 69.6859 52.4391 68.2859 55.2391 64.1859C62.5391 53.4859 66.2391 46.3859 66.2391 42.7859C66.2391 39.1859 64.8391 39.4859 62.0391 38.7859C52.5391 36.0859 47.7391 29.8859 47.7391 20.2859H47.6391Z' fill='%23C1E8BA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1016_3682'%3E%3Crect width='89' height='83' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    position: absolute;
    left: -66px;
    top: 0;
    width: 89px;
    height: 83px;
    background-repeat: no-repeat;
    background-position: 0;
    content: "";
  }
  .screen-btw {
    padding: 60px 0;
  }
  .screen-btw p {
    font-size: 22px;
    font-weight: 700;
    color: #127DAB;
  }
  .screen-btw h3 {
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #127DAB;
    margin-bottom: 20px;
}
.centred .inside {
  width: 960px;
}
.centred {
  padding-top: 60px;

}




/******************* WEBLIME ******************/

  :root {
  --green: #157e00;
  --blue: #127dab;
  --text: #000000;
  --green-bg: #e8f2e5;
  --blue-gradient: linear-gradient(129.04deg, #00628d 17.15%, #0098da 82.6%);
  --grid: 1280px;
  --section-pad: 75px;
  --section-pad-mobile: 35px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;

}


h2.h2-2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

p {
  font-size: 22px;
  line-height: 34px;
}

a {
  color: inherit;
  text-decoration: none;
}

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



.grid {
  width: min(var(--grid), 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--green-bg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 12px;
}

.list {
  list-style: none;
  margin: 20px 0 28px;
}

.list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-item div {
  padding: 22px;
}

.form {
  display: grid;
  gap: 14px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #c7d7c2;
  font-size: 16px;
}

.form-note {
  font-size: 12px;
  color: #3b3b3b;
}


.header {
  background: #ffffff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero-shell {
  background: #ffffff;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  width: 100%;
}

.hero-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  position: relative;
}

.hero-top-link:nth-child(1) {
  font-size: 12px;
}

.hero-top-link:nth-child(2) {
  font-size: 16px;
}

.icon-search {
  width: 12px;
  height: 12px;
  border: 4px solid var(--green);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: var(--green);
  bottom: -3px;
  right: -4px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.hero-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 32px;
}

.hero-logo img {
  height: 62px;
  width: auto;
}

.hero-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  justify-content: center;
}

.hero-nav a {
  position: relative;
  display: inline-block;
}

.hero-top-link::after,
.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4.5px;
  background: var(--green);
  bottom: -10px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-top-link:hover::after,
.hero-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-cta {
  border: none;
  background: var(--green);
  color: #ffffff;
  padding: 7px 33px;
  line-height: 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta-mobile {
  display: none;
}

.hero-cta:hover {
  box-shadow: inset 0 0 0 3px var(--green);
  background: #fff;
  color: var(--green);
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.menu-toggle {
  width: 28px;
  height: 20px;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  display: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
    position: absolute;
    left: 0;
    right: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}


.hero-image {
  width: 100%;
  height: 661px;
  background: url("../img/hero.jpg") center/cover no-repeat;
  position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.hero-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.hero-overlay {
  background-color: #e3eef2;
  min-height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay h2 {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  color: var(--blue);
  font-weight: 700;
  max-width: 1240px;
  margin: 0 auto;
}


.content-section {
  background: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.content-text {
  max-width: 720px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.content-media {
  width: 100%;
  height: 100%;
  max-width: 500px;
  justify-self: end;
}

.content-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  object-position: top;
}

.content-section h2 {
  color: var(--blue);
}

.content-section h3 {
  color: var(--blue);
  font-size: 20px;
  line-height: 28px;
}

.cta-g {
  border: 3px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 4px 27px;
  line-height: 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.cta-g:hover {
  border: 3px solid var(--green);
  color: #fff;
  background-color: var(--green);
}


section.content-section:has(.content-grid--reverse) {
  background: var(--green-bg);
}


.zahlen-section {
  position: relative;
  /* Adjusted based on previous content */
    background: none;
    height: auto;
}

.zahlen-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 860px;
  background: url("../img/section-3.jpg") center/cover no-repeat;
  z-index: 0;
}

.zahlen-section>* {
  position: relative;
  z-index: 1;
}

.zahlen-section .unser-wirken {
  margin: 0 auto;
  margin-top: 550px;
  max-width: 1280px;
  background: #fff;
  border-radius: 32px;
  padding: 50px 30px 30px 30px;
  box-shadow: 7px 6px 23px 0px #0707074d;
}

.zahlen-section .unser-wirken h2 {
  text-align: left;
  color: var(--blue);
}
 

.zahlen-grid .zahlen-number {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
}

.zahlen-grid .zahlen-text {
  font-size: 22px;
  color: #fff;
  line-height: 34px;
  font-weight: 700;
}


.weise-section {
  background: #ffffff;
}

.weise-title {
  text-align: left;
  color: var(--blue);
  margin-bottom: 75px;
}

.weise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.weise-card {
  background: var(--green-bg);
  border-radius: 12px;
  overflow: hidden;
}

.weise-card img {
  width: 100%;
  height: 247px;
  display: block;
  object-fit: cover;
}

.weise-card-body {
  padding: 30px 40px 30px 40px;
  text-align: left;
}

.weise-card-body h3 {
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -2%;
}

.weise-card-body p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 37px;
}

.weise-btn {
  display: inline-block;
  padding: 4px 27px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  width: fit-content;
}

.weise-btn:hover {
  background: var(--green);
  color: #fff;
}

.white-btn {
  border: 4px solid #fff;
  color: #fff;
}

.white-btn:hover {
  background: #fff;
  color: var(--green)
}


.blumen-vor-dem-brot-section {
  background: url("../img/section-4.jpg") center/cover no-repeat;
  height: 641px;
}

.blumen-grid {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.blumen-box {
  width: 613px;
  min-height: 420px;
  padding: 35px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blumen-box h2 {
  color: #ffffff;
  font-size: 30px;
}

.blumen-box p {
  line-height: 32px;
  font-size: 20px;
}

.blumen-cta {
  font-size: 25px;
  display: inline-block;
  padding: 10px 24px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  width: fit-content;
}

.blumen-cta:hover {
  background: #ffffff;
  color: var(--blue);
}


.neues-section {
  background: #e3eef2;
}

h2.neues-title {
  text-align: left;
  color: var(--blue);
  margin-bottom: 50px;
}

.neues-slider {
    margin: 0 auto;
}

.swiper-header {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 0 0 14px 14px;
  flex-grow: 1;
  margin-top: 15px;
}

.neues-slider.swiper {
  width: 100%;
  display: block;
}

.neues-slider .swiper-wrapper {
  align-items: stretch;
}

.neues-slider .swiper-slide {
  height: auto;
  display: flex;
}

.neues-section .neues-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.neues-section .neues-card a {
  display: flex;
  flex-direction: column;
  height: 100%; /* Make the anchor tag fill the height of the card */
}

.neues-card img {
    width: 100%;
    height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.neues-section .neues-card img {
  height: 500px;
  border-radius: 14px 0 0;
  width: auto;
}

.neues-card h3 {
  color: var(--blue);
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}

.neues-section .neues-card h3 {
  font-size: 30px;
  line-height: 1.3;
  text-align: left;
}

.neues-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 24px;
}

.neues-section .neues-dots {
  gap: 10px;
  margin: 16px 0 22px;
}

.neues-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b7d7a6;
}

.neues-section .neues-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  opacity: 0.35;
}

.neues-dot.is-active {
    background: var(--green);
}

.neues-section .neues-dot.is-active {
  opacity: 1;
}

.neues-cta {
    display: block;
  padding: 4px 27px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  width: fit-content;
}

.neues-cta:hover {
  background: var(--green);
  color: #fff;
}


.medien-section {
  background: var(--blue);
  color: #ffffff;
  padding: 75px 0px 200px 0px !important;
}

.medien-title {
  text-align: left;
  color: #ffffff;
  margin-bottom: 100px;
}

.media-slider.swiper {
  width: 100%;
  overflow: visible;
}



.media-card {
  background: var(--media-bg) center/cover no-repeat;
  border-radius: 14px;
    height: 590px;
    min-height: 590px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
    position: relative;
    overflow: visible;
}

.medien-section .media-slider .swiper-slide,
.medien-section .media-card {
  height: 590px;
  min-height: 590px;
}


.media-card-content h3 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 23px;
}

.media-card-content p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 23px;
  max-width: 268px;
}

.media-card-cta {
  display: inline-block;
  padding: 8px 18px;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

.media-card-cta:hover {
  background: #ffffff;
  color: var(--blue) !important;
}

.media-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  width: fit-content;
  align-self: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    height: 140px;
    max-width: 470px;
    width: calc(100% - 40px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  overflow: visible !important;
}

.media-logo img {
    height: 100%;
  width: auto;
  display: block;
}

.media-logo--dlr img {
  width: 378px;
  height: 56px;
  object-fit: contain;
}

.media-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.medien-section {
  overflow-x: hidden;
}

.media-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.35;
}

.media-dot.is-active {
  opacity: 1;
}


.standorte-section {
  background: #E8F2E5;
}

.standorte-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: center;
}

.standorte-visual img {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.standorte-content h2 {
  color: var(--blue);
  margin-bottom: 50px;
}

.standorte-content p {
  font-size: 22px;
  margin-bottom: 50px;
}

.standorte-cta {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 25px;
}

.standorte-cta:hover {
  background: var(--green);
  color: #ffffff;
}


.footer-info-section {
  background: #ffffff;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.footer-info-col h3 {
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 18px;
}

.footer-subtitle {
  margin-top: 26px;
}

.footer-pill {
  border-radius: 999px;
  display: inline-block;
  padding: 10px 22px;
  border: 4px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 25px;
}

.footer-pill:hover {
  background: var(--green);
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
}

.footer-social img {
  display: block;
}

.footer-info-col p {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 34px;
}

.footer-info-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-col .footer-links a {
  color: var(--green);
  font-weight: 700;
  font-size: 26px;
}

.footer-logos-section {
  background: #E3EEF2;
}

.footer-logos-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  margin-bottom: 20px;
}

.footer-logos-header h3 {
  color: var(--blue);
  font-size: 30px;
}

.footer-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-logo-card {
  background: #ffffff;
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
}

.footer-logo-card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.footer-bottom {
  background: var(--blue);
  color: #ffffff;
  padding: 22px 0;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
}

.hero-nav a.active {
    color: var(--blue);
  }

@media (max-width: 1440px) {
  .hero-image {
    height: 500px;
  }
}

@media (max-width: 1365px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  h2.h2-2 {
    font-size: 26px;
  }

  p {
    font-size: 20px;
    line-height: 32px;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    column-gap: 20px;
    row-gap: 0;
    align-items: center;
  }

  .hero-shell.menu-open {
    row-gap: 20px;
  }

  .hero-main {
    display: contents;
  }

  .hero-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-actions .hero-cta {
    display: none;
  }

  .hero-top {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    display: none;
  }

  .hero-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    display: none;
  }

  .hero-nav a {
    text-align: center;
    width: 100%;
  }



  .hero-nav .hero-cta-mobile {
    display: inline-flex;
    margin-top: 20px;
  }

  .hero-shell.menu-open .hero-top {
    display: flex;
    padding-top: 16px;
  }

  .hero-shell.menu-open .hero-nav {
    display: flex;
    margin-top: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h2.h2-2 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-shell {
    grid-template-columns: 1fr auto;
    text-align: center;
    column-gap: 20px;
    row-gap: 0;
    align-items: center;
  }

  .hero-shell.menu-open {
    row-gap: 20px;
  }

  .hero-top {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-nav {
    grid-row: 3;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 18px;
  }

  .hero-nav a {
    text-align: center;
    width: 100%;
  }

  .hero-actions {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    margin-top: 0;
  }

  .hero-logo {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-text {
    max-width: 100%;
  }

  .content-media {
    max-width: 100%;
    justify-self: start;
  }

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

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

  .neues-slider {
    grid-template-columns: 1fr;
  }

  .neues-card img {
    height: auto;
  }

  .media-card {
    height: 320px;
  }

  .standorte-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .standorte-visual {
    display: flex;
    justify-content: center;
  }

  .footer-logos-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-grid {
    flex-direction: column;
  }
}

@media (min-width: 981px) {
  .content-grid {
    grid-template-columns: minmax(0, 720px) minmax(0, 500px);
  }

  .content-grid--reverse {
    grid-template-columns: minmax(0, 500px) minmax(0, 720px);
  }

  .content-grid--reverse .content-media {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
        line-height: 1.3;
  }

  h2.h2-2 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
        line-height: 1.3;
  }

  .hero-shell {
    column-gap: 15px;
    row-gap: 0;
  }

  .hero-shell.menu-open {
    row-gap: 15px;
  }

  section {
    padding: var(--section-pad-mobile) 0 !important;
  }

  h1.hero-title {
    width: 100%;
    line-height: 1.3;
  }

  .hero-image-overlay h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h2,
  .zahlen-section .unser-wirken h2,
  h2.neues-title,
  h2.medien-title,
  .footer-pill {
    font-size: 24px;
    line-height: 1.3;
  }

  h3,
  .content-section h3,
  .neues-section .neues-card h3,
  .media-card-content h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  p,
  .blumen-box p,
  .media-card-content p,
  .footer-info-col p {
    font-size: 16px;
    line-height: 1.3;
  }

  h2 br {
    display: none;
  }

  .cta-g,
  .weise-btn,
  .blumen-cta,
  .neues-cta,
  .media-card-cta,
  .standorte-cta,
  .footer-pill,
  .hero-cta {
    font-size: 16px;
    line-height: 30px;
  }

  .zahlen-section::before {
    height: 400px;
  }

  .zahlen-section .unser-wirken {
    max-width: 95%;
    margin-top: 220px;
  }

  .zahlen-grid .zahlen-item {
    padding: 25px 10px;
  }

  .zahlen-grid .zahlen-number {
    font-size: 32px;
  }

  .zahlen-grid .zahlen-text {
    font-size: 18px;
  }

  .weise-title {
    margin-bottom: 35px;
  }

  .weise-card-body h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .weise-card-body p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .blumen-box {
    min-height: auto;
  }

  .media-card-content p {
    max-width: 100%;
  }

  .medien-section .media-slider .swiper-slide,
  .medien-section .media-card {
    min-height: 420px;
    height: 420px;
  }

  .medien-title {
    margin-bottom: 35px;
  }

  .standorte-visual img {
    width: 150px;
  }

  .standorte-content h2 {
    margin-bottom: 20px;
  }

  .footer-info-section {
    padding-top: 0px;
  }

  .footer-info-col .footer-links a {
    font-size: 20px;
  }

  .blumen-cta,
  .standorte-cta {
    padding: 4px 27px;
  }

  .media-card-cta,
  .footer-pill {
    padding: 4px 18px;
  }

  .content-section .content-text {
    order: 2;
  }

  .zahlen-grid {
    margin-top: 25px;
  }

  .zahlen-section .unser-wirken {
    padding: 45px 15px 15px 25px;
  }

  .content-section .content-media img {
    max-height: 450px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1024px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
  }
}



.neues-section .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  margin: 0 5px;
  background: #157E00;
}
.neues-section .neues-cta {
  margin-top: 40px;
}
.neues-slider.swiper {
  padding-bottom: 80px !important;
}
.medien-section.freunde-section {
}
.freunde-section .medien-title {
  text-align: center;
  margin-bottom: 74px;
  margin-top: 30px;
}
.freunde-section .grid {
  overflow: hidden;
}

.medien-section.freunde-section {
  padding-bottom: 100px !important;
}
.freunde-section .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  margin: 0 5px;
  background: #fff;
}
.section.map {
  background: #E8F2E5;
}




.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cover,
.contain {
  overflow: hidden;
}
.cover > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.contain > img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.inside {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
  width: 1300px;
  margin: 0 auto;
}

.flex-sb {
  justify-content: space-between;
}
.flex-sa {
  justify-content: space-around;
}
.flex-c {
  justify-content: center;
}
.flex-r {
  justify-content: flex-end;
}
.flex-l {
  justify-content: start;
}
.flex-t {
  align-items: flex-start;
}
.flex-b {
  align-items: flex-end;
}
.flex-m {
  align-items: center;
}
.flex-s {
  align-items: stretch;
}
.nowrap {
  flex-wrap: nowrap;
}


.news-row {
  padding: 75px 0;
}
.news-row .image a {
  border-radius: 15px;
}
.news-row .text h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
  color: #127DAB;
}
.news-row .text {
  width: calc(100% - 520px);
  line-height: 1.35;
  font-size: 22px;
}
.hero-image.news {
  height: 505px;;
}
.section.footer-info-section {
  display: none;
}
.news-row .image a {
  width: 443px;
}

@media (max-width: 1440px) {
  .inside {
    width: 92vw;
  }
  .news-row .text p {
    font-size: 18px;
  }
  .news-row .text {
    width: calc(100% - 460px);
    font-size: 16px;
  }
  .news-row .text h3 {
    font-size: 32px;
  }
  .news-row {
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .news-row .text h3 {
      font-size: 26px;
  }
}
@media (max-width: 960px) {
  .inside {
    width: 100%;
  }
  h1 {
    font-size: 42px;
  }
  .hero-overlay h2 {
    font-size: 24px;
  }
  .hero-overlay {
    min-height: 120px;
    padding: 30px 0;
  }

  .hero-image.news {
    height: 420px;
  }
  .news-row .image a {
    width: 360px;
  }
  .news-row .text {
    width: calc(100% - 370px);
  }
}
@media (max-width: 768px) {
  .hero-image.news {
    height: 360px;
  }
  .news-row .image a {
    width: 320px;
  }
  .news-row .text {
    width: calc(100% - 330px);
  }
  .news-row .text p {
  }

}
@media (max-width: 580px) {
  .news-row .image {
    order: -1;
    margin-bottom: 20px;
    height: 260px;
    width: 100%;
  }
  .news-row .image a {
    width: 100%;
    height: 100%;
  }
  .news-row .text {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .content-section .content-media img {
    max-height: 350px;
  }
}
@media (max-width: 480px) {
  .hero-overlay h2 {
      font-size: 20px;
  }
  
}
@media (max-width: 370px) {
  .content-section .content-media img {
    max-height: 250px;
  }
}
.screen-btw .green p {
  color: #fff;
  font-weight: 400;
}
.screen-btw .green .deutschlandfunk_logo img {
  display: block;
}
.screen-btw .green .deutschlandfunk_logo {
  padding: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #E3EEF2;
  border-radius: 15px;
  right: -360px;
  position: absolute;
}
.screen-btw .green h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
}
.screen-btw .green .button a {
  display: inline-block;
  padding: 6px 28px;
  border-radius: 22px;
  color: #157E00;
  background: #fff;
  font-weight: 700;
}
.screen-btw .green .button {
  margin-top: 30px;
}
.screen-btw .green {
  position: relative;
  margin-top: 60px;
  width: 760px;
  max-width: 100%;
  display: inline-block;
  background: linear-gradient(108.66deg, #287718 17.77%, #0F8D06 67.54%);
  border-radius: 16px;
  padding: 60px 210px 60px 60px;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}
.screen-btw .content {
  position: relative;    
}
.screen-btw .content:after {
  background-image: url("data:image/svg+xml,%3Csvg width='89' height='83' viewBox='0 0 89 83' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1016_3682)'%3E%3Cpath d='M0.539062 20.2859C0.539062 14.7859 2.33906 10.1859 5.83906 6.38589C9.33906 2.58589 13.7391 0.785889 18.8391 0.785889C23.9391 0.785889 30.4391 3.38589 34.6391 8.68589C38.8391 13.9859 41.0391 20.3859 41.0391 27.9859C41.0391 43.4859 34.1391 59.7859 20.4391 76.6859C17.1391 80.7859 14.0391 82.8859 11.2391 82.8859C6.43906 82.8859 4.13906 80.2859 4.13906 74.9859C4.13906 69.6859 5.43906 68.0859 8.13906 64.1859C15.4391 53.4859 19.1391 46.3859 19.1391 42.7859C19.1391 39.1859 17.7391 39.4859 14.9391 38.7859C5.33906 36.0859 0.539062 29.8859 0.539062 20.2859ZM47.6391 20.2859C47.6391 14.7859 49.4391 10.1859 52.9391 6.38589C56.4391 2.68589 60.8391 0.785889 65.9391 0.785889C71.0391 0.785889 77.5391 3.38589 81.7391 8.68589C85.9391 13.9859 88.1391 20.3859 88.1391 27.9859C88.1391 43.3859 81.2391 59.6859 67.3391 76.6859C64.0391 80.7859 60.9391 82.8859 58.1391 82.8859C53.3391 82.8859 51.0391 80.2859 51.0391 74.9859C51.0391 69.6859 52.4391 68.2859 55.2391 64.1859C62.5391 53.4859 66.2391 46.3859 66.2391 42.7859C66.2391 39.1859 64.8391 39.4859 62.0391 38.7859C52.5391 36.0859 47.7391 29.8859 47.7391 20.2859H47.6391Z' fill='%23C1E8BA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1016_3682'%3E%3Crect width='89' height='83' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  left: -66px;
  top: 0;
  width: 89px;
  height: 83px;
  background-repeat: no-repeat;
  background-position: 0;
  content: "";
}
.screen-btw {
  padding: 60px 0;
}
.screen-btw p {
  font-size: 22px;
  font-weight: 700;
  color: #127DAB;
}
.screen-btw h3 {
  font-size: 42px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #127DAB;
  margin-bottom: 20px;
}
.centred .inside {
  width: 960px;
}
.centred {
  padding-top: 60px;

}

.bFooter h3 {
  font-size: 28px;
}
.bFooter h3.eFooter_logosTitle {
  font-size: 30px;
}
.eFooter_dataCol-3 {
  width: 230px;
}


@media (max-width: 480px) {
  .weise-card-body {
    padding: 20px;
  }
  .page-285 .weise-card .weise-btn {
    left: 20px;
    bottom: 14px;
  }
}

@media (max-width: 960px) {
  
  .neues-section .neues-card h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  h2.h2-2 {
    font-size: 20px;
  }

  p {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-shell {
    column-gap: 15px;
    row-gap: 0;
  }

  .hero-shell.menu-open {
    row-gap: 15px;
  }

  section {
    padding: var(--section-pad-mobile) 0 !important;
  }

  h1.hero-title {
    width: 100%;
    line-height: 1.3;
  }

  .hero-image-overlay h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h2,
  .zahlen-section .unser-wirken h2,
  h2.neues-title,
  h2.medien-title,
  .footer-pill {
    font-size: 24px;
    line-height: 1.35;
  }

  h3,
  .content-section h3,
  .neues-section .neues-card h3,
  .media-card-content h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  p,
  .blumen-box p,
  .media-card-content p,
  .footer-info-col p {
    font-size: 18px;
    line-height: 1.35;
  }

  h2 br {
    display: none;
  }

  .cta-g,
  .weise-btn,
  .blumen-cta,
  .neues-cta,
  .media-card-cta,
  .standorte-cta,
  .footer-pill,
  .hero-cta {
    font-size: 17px;
    line-height: 30px;
  }

  .zahlen-section::before {
    height: 400px;
  }

  .zahlen-section .unser-wirken {
    max-width: 95%;
    margin-top: 220px;
  }


  .zahlen-grid .zahlen-number {
    font-size: 32px;
  }

  .zahlen-grid .zahlen-text {
    font-size: 18px;
  }

  .weise-title {
    margin-bottom: 35px;
  }

  .weise-card-body h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  .weise-card-body p {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 22px;
  }

  .blumen-box {
    min-height: auto;
  }

  .media-card-content p {
    max-width: 100%;
  }

  .medien-section .media-slider .swiper-slide,
  .medien-section .media-card {
    min-height: 420px;
    height: 420px;
  }

  .medien-title {
    margin-bottom: 35px;
  }

  .standorte-visual img {
    width: 150px;
  }

  .standorte-content h2 {
    margin-bottom: 20px;
  }

  .standorte-content p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .footer-info-section {
    padding-top: 0px;
  }

  .footer-info-col .footer-links a {
    font-size: 20px;
  }

  .blumen-cta,
  .standorte-cta {
    padding: 4px 27px;
  }

  .media-card-cta,
  .footer-pill {
    padding: 4px 18px;
  }

  .content-section .content-text {
    order: 2;
  }

  .zahlen-grid {
    margin-top: 25px;
  }

  .zahlen-section .unser-wirken {
    padding: 25px;
  }

  .content-section .content-media img {
    max-height: 250px;
    object-fit: cover;
    object-position: center;
  }
  .standorte-visual img {
    width: 160px;
  }

}
.eEvtPrev_img img {
  max-width: 240px;
}

@media (max-width: 580px) {
  .page-285 .hero-image .inside {
    width: 420px;
  }
  .page-285 .hero-image {
    height: 560px;
  }
  .page-285 .hero-image h1 {
    font-size: 40px;
    line-height: 1.15;
  }
  .page-285 .hero-image h1 br {
    display: none;
  }
}


@media (max-width: 1024px) {
  .eNav_item.mNavItemHasSubs:not(:last-child) {
    margin-bottom: 10px;
  }
  .eNav_item.mNavItemHasSubs {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='12' viewBox='0 0 22 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5397 0.43934C22.1534 1.02513 22.1534 1.97487 21.5397 2.56066L12.1112 11.5607C11.4975 12.1464 10.5025 12.1464 9.88883 11.5607L0.46026 2.56066C-0.153421 1.97487 -0.153421 1.02513 0.46026 0.43934C1.07394 -0.146447 2.06891 -0.146447 2.68259 0.43934L11 8.37868L19.3174 0.43934C19.9311 -0.146447 20.9261 -0.146447 21.5397 0.43934Z' fill='%23127DAB'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 0px top 10px;
    background-size: 16px;
  }
  .eNav_item.mNavItemHasSubs {
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  .cta-section_2 h2 {
    font-size: 32px;
    line-height: 1.25;
  }
  .index-8 .logos-grid img {
    max-height: 50px;
    width: auto;
  }
  section.index-3 {
    padding-bottom: 100px;
    height: auto;
    min-height: 0 !important;
    padding-right: 120px !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 960px) {
  .mNavItemHasSubs.active .eNav_subWrap {
    display: block ;
  }
}
@media (max-width: 520px) {

  .page-279 .content-section.index-3 {
    background-image: url(../img/u-1_mob.jpg);
  }
  .page-279 .index-3 .content-text {
    font-size: 16px;
  }
  .page-279 section.index-3 .content-text {
    gap: 20px;
  }
  .page-279 section.index-3 {
    padding: 20px 20px 10px 20px !important;
    height: 520px;
    align-items: flex-end;
  }
  .page-880 .index-3 .content-text h2 {
    font-size: 24px;
    line-height: 1.15;
  }
  .page-880 .cta-section p {
    margin-bottom: 12px;
  }
  .page-880 .white-btn {
    border-width: 2px;
  }
  
  .page-880 .cta-section {
    background-image: url(../img/u-2_mob.jpg);
  }
  .event-details {
    max-width: 100%;
  }
  .events-container {
    padding-right: 0;
  }
  .filter-btn {
    padding: 6px 20px;
    font-size: 16px;
  }
  .page-285 .about_me .blumen-box {
    padding: 24px;
    gap: 20px;
  }
  .page-285 .about_me .blumen-cta {
    font-size: 16px;
    border-width: 2px;
  }
  .page-285 .about_me .blumen-grid {
    align-items: flex-end;
  }
  .page-285 .about_me .blumen-box p {
    margin-bottom: 0;
  }


  .page-285 .about_me .blumen-box h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 24px;
  }
  .page-285 .about_me {
    background-image: url(../img/u-3_mob.jpg);
  }
}
.page-279 .index-1 .content-text,
.page-279 .index-2 .content-text {
  gap: 0;
}
@media (min-width: 1025px) {
  .page-871 .mHasOffsetBottom .bWysiwyg h2 {
    margin-bottom: 28px;
  }

  .page-871 .bText h2 {
    margin-bottom: 30px;
  }
  .page-871 .bWysiwyg ul.bCheckList li {
    min-height: 10px;
  }
  .page-876 h2 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .page-876 h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  body h3 {
    font-size: 30px;
    margin-bottom: 24px;
  }
  body h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #VierSpendengruende .bCheckList:not(:last-child) {
    margin-bottom: 20px;
  }
  #VierSpendengruende h2 {
    margin-bottom: 30px;
  }
  #VierSpendengruende h1 {
    margin-bottom: 30px;
  }
  #VierSpendengruende h4 {
    margin-bottom: 14px;
    font-size: 24px;
  }
  h2.mTeaser_h2.mb-2 {
    margin-bottom: 20px;
  }
  .mTextLarge {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }
  h1 {
    margin-bottom: 30px;
  }
  .blumen-box h3 {
    color: #fff;
  }
  ul li,
  .bCheckList li {
    font-size: 22px !important;
  }
  .eTL_itemNum {
    font-size: 22px;
  }

  .eRTeaser_addrWrap,
  .eRTeaser_link,
  .eRTeaser_link a,
  .bBtn.mStyle_stroked.mColour_white,
  .bBtn.mStyle_stroked,
  .eBQ_item blockquote,
  blockquote,
  .eRTeaser_telWrap,
  .mLayout_left .eRTeaser_data {
    font-size: 22px;
  }
  .bFLinks {
    font-size: 22px;
  }
  .page-824 .eMedia_body {
    margin-bottom: 0;
  }


  .page-871 .bCheckList {
    margin-top: 30px;
  }
  .eBQ_quote blockquote footer p {
    font-size: 22px;
  }
  .eBQ_quote blockquote p,
  .eBQ_quote blockquote {
    font-size: 42px;
  }
  h2 {
    margin-bottom: 30px;
  }
  .page-1079 .bWysiwyg ul.bCheckList li {
    min-height: 10px;
  }
  .eDonation_inline_html img {
    width: auto;
  }
  .page-869 ul.bCheckList li,
  .page-899 ul.bCheckList li {
    margin-bottom: 20px;
    min-height: 10px;
  }
  .page-649 .eBtn_item {
    font-size: 22px;
  }
  .page-649 h2 {
    margin-bottom: 30px;
  }
  .page-878 h4 {
    font-size: 22px;
  }

  .page-889 #VierSpendengruende h4 {
    font-size: 22px;
  }
  .page-1565 .eEvtPrev_img img {
    max-width: 100%;
  }

  .page-889 .eListWIco_items .eListWIcoEl_ico {
    width: 260px;
  }
  .page-889 .mLayout_small .eTeasers_data {
    width: 590px;
  }
  .page-889 .eListWIco_items .eListWIcoEl_text {
    padding-left: 260px;
    font-size: 42px;
  }

  .page-869 .bWysiwyg ul.bCheckList {
    gap: 0;
  }
  .page-651 #InterviewWolfHinsching {
    padding-top: 0;
  }
  .page-651 #Meilensteine {
    padding-top: 0;
  }
  #InterviewWolfHinsching  {
    padding-top: 0;
  }
  .page-661 .eTL_item {
    gap: 50px;
  }
  .page-657 #Förderpartner .bWrap {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .hero-overlay .grid h2 {
    font-size: 26px !important;
  }
}
@media (max-width: 768px) {
  .page-279 .index-3 .content-text h2 {
    font-size: 24px !important;
  }
  .page-279 section.index-3 .content-text {
    gap: 0;
  }
  .page-279 .index-4 .content-text {
    gap: 0;
  }
  .page-279 .index-5 .content-text {
    gap: 0;
  }
  .page-279 .index-6 .content-text {
    gap: 0;
  }
  .page-279 .index-9 .cta-g {
    margin-top: 20px;
  }
  .page-279 .index-9 .content-text {
    gap: 0;
  }
  .index-6.ueber-uns-1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 580px) {
  .page-871 .mHasOffsetBottom .bWysiwyg h2 {
    margin-bottom: 20px;
  }

  .page-871 .bText h2 {
    margin-bottom: 20px;
  }
  .page-871 .bWysiwyg ul.bCheckList li {
    min-height: 10px;
  }
  .page-876 h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .page-876 h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  body h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  body h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #VierSpendengruende .bCheckList:not(:last-child) {
    margin-bottom: 10px;
  }
  #VierSpendengruende h2 {
    margin-bottom: 10px;
  }
  #VierSpendengruende h1 {
    margin-bottom: 10px;
  }
  #VierSpendengruende h4 {
    margin-bottom: 14px;
    font-size: 18px;
  }
  h2.mTeaser_h2.mb-2 {
    margin-bottom: 10px;
  }
  .mTextLarge {
    font-size: 18px !important;
    line-height: 1.5 !important;
  }
  
  .blumen-box h3 {
    color: #fff;
  }
  ul li,
  .bCheckList li {
    font-size: 18px !important;
  }
  .eTL_itemNum {
    font-size: 22px;
  }

  .eRTeaser_addrWrap,
  .eRTeaser_link,
  .eRTeaser_link a,
  .bBtn.mStyle_stroked.mColour_white,
  .bBtn.mStyle_stroked,
  .eBQ_item blockquote,
  blockquote,
  .eRTeaser_telWrap,
  .mLayout_left .eRTeaser_data {
    font-size: 18px;
  }
  .bFLinks {
    font-size: 18px;
  }
  .page-824 .eMedia_body {
    margin-bottom: 0;
  }


  .page-871 .bCheckList {
    margin-top: 30px;
  }
  .eBQ_quote blockquote footer p {
    font-size: 18px;
  }
  .eBQ_quote blockquote p,
  .eBQ_quote blockquote {
    font-size: 24px;

  .page-1079 .bWysiwyg ul.bCheckList li {
    min-height: 10px;
  }
  .eDonation_inline_html img {
    width: auto;
  }
  .page-869 ul.bCheckList li,
  .page-899 ul.bCheckList li {
    margin-bottom: 10px;
    min-height: 10px;
  }
  .page-649 .eBtn_item {
    font-size: 18px;
  }
  .page-649 h2 {
    margin-bottom: 20px;
  }
  .page-878 h4 {
    font-size: 20px;
  }

  .page-889 #VierSpendengruende h4 {
    font-size: 18px;
  }
  .page-1565 .eEvtPrev_img img {
    max-width: 100%;
  }

  .page-889 .eListWIco_items .eListWIcoEl_text {
    padding-left: 260px;
    font-size: 24px;
  }

  .page-869 .bWysiwyg ul.bCheckList {
    gap: 0;
  }
  .page-651 #InterviewWolfHinsching {
    padding-top: 0;
  }
  .page-651 #Meilensteine {
    padding-top: 0;
  }
  #InterviewWolfHinsching  {
    padding-top: 0;
  }
  .page-661 .eTL_item {
    gap: 50px;
  }
  .page-657 #Förderpartner .bWrap {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-image h1 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .index-3 .content-text h2 {
    margin-bottom: 0;
  }
  .content-text {
    gap: 10px
  }
  p:last-of-type:not(:only-of-type) {
    margin-bottom: 20px;
  }
  .bBtn.mStyle_stroked, .mStyle_stroked.eEvtList_filter {
    border-width: 3px;
  }
  .weise-card-body p {
    font-size: 16px;
  }

  .zahlen-section .zahlen-item,
  p, .blumen-box p, .media-card-content p, .footer-info-col p {
    font-size: 18px;
    line-height: 1.5;
  }
  .event-details {
    max-width: 100% !important;
  }
  .event-card {
    padding: 10px;
  }
  .eEvtPrev_addr {
    display: block;
  }

  }
  h1 {
    font-size: 40px !important;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 28px !important;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 24px !important;
  }
  .eBtn_text {
    font-size: 16px !important;
  }
  .eTeasers_data {
    gap: 30px;
  }

  .bDlLink,  
  .index-6.ueber-uns-1 .media-card-cta {
    font-size: 16px !important;
  }
  .eEmpList_groupText, .eEmpList_groupData {
    font-size: 18px;
  }
  .zahlen-section .zahlen-item .zahlen-text {
    font-size: 18px;
  }
  .content-section .content-text {
    max-width: calc(100vw - 40px);
  }
  .page-285 .weise-card {
    padding-bottom: 50px;
  }
  .page-285 .weise-card .weise-btn {
    bottom: 26px;
  }
  .hero-overlay .grid h2 {
    font-size: 20px !important;
  }
  .eTL_items {
    gap: 20px;
  }
  .eTL_item {
    gap: 10px;
  }
  .eFooter_logos {
    padding: 60px 0;
  }
  .mHasOffsetBottom.bTM {
    padding: 0 !important;
  }
  .bText {
    padding-bottom: 0 !important;
  }
  .eBQ_img {
    max-width: 176px;
  }
  .bRTeaser {
    padding: 0;
  }
  h1 {
    font-size: 32px !important;
  }
  h1.hero-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-871 .mLayout_left {
    margin-top: 20px;
  }
  .mLayout_right .mLayout_right {
    padding-top: 0 !important;
  }
  .mLayout_right .eRTeaser_img {
    margin-bottom: 0;
  }
  .eRTeaser_links {
    gap: 20px;
  }
  #Koordinations-Team {
    margin-top: 40px;
  }
  .eTL_itemNum {
    margin-bottom: 20px;    
  }
  .bCheckList {
    margin-bottom: 20px !important;
  }
  .page-883 .mHasOffsetBottom {
    margin-top: 40px;
  }
  .eBQ_quote blockquote > p {
    font-size: 24px !important;
  }
  .page-885 .bWrap .eTM_media {
    margin-bottom: 20px;
  }
  .index-2 .content-grid .content-text {
    gap: 0;
  }
  .index-2 .media-card-cta {
    margin-top: 16px;
  }
  .faq-answer ul {
    margin-left: 10px;
  }
  .event-details {
    max-width: 100%;
  }
  .mLayout_left .eRTeaser_data {
    margin-bottom: 0;
  }
  .page-649 .mHasOffsetBottom {
    margin-bottom: 30px !important;
  }
  .page-649 .mHasOffsetBottom h2 {
    margin-bottom: 20px;
  }
  .page-3406 #UnserTeam h2 {
    margin-bottom: 20px;
  }
  .page-3406 #Spendenteaser h2,
  .page-3406 .bTeasers .mTeaser_h2 {
    margin-bottom: 20px !important;
  } 
  .eLogoGrid_items > div.eLogoGrid_item {
    max-width: 32%;
    width: 32%;
    padding: 10px;
  }
  .page-661 .mHasOffsetBottom {
    margin-top: 30px;
  }
  .page-901 .mHasOffsetTop {
    margin-bottom: 30px;
  }
  .page-895 .bTM.mLayout_right.mHasOffsetBottom {
    margin-top: 30px;
  }
  .page-895 .mHasOffsetBottom {
    margin-bottom: 0px;
  }
  .weise-btn,
  .neues-cta,
  .standorte-cta {
    border-width: 3px !important;
  }
  .standorte-content h2 {
    margin-bottom: 16px;
  }
  .content-section .content-text {
    gap: 0;
  }
  .content-section .content-text p + .cta-g {
    margin-top: 20px;
  }
  body .content-section ul li {
    margin-left: 0;
  }
  .content-section .content--h {
    margin-bottom: 20px;
  }
  .page-880 .event-date,
  .page-880 .event-details {
    max-width: 100%;
    text-align: left;
    width: 100%;
  }
  .event-card,
  .filter-section {
    padding: 12px !important;
  }
  .filter-btn {
    padding: 5px 20px;
    font-size: 14px;
  }

  h2.cc br {
    display: inline;
  }
  .zusammenarbeiten-logos img {
    width: auto;
  }
  .spenden__aside {
    padding: 20px;
  }
  .content-section.index-7 {
    padding-bottom: 0;
  }
  h3.faq-question {
    font-size: 20px !important;
  }
  .page-275 #event-listings .event-date,
  .page-275 #event-listings .event-details {
    text-align: left;
    width: 100% !important;
    max-width: 100%;
  }

  .eBQ_body {
    justify-content: space-between;
  }
  .eBQ_quoteIco svg {
    width: 40px;
  }
  .page-891 .eTL_itemNum {
    margin-bottom: 0;
  }

  .eDonation_headline {
    margin-bottom: 0;
  }
  #fbIframeDiv iframe {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px) !important;
  }
  .eDonation_inline_html img {
    width: auto;
  }
  .page-871 .eTL_itemNum {
    margin-bottom: 0;
  }
  .page-871 #Besuchspartnerschaften {
    padding-bottom: 0 !important;
  }
  .page-871 #Besuchspartnerschaften + .mHasOffsetBottom {
    margin-bottom: 30px;
  }
  .page-876 .eRTeaser_body .eRTeaser_img {
    margin-bottom: 0;
  }
  .page-876 .bBQ {
    margin-bottom: 0;
  }
  .page-876 .bMedia.mLayout_small.mHasOffsetBottom {
    padding-bottom: 0 !important;
  }
  .page-876 .bBQ {
    padding-bottom: 0 !important;
  }
  .page-630 .eEvtList_list .bEvtPrev {
    padding-top: 30px;
  }
  .page-630 .eEvtList_list {
    gap: 30px;
  }
  .page-630 .eEvtList_header {
    margin-bottom: 20px;
  }
  .page-630 .eEvtList_filter {
    font-size: 16px;
    padding: 4px 16px;
    min-width: 98px;
    min-height: 20px;
  }
  .page-883 .mHasOffsetBottom {
    margin-top: 20px;
  }
  .page-824 #Koordinations-Team {
    padding-top: 0 !important;
  }
  .page-824 .bMedia.mLayout_small.mHasOffsetBottom {
    padding-bottom: 0 !important;
  }
  #Aktionenteam .eTM_body {
    gap: 30px;
  }
  .bDlLink:before {
    background-size: contain;
  }
  .page-1565 .eEvtList_filter {
    font-size: 16px;
    padding: 4px 16px;
    min-width: 98px;
    min-height: 20px;
  }
  .page-1565 .eEvtList_header {
    margin-bottom: 20px;
  }
  .page-1565 .eEvtList_list .bEvtPrev {
    padding-top: 30px;
  }
  .page-1565 .eEvtList_list {
    gap: 30px;
  }

  .page-655 #UnsereStandorte + .mHasOffsetBottom + .mHasOffsetBottom {
    margin-bottom: 30px;
  }
  .page-655 #UnsereStandorte + .mHasOffsetBottom {
    margin-bottom: 40px;
  }
  .page-655 .mHasOffsetBottom {
    padding-top: 0 !important;
  }
  .page-655 .eRTeaser_img {
    margin-bottom: 0;
  }
  .page-655 .eRTeaser_data {
    padding-bottom: 0;
  }
  .page-655 .eRTeaser_title {
    margin-bottom: 20px;
  }
  .page-655 #UnsereStandorte {
    padding-top: 30px !important;
  }
  .mDonation_value {
    height: 50px;
    font-size: 20px;
  }
  .eDonation_textWrap {
    padding: 20px;
  }
  .eContactP_img {
    margin-bottom: 0;
  }
  .eContactP_mail {
    margin-top: 30px;
  }
  .eContactP_data {
    padding-bottom: 0;
  }
  .page-891 .eTL_item {
    gap: 2px;
  }
  .page-891 .mHasOffsetBottom.bTL {
    padding-top: 0 !important;
  }
  .eBQ_quote blockquote > p {
    font-size: 22px !important;
  }
  #ENGAGEMENT + .mHasOffsetBottom {
    padding-top: 0 !important;
    margin-top: -50px;
  }
  #UnternehmenWeihnachten {
    padding-top: 0 !important;
  }
  .bFaq .eFaqEl_ico {
    top: 10px;
    right: 0;
  }
  .bFaq h3.eFaqEl_title {
      font-size: 20px !important;
  }
  .page-649 #Video {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important
  }
  .page-649 #InterviewMission {
    padding-bottom: 0 !important;
  }
  .page-651 .eTL_itemNum {
    margin-bottom: 0;
  }
  .page-653 #starkes {
    padding-bottom: 0 !important;
  }
  .page-661 #Bild-661 {
    padding: 0 !important;
  }
  #Fordernden {
    padding-top: 0 !important;
  }
  .spenden__aside {
    max-width: 100% !important;
  }
  .zahlen-section .zahlen-item .zahlen-text {
    text-align: center;
  }
  .page-277 .zahlen-section .zahlen-item .zahlen-percentage,
  .page-277 .zahlen-grid .zahlen-item {
    text-align: center;
  }
  .index-7-1 .content-media img {
    margin: 0 auto;
  }
  .page-277 .zahlen-item {
    margin: 0 2px;
  }
  .page-876 .bBQ.mLayout_left {
    margin-bottom: 40px;
  }
  .page-824 #Koordinations-Team {
    margin-bottom: 40px !important;
  }
  .page-283 .screen-btw .content:after {
    left: 2px;
  }
  .page-889 .bListWIco {
    display: none;
  }
  .page-897 .bBQ .eBQ_img {
      max-width: 250px;
  }
}
.zahlen-section .zahlen-item .zahlen-percentage {
  text-align: center !important;
}
.events-container .event-icon-large {
  display: none !important;
}
@media only screen and (max-width: 400px) {
  h1 {
      font-size: 28px !important;
  }
  .bWrap {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 360px) {
  h1 {
      font-size: 26px !important;
  }
  h2 {
    font-size: 24px !important;
  }
  .bWrap {
    padding: 0 16px;
  }
}
.event-card .eEvtPrev_addr {
  display: block !important;
}