/*
 * Compiled stylesheet: events.css
 * Shared by views:
 *   - app/Views/public/events.php
 */

.card-hover { transition: all 0.25s ease-in-out; }
    .card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15); }
    .date-badge { background: linear-gradient(135deg, #B76E2E, #9B5A24); }
    .countdown-timer { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    [x-cloak] { display: none !important; }
    
    /* Recurring badge animation */
    .recurring-badge {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { opacity: 0.7; }
        50% { opacity: 1; }
        100% { opacity: 0.7; }
    }