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

        /* Speaker Profile Styling */
        .speaker-profile-header {
            background: linear-gradient(10deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 24px 24px;
        }
        
        .speaker-profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
        }
        
        .speaker-profile-placeholder {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 6px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .speaker-profile-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .speaker-profile-title {
            font-size: 1.25rem;
            opacity: 0.95;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .contact-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .contact-card h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-bg);
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(10deg, var(--primary-light), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-content {
            flex-grow: 1;
        }
        
        .contact-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--gray-text);
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }
        
        .contact-value {
            font-size: 1rem;
            color: var(--dark-text);
            font-weight: 500;
        }
        
        .contact-value a {
            color: var(--dark-text);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .contact-value a:hover {
            color: var(--primary-color);
        }
        
        .bio-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .bio-card h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .text-section {
            margin-bottom: 2rem;
        }
        
        .text-section:last-child {
            margin-bottom: 0;
        }
        
        .text-section h4 {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .text-section .short-content {
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .text-section .content {
            color: var(--dark-text);
            line-height: 1.8;
        }
        
        .gallery-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .gallery-card h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item-modal {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: block;
        }
        
        .gallery-item-modal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .btn-back {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-back:hover {
            background: white;
            color: var(--primary-color);
        }
        
        /* Gallery Item Hover Effect */
        .gallery-item-modal:hover {
            transform: scale(1.1);
        }

        .btn-back-contact {
            display: block;
            width: 100%;
            background: #3869a8;
            border: none;
            color: #d0d0d0;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }

        .btn-back-contact:hover {
            background: #2d5a94;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(56, 105, 168, 0.3);
        }
