.status__wrapper-direct::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    background: #ff5656;
}

/* Banner Container */
.custom-banner-content {
  text-align: left;
  line-height: 1.6;
}

/* Überschrift */
.custom-banner-content h2 {
  margin: 0 0 0.5em 0;
  font-size: 1.3em;
  font-weight: 600;
  color: #fff;
}

/* Intro-Text */
.custom-banner-content .intro-text {
  margin: 0.3em 0;
  font-size: 1.05em;
  color: #fff;
}

/* Info-Text */
.custom-banner-content .info-text {
  margin: 0.5em 0 0.3em 0;
  color: #fff;
}

/* Button Wrapper - ZENTRIERT */
.custom-banner-content .button-wrapper {
  margin: 1em 0;
  text-align: center;
}

/* Tipp-Text */
.custom-banner-content .tip-text {
  margin: 0.8em 0 0.5em 0;
  color: #fff;
  font-weight: normal;
}

/* Tipp-Label (nicht fett) */
.custom-banner-content .tip-label {
  font-weight: normal;
}

/* Trennlinie */
.custom-banner-content hr {
  margin: 1em 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
}

/* Original-Text - ✅ NORMALE SCHRIFTSTÄRKE */
.custom-banner-content .original-text {
  margin: 0.5em 0 0 0;
  color: #fff;
  opacity: 0.9;
  font-size: 0.95em;
  font-weight: 400;
}

/* ✅ Pill-Button (nur für start.libori.social) */
.custom-banner-content a.banner-button {
  display: inline-block;
  padding: 0.5em 1.2em;
  background: rgba(255,255,255,0.2);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ✅ Pill Hover-Effekt */
.custom-banner-content a.banner-button:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ✅ Pill Fokus */
.custom-banner-content a.banner-button:focus {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

/* ✅ Text-Link (nur für fedikirche.de) */
.custom-banner-content a.text-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: text-decoration 0.2s ease;
}

/* ✅ Text-Link Hover */
.custom-banner-content a.text-link:hover {
  text-decoration: underline !important;
}

/* ✅ Text-Link Fokus */
.custom-banner-content a.text-link:focus {
  text-decoration: underline !important;
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}


