/*--------------------------------------------------------------
# Author Archive Page Styles
--------------------------------------------------------------*/

.author-page .author-header {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    gap: 30px; /* Space between avatar and info */
    margin-bottom: 40px; /* Space below the header */
    padding: 20px;
    border-bottom: 1px solid #eee; /* Optional separator */
}

.author-page .author-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Make avatar round */
    object-fit: cover;
}

.author-page .author-info {
    flex: 1; /* Allow info section to take remaining space */
}

.author-page .author-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem; /* Adjust size as needed */
}

.author-page .author-bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.author-page .author-posts-title {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .author-page .author-header {
        flex-direction: column; /* Stack avatar and info */
        align-items: center; /* Center items when stacked */
        text-align: center;
        gap: 20px;
    }

    .author-page .author-avatar img {
        width: 120px;
        height: 120px;
    }

    .author-page .author-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
     .author-page .author-avatar img {
        width: 100px;
        height: 100px;
    }
     .author-page .author-title {
        font-size: 1.8rem;
    }
     .author-page .author-posts-title {
        font-size: 1.5rem;
    }
} 