/**
 * 13Node Author Bio Extended - Styles
 * Author: 13Node
 * URL: https://13node.com
 */

/* ============================================
   Author Bio Extended - Container
   ============================================ */

.tnpc-author-bio-extended {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* ============================================
   Author Header
   ============================================ */

.tnpc-author-header {
    display: flex;
    gap: 2.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.tnpc-author-avatar-large {
    flex-shrink: 0;
}

.tnpc-author-avatar-large img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tnpc-author-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tnpc-author-name {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.tnpc-author-job-title {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tnpc-author-bio-short {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   Social Links - Large
   ============================================ */

.tnpc-author-social-large {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tnpc-author-social-large a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.tnpc-author-social-large a:hover {
    background: rgba(255, 255, 255, 1);
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Stats
   ============================================ */

.tnpc-author-stats {
    display: flex;
    gap: 2rem;
}

.tnpc-author-stat {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.tnpc-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tnpc-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Extended Bio Content
   ============================================ */

.tnpc-author-bio-extended-content {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.tnpc-author-bio-extended-content h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a202c;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.tnpc-author-extended-text {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.tnpc-author-extended-text p {
    margin-bottom: 1.25rem;
}

.tnpc-author-extended-text h3 {
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.tnpc-author-extended-text ul,
.tnpc-author-extended-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.tnpc-author-extended-text li {
    margin-bottom: 0.5rem;
}

.tnpc-author-extended-text a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.tnpc-author-extended-text a:hover {
    color: #764ba2;
}

.tnpc-author-extended-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.tnpc-author-extended-text blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: #f7fafc;
    border-left: 4px solid #667eea;
    font-style: italic;
    color: #2d3748;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .tnpc-author-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .tnpc-author-avatar-large {
        margin: 0 auto;
    }
    
    .tnpc-author-avatar-large img {
        width: 120px;
        height: 120px;
    }
    
    .tnpc-author-name {
        font-size: 2rem;
    }
    
    .tnpc-author-job-title {
        font-size: 1rem;
    }
    
    .tnpc-author-bio-short {
        font-size: 1rem;
    }
    
    .tnpc-author-social-large {
        justify-content: center;
    }
    
    .tnpc-author-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tnpc-author-bio-extended-content {
        padding: 1.5rem;
    }
    
    .tnpc-author-bio-extended-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tnpc-author-header {
        padding: 1.5rem;
    }
    
    .tnpc-author-name {
        font-size: 1.75rem;
    }
    
    .tnpc-author-social-large a {
        width: 40px;
        height: 40px;
    }
    
    .tnpc-author-social-large svg {
        width: 20px;
        height: 20px;
    }
}

