/**
 * Author Page Styles
 * Only loaded on author archive pages
 * 
 * @package FibNews
 */

/* ------------------- */
/* Author Profile Section */
/* ------------------- */
.author-profile-section {
    margin-bottom: var(--gap);
    padding-bottom: var(--gap);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-profile-section .author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--gap);
}

.author-profile-section .author-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.author-profile-section .author-bio {
    color: var(--secondary-color);
    margin-bottom: var(--gap);
    line-height: 1.6;
    max-width: 600px;
}

.author-profile-section .author-stats {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    margin-bottom: var(--gap);
}

.author-stat {
    text-align: center;
}

.author-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.author-stat-label {
    font-size: var(--text-sm);
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ------------------- */
/* Author Social Links */
/* ------------------- */
.author-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-social-links a {
    color: var(--secondary-color);
    display: inline-flex;
    padding: var(--space-sm);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.author-social-links a:hover {
    color: var(--primary-color);
    background-color: var(--light-gray-bg);
    transform: translateY(-2px);
}

.author-social-links svg {
    width: 22px;
    height: 22px;
}

/* ------------------- */
/* Articles Grid (consistent with archive.css) */
/* ------------------- */
/* Base .articles-grid and .article-card styles now in style.css */

/* ------------------- */
/* Author Page Responsive */
/* ------------------- */
@media (max-width: 768px) {
    .author-profile-section .author-name {
        font-size: 1.5rem;
    }
    
    .author-profile-section .author-stats {
        gap: var(--space-lg);
    }
    
    .author-stat-number {
        font-size: 1.25rem;
    }
    
    
    .author-social-links {
        gap: 10px;
    }
    
    .author-social-links svg {
        width: 20px;
        height: 20px;
    }
}