.mwd-content-slider-3 {
  --mwd-min-h: 620px;
  --mwd-right-bg: #08384d; /* default background for right content area */
  --mwd-dots-bottom: -28px; /* vertikale Position der Dots relativ zum Slider */
  --mwd-dots-gap-b: 40px; /* zusätzlicher Platz unterhalb für die Dots */
  --mwd-stack-img-h: 45vh; /* Höhe des Bildbereichs im Stack-Modus (Smartphone); via Widget überschreibbar */
  position: relative;
  display: block;
  isolation: isolate;
  min-height: var(--mwd-min-h);
  padding-bottom: var(--mwd-dots-gap-b, 40px); /* Platz für Dots unterhalb */
}
.mwd-content-slider-3 .mwd-track { min-height: var(--mwd-min-h); }
.mwd-content-slider-3 .mwd-slides { display:none; }

/* Viewports */
.mwd-cs3-left-viewport, .mwd-cs3-right-viewport {
  position: absolute;
  top: 0; bottom: 0;
}
.mwd-cs3-left-viewport { left: 0; width: 60%; overflow: hidden; }
.mwd-cs3-right-viewport { right: 0; width: 40%; overflow: hidden; }

/* Tracks */
.mwd-cs3-left-track, .mwd-cs3-right-track { display: flex; height: 100%; will-change: transform; }
.mwd-cs3-left-item, .mwd-cs3-right-item { flex: 0 0 100%; position: relative; }

/* Left image presentation */
.mwd-cs3-left-item .mwd-media { position: absolute; inset: 0; }
.mwd-cs3-left-item .mwd-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mwd-cs3-left-item .mwd-img-overlay { position: absolute; inset: 0; background: var(--mwd-overlay); mix-blend-mode: multiply; }

/* Right content presentation */
.mwd-cs3-right-item { background: var(--mwd-right-bg, #08384d); color:#fff; display:flex; align-items:center; }
.mwd-cs3-right-item .mwd-right-inner{ width:100%; padding: 32px; }
.mwd-cs3-right-item h3 { margin: 0 0 12px 0; color:#fff; }
.mwd-cs3-right-item .mwd-text { opacity:.95; }

/* Navigation (wie Header-Slider) */
.mwd-content-slider-3 .mwd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45) !important;
  color: #fff !important;
  border: 0;
  border-radius: 0;
  width: 29px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}
.mwd-content-slider-3 .mwd-prev { left: 1rem }
.mwd-content-slider-3 .mwd-prev:hover { padding-right: 5px; }
.mwd-content-slider-3 .mwd-next { right: 1rem }
.mwd-content-slider-3 .mwd-next:hover { padding-left: 5px; }
.mwd-content-slider-3 .mwd-nav:focus-visible { outline: 3px solid #fff; outline-offset: 2px }

/* Dots (unterhalb des Sliders) */
.mwd-content-slider-3 .mwd-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--mwd-dots-bottom, -28px); /* unterhalb, per Variable justierbar */
  display: flex;
  gap: 25px;
  z-index: 3;
  align-items: center;
}
.mwd-content-slider-3 .mwd-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 0;
  display: block;
  cursor: pointer;
  padding: 0;
}
.mwd-content-slider-3 .mwd-dot[aria-current="true"],
.mwd-content-slider-3 .mwd-dot:focus-visible { width: 18px; height: 18px; background: #A7BFCC; border-radius: 50% }

/* Tablet & Smartphone: Stack untereinander, automatische Höhe */
@media (max-width: 1024px){
  .mwd-content-slider-3 { min-height: auto; display: grid; grid-template-rows: auto auto auto; }
  .mwd-content-slider-3 .mwd-track { min-height: 0; }
  .mwd-cs3-left-viewport, .mwd-cs3-right-viewport{ position: static; width: 100%; height: auto; overflow: hidden; }
  .mwd-cs3-left-viewport{ height: var(--mwd-stack-img-h, 45vh); }
  .mwd-cs3-left-track{ height: 100%; }
  .mwd-cs3-right-track{ height: auto; align-items: flex-start; }
  .mwd-cs3-left-item{ height: 100%; }
  .mwd-cs3-right-item{ height: auto; }
  /* Dynamische Höhe Übergang für Content-Viewport */
  .mwd-cs3-right-viewport{ transition: height .25s ease; }
  .mwd-content-slider-3 .mwd-dots { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); justify-content: center; margin-top: 0; }
}
