/* 
 * Josjis Theme - Author Page
 * Styles specific to the author archive page.
 * 
 * @package Josjis
 */

/* ==========================================================================
   AUTHOR PROFILE CARD
   ========================================================================== */

.author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.author-avatar {
    margin-bottom: 14px;
}

.author-avatar img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 3px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.author-name {
    font-family: var(--typo-title-font, inherit);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.author-bio {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.author-post-count {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.author-post-count strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .author-profile {
        padding: 24px 0 20px;
    }

    .author-avatar img {
        width: 80px;
        height: 80px;
    }

    .author-name {
        font-size: 20px;
    }
}
