.image-container {
    position: relative;
//   z-index: 1;
//   margin-top: -50px;
}

.image-container-standard {
    position: relative;
    width: 100%;
//   max-height: 600px; /* Feste Höhe für konsistentes Overlay */
//   height:600px;
    overflow: hidden;
}

.image-container-standard img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Zentriert das Overlay horizontal */
    width: 100%; /* Responsive Breite wie Bootstrap Container */
    max-width: 1320px; /* Max. Breite bei XXL-Breakpoint, wie .container */
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent weiß */
    padding: 20px;
    color: #000; /* Dunkler Text für Kontrast */
    /* Neu: Leichter Gradient für besseren Übergang zum Bild */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.overlay-content {
    text-align: center;
    max-width: 100%; /* Vollbreite innerhalb des Overlays, respektiert Container-Limit */
    margin: 0 auto;
}

.overlay-content .title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-content .text {
    line-height: 1.4;
}

/* Bestehende Regeln... */
.bg-primary, .bg-secondary, .bg-dark {
    color: #fff;
}

.bg-light {
    color: #212529;
}

.bg-none {
    background: transparent;
    margin-top: 50px;
}

.swiper-slide .container {
    padding-left: 0;
    padding-right: 0;
}

.quote-container {
    position: relative;
    padding-left: 4rem;
    display: inline-block;
    color:#000;
}

.quote-mark {
    font-size: 8rem;
    position: absolute;
    left: 0;
    top: -15px;
    line-height: 1;
    opacity: 0.6;
    font-family: Georgia, serif;
}

.swiper-button-next, .swiper-button-prev {
    color:#0068b4;
}

.swiper-reference .swiper-button-next, .swiper-reference .swiper-button-prev {
    color:#fff;
}

.swiper-pagination-bullet-active {
    background: #0068b4;
}

.swiper-reference .swiper-pagination-bullet-active {
    background: #fff;
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: unset;
}

@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        color:#fff !important;
    }
}

/* Neu: Media Query für kleine Screens – Overlay aus dem Bild heraus */
@media (max-width: 768px) {
    .image-overlay {
    //   position: static; /* Neu: Unter dem Bild positioniert, kein Überlapp */
    //   transform: none; /* Neu: Keine Zentrierung mehr nötig */
    //    left: auto;
    //    bottom: auto;
    //     width: 100%; /* Vollbreite */
    //    max-width: none; /* Kein Limit */
        background: rgba(0, 0, 0, 0.1); /* Full opaque für maximale Lesbarkeit */
    //    padding: 15px; /* Reduziertes Padding für Mobile */
    //    margin-top: 10px; /* Abstand zum Bild oben */
        /* Gradient entfernt, da full white – optional: linear-gradient(to top, #fff 0%, #f8f9fa 100%) für subtilen Übergang */
        align-content:center;
        color:#fff !Important;
        backdrop-filter:brightness(0.5);
        height:100%;
        h2,.lead {
            color:#fff !Important;
        }
    }

    .overlay-content .title {
        font-size: 1.25rem; /* Kleinerer Font auf Mobile */
        margin-bottom: 8px;
    }

    .overlay-content .text {
        font-size: 0.9rem; /* Kleinerer Lead-Text */
    }

    .overlay-content .btn {
        font-size: 0.875rem; /* Button auf Mobile skalieren */
        padding: 0.5rem 1rem;
    }

    .image-container-standard {
        margin-bottom: 15px; /* Abstand zum Overlay unten */
    }
}


/* Cursor für Swiper-Bilder: Grab auf Hover, Grabbing auf Active */
.swiper-slide img {
    cursor: grab;  /* Standard: Zeigt "Hand greift" auf Hover – signalisiert Swipebarkeit */
    transition: cursor 0.2s ease;  /* Sanfter Wechsel für Smoothness */
}

.swiper-slide img:active {
    cursor: grabbing;  /* Während Klick/Drag: "Hand hält fest" – simuliert aktives Ziehen */
}

/* Speziell für Ihre Standard-Layout-Bilder (image-container-standard) */
.image-container-standard img {
    cursor: grab;
}

.image-container-standard img:active {
    cursor: grabbing;
}

/* Für Empfehlungen-Layout (runder Thumbnail) */
.image-container img {
    cursor: grab;
}

.image-container img:active {
    cursor: grabbing;
}

/* Für Empfehlungen-Layout (runder Thumbnail) */
.swiper-reference .image-container img {
    cursor: zoom-in !important;
}

.swiper-reference .image-container img:active {
    cursor: zoom-in !important;
}

/* Swiper-spezifisch: Verstärkt auf aktiven Slides (automatisch von Swiper) */
.swiper-slide-active img {
    cursor: grab !important;  /* Priorisiert für zentrale Slides */
}

.swiper-slide-active img:active {
    cursor: grabbing !important;
}

/* Mobile/Touch: Cursor deaktivieren (nicht nötig, aber fallback) */
@media (max-width: 768px) {
    .swiper-slide img,
    .image-container-standard img,
    .image-container img {
        cursor: default;  /* Auf Touch: Standard-Cursor, da kein Hover/Drag-Visual */
    }

    /* Optional: Pointer für Touch-Feedback */
    .swiper-slide img:active {
        cursor: -webkit-grabbing;  /* WebKit-Fallback für Safari Mobile */
        cursor: grabbing;
    }
}

/* Globale Swiper-Verbesserung: Cursor auf Wrapper, falls nicht gesetzt */
.swiper {
    cursor: grab;
}

.swiper:active {
    cursor: grabbing;
}
