/* ==========================================================================
   GALLERY OVERLAY FIX - RESTRICTIVE CLICK AREA
   Stellt sicher dass Gallery Overlay nur auf Bild-Bereich reagiert
   ========================================================================== */

/* ===== IMAGE CONTAINER KLICKBAR MACHEN ===== */
.individual-event-card__image {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

.individual-event-card__gallery-overlay {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ===== CARD CONTENT NICHT KLICKBAR FÜR GALLERY ===== */
.individual-event-card__content,
.individual-event-card__title,
.individual-event-card__subtitle,
.individual-event-card__description,
.individual-event-card__button {
    pointer-events: none !important;
    cursor: default !important;
}

/* ===== MOBILE OPTIMIERUNG ===== */
@media (max-width: 768px) {
    .individual-event-card__image {
        min-height: 200px !important;
        touch-action: manipulation !important;
    }
}

/* ===== DEBUG HELPER (AUSKOMMENTIERT) ===== */
/*
.individual-event-card__image {
    outline: 2px solid lime !important;
}
.individual-event-card__gallery-overlay {
    outline: 1px solid orange !important;
    background: rgba(255, 0, 0, 0.2) !important;
    opacity: 0.5 !important;
}
*/