/**
 * Mobile Click Fix for Blog Articles
 * תיקון בעיית קליקים במובייל
 */

/* וודא שכל הקישורים והכפתורים לחיצים */
a, button, .nav-link, .cta-btn, .btn, .card, .filter-btn {
    pointer-events: auto !important;
    touch-action: manipulation !important;
}

/* תיקון ספציפי לקישורים */
a:not([disabled]) {
    cursor: pointer;
}

/* תיקון ספציפי לכפתורים */
button:not([disabled]) {
    cursor: pointer;
}

/* וודא שאף overlay לא חוסם */
.mobile-menu-overlay:not(.active),
.overlay:not(.active) {
    pointer-events: none !important;
}

/* שיפור תגובה למגע */
@media (hover: none) and (pointer: coarse) {
    /* מובייל בלבד */
    a, button, .nav-link, .cta-btn, .btn, .card, .filter-btn {
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
        -webkit-touch-callout: none;
        user-select: none;
    }
    
    /* Active states for mobile */
    .card:active {
        transform: scale(0.98) !important;
    }
    
    .cta-btn:active,
    button:active,
    .filter-btn:active {
        transform: scale(0.95) !important;
    }
}

