/* Author Header */
.author-header {
    margin-bottom: 60px;
}

.author-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.author-avatar img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 8px;
    font-size: 36px;
}

.author-job-title {
    font-size: 18px;
    color: #666;
    margin: 0 0 15px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s;
}

.author-social-link:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Bio */
.author-bio {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Expertise */
.author-expertise {
    margin-bottom: 40px;
}

.expertise-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Stats */
.author-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.author-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Section Title */
.author-content .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

/* Mobile */
@media (max-width: 768px) {
    .author-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .author-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .author-name {
        font-size: 28px;
    }
}