.status__wrapper-direct::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    background: #ff5656;
}

/* ========== BANNER 2: Über den Tabs mit Pfau-Maskottchen + Overlay ========== */

.custom-banner-tabs {
  background: #ff5656;
  padding: 2em 2em 1.5em 2em;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Dunkler Overlay über alles */
.custom-banner-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.custom-banner-tabs-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 1em auto;
  position: relative;
  min-height: 200px;
  z-index: 2;
}

.custom-banner-text {
  flex: 0 0 65%;
  text-align: left;
  line-height: 1.7;
  z-index: 3;
  padding-right: 2em;
  position: relative;
}

.custom-banner-mascot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(33.33%);
  width: 300px;
  height: 300px;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.custom-banner-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.custom-banner-text h2 {
  margin: 0 0 0.4em 0;
  font-size: 1.4em;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.custom-banner-text .intro-text {
  margin: 0.3em 0;
  font-size: 1.1em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-banner-text .info-text {
  margin: 0.6em 0 0.4em 0;
  font-size: 1.05em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-banner-text .button-wrapper {
  margin: 1em 0;
  text-align: center;
}

.custom-banner-tabs .tip-text {
  margin: 0;
  padding: 0.8em 0 0 0;
  font-size: 0.95em;
  color: #fff;
  font-weight: normal;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-banner-tabs .tip-label {
  font-weight: 600;
}

.custom-banner-text a.banner-button {
  display: inline-block;
  padding: 0.5em 1.2em;
  background: rgba(255,255,255,0.3);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1.05em;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.5);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-banner-text a.banner-button:hover {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.custom-banner-text a.banner-button:focus {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

.custom-banner-tabs a.text-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: text-decoration 0.2s ease;
}

.custom-banner-tabs a.text-link:hover {
  text-decoration: underline !important;
}

.custom-banner-tabs a.text-link:focus {
  text-decoration: underline !important;
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

/* Responsive: Tablet */
@media (max-width: 900px) {
  .custom-banner-mascot {
    width: 240px;
    height: 240px;
    transform: translateY(-50%) translateX(33.33%);
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .custom-banner-tabs {
    padding: 1.5em 1.5em 1em 1.5em;
    position: relative;
  }
  
  .custom-banner-tabs-content {
    text-align: center;
    margin-bottom: 0.5em;
    min-height: 180px;
  }
  
  .custom-banner-text {
    flex: 1;
    padding-right: 0;
    margin-bottom: 0;
    max-width: 100%;
    z-index: 3;
  }
  
  /* Pfau bleibt rechts, zu 1/3 abgeschnitten (wie Desktop) */
  .custom-banner-mascot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(33.33%);
    width: 50%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 1;
    z-index: 0;
    opacity: 0.4;
  }
  
  .custom-banner-text h2 {
    font-size: 1.3em;
  }
  
  .custom-banner-tabs .tip-text {
    padding: 0.6em 0 0 0;
    text-align: center;
  }
  
  .custom-banner-text a.banner-button {
    //font-size: 1em;
    padding: 0.5em 1em;
  }
}


