/* ============================================
   7Neshan - Card Overrides
   Changes:
   - Inactive cards: transparent overlay + grayscale image
   - Active cards: remain colorful
   ============================================ */

/* Remove dark overlay on inactive cards */
.aspect-\[3\/4\] .bg-black\/70 {
    background-color: transparent !important;
}

/* Make inactive card images grayscale (black & white) and fully visible */
.aspect-\[3\/4\] img.opacity-30 {
    filter: grayscale(100%) !important;
    opacity: 0.85 !important;
}

/* Smooth transition for grayscale effect */
.aspect-\[3\/4\] img {
    transition: filter 0.5s ease, opacity 0.5s ease !important;
}
