/*
 * Purple Giraffe - Author Page Styles
 * Page-specific styles only — common.css + blog.css handle cards, pagination, grid
 */

.pg-author-header {
    padding: var(--pg-spacing-xl) 0 var(--pg-spacing-lg);
    text-align: center;
}

.pg-author-profile {
    max-width: 600px;
    margin: 0 auto;
}

.pg-author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--pg-spacing-sm);
}

.pg-author-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-black);
    margin: 0 0 var(--pg-spacing-xs) 0;
}

.pg-author-bio {
    font-size: 1.05rem;
    color: var(--pg-dark-gray);
    line-height: 1.6;
    margin: 0 0 var(--pg-spacing-sm) 0;
}

.pg-author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--pg-spacing-md);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

.pg-author-location {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pg-author-post-count {
    font-weight: 500;
}

.pg-author-links {
    margin-top: var(--pg-spacing-sm);
}

.pg-author-link {
    color: var(--pg-purple);
    text-decoration: none;
    font-weight: 500;
    transition: var(--pg-transition);
}

.pg-author-link:hover {
    color: var(--pg-purple-dark);
}

@media (max-width: 768px) {
    .pg-author-name {
        font-size: 1.5rem;
    }

    .pg-author-meta {
        flex-direction: column;
        gap: var(--pg-spacing-xs);
    }
}
