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

        /* Course Card Styling */
        .course-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;
        }
        
        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(33, 80, 146, 0.15);
        }
        
        .course-image {
            height: 220px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.3s ease;
        }
        
        .course-card:hover .course-image {
            transform: scale(1.05);
        }
        
        .course-image-wrapper {
            overflow: hidden;
            position: relative;
            background: linear-gradient(10deg, var(--primary-color), var(--primary-light));
        }
        
        .course-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .course-price {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .course-body {
            padding: 1.5rem;
        }
        
        .course-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .course-subtitle {
            color: var(--gray-text);
            font-size: 0.875rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .course-meta {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }
        
        .course-meta-item {
            display: flex;
            align-items: center;
            color: var(--gray-text);
        }
        
        .course-meta-item i {
            width: 20px;
            color: var(--primary-color);
            margin-right: 0.5rem;
        }
        
        .btn-view-course {
            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;
        }
        
        .btn-view-course:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(33, 80, 146, 0.3);
            color: white;
        }
        
        /* Filter Sidebar */
        .filter-sidebar {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }
        
        .filter-title {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .filter-group {
            margin-bottom: 1.5rem;
        }
        
        .filter-group-title {
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            color: var(--gray-text);
            margin-bottom: 0.75rem;
            letter-spacing: 0.5px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .filter-option:hover {
            color: var(--primary-color);
            transform: translateX(4px);
        }
        
        .filter-option input[type="checkbox"] {
            margin-right: 0.75rem;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .filter-badge {
            background: var(--light-bg);
            color: var(--gray-text);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-left: auto;
        }
        
        .btn-reset-filters {
            width: 100%;
            background: var(--light-bg);
            border: none;
            color: var(--gray-text);
            font-weight: 600;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-reset-filters:hover {
            background: var(--danger-color);
            color: white;
        }
        
        /* Category Section */
        .category-section {
            margin-bottom: 3rem;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary-color);
        }
        
        .category-name {
            font-weight: 700;
            font-size: 1.75rem;
            color: var(--dark-text);
            margin: 0;
        }
        
        .category-count {
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-left: 1rem;
        }
        
        /* 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;
        }
        
        /* Mobile Filters */
        @media (max-width: 991px) {
            .filter-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
        }
