/* Extracted from index.html.twig */
/* Auto-generated — do not edit inline styles in the template */

        /* Venue Card Styling */
        .venue-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            height: 100%;
            background: white;
        }
        
        .venue-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(33, 80, 146, 0.15);
        }
        
        .venue-image-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(10deg, var(--primary-light), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .venue-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .venue-card:hover .venue-image {
            transform: scale(1.05);
        }
        
        .venue-placeholder {
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .venue-body {
            padding: 1.5rem;
        }
        
        .venue-name {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-text);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .venue-meta {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
        }
        
        .venue-meta-item {
            display: flex;
            align-items: flex-start;
            color: var(--gray-text);
        }
        
        .venue-meta-item i {
            width: 24px;
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        .venue-badge {
            display: inline-block;
            background: var(--light-bg);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .btn-view-venue {
            width: 100%;
            background: linear-gradient(10deg, var(--primary-color), var(--primary-light));
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-view-venue:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(33, 80, 146, 0.3);
            color: white;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--light-bg);
            border-radius: 16px;
        }
        
        .empty-state i {
            font-size: 4rem;
            color: var(--gray-text);
            margin-bottom: 1rem;
        }
        
        /* Stats Badge */
        .stats-badge {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .stats-label {
            color: var(--gray-text);
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }
