/* Organization Structure for Slide 3 */
.org-structure {
    margin-top: 40px;
}

/* Section Headers */
.org-section {
    margin-bottom: 40px;
}

.org-section-header {
    text-align: center;
    margin-bottom: 24px;
}

.org-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.org-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Core Team - Already styled in team-grid-redesign.css */

/* AI Agents Section */
.ai-agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ai-agent-card {
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.05) 0%, rgba(123, 167, 204, 0.1) 100%);
    border: 2px solid var(--artemed-blue);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-agent-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 167, 204, 0.1) 0%, transparent 70%);
    animation: ai-pulse 4s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.ai-agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(123, 167, 204, 0.2);
}

.ai-agent-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.ai-agent-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ai-agent-function {
    font-size: 14px;
    color: var(--artemed-blue);
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ai-agent-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Extended Network Section */
.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.network-member {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.network-member:hover {
    border-color: var(--artemed-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.network-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-artemed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.network-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.network-expertise {
    font-size: 14px;
    color: var(--artemed-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.network-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Divider */
.org-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .ai-agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-agents-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ai-agent-icon {
        font-size: 40px;
    }
    
    .network-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}