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

        /* Speaker Card Styling */
        .speaker-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;
        }
        
        .speaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(33, 80, 146, 0.15);
        }
        
        .speaker-image-wrapper {
            height: 280px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(10deg, var(--primary-light), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .speaker-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .speaker-card:hover .speaker-image {
            transform: scale(1.05);
        }
        
        .speaker-placeholder {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }
        
        .speaker-body {
            padding: 1.5rem;
        }
        
        .speaker-name {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        
        .speaker-title {
            color: var(--primary-color);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .speaker-meta {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
        }
        
        .speaker-meta-item {
            display: flex;
            align-items: center;
            color: var(--gray-text);
        }
        
        .speaker-meta-item i {
            width: 24px;
            color: var(--primary-color);
            margin-right: 0.75rem;
        }
        
        .speaker-meta-item a {
            color: var(--gray-text);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .speaker-meta-item a:hover {
            color: var(--primary-color);
        }
        
        .btn-view-speaker {
            width: 100%;
            background: #3869a8;
            border: none;
            color: #d0d0d0;
            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-speaker:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(56, 105, 168, 0.3);
            background: #2d5a94;
            color: #ffffff;
        }
        
        /* 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;
        }
