/* Author Profile Page */

/* Header Section */
.author-header {
    padding: 140px 20px 60px;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.08) 0%, transparent 100%);
}

.author-profile {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.author-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.2);
}

.author-details {
    flex: 1;
}

.author-details h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.author-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Stats */
.author-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A78BFA;
}

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

/* Social Links */
.author-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
    color: #A78BFA;
    transform: translateY(-2px);
}

.social-link.twitter:hover {
    color: #1DA1F2;
    border-color: rgba(29, 161, 242, 0.3);
}

.social-link.linkedin:hover {
    color: #0A66C2;
    border-color: rgba(10, 102, 194, 0.3);
}

/* Full Bio */
.author-bio-full {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Articles Section */
.author-articles {
    padding: 60px 20px;
}

.author-articles h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 35px;
    text-align: center;
}

.author-articles .posts-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.no-posts {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    padding: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .author-header {
        padding: 120px 15px 40px;
    }

    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-avatar-large img {
        width: 100px;
        height: 100px;
    }

    .author-details h1 {
        font-size: 1.6rem;
    }

    .author-stats {
        justify-content: center;
    }

    .author-socials {
        justify-content: center;
    }

    .author-bio-full {
        padding: 20px;
    }

    .author-articles {
        padding: 40px 15px;
    }
}
