/* Author Profile Page Styles */

.author-profile {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid #ddd;
}

.author-avatar {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8B4513;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h1 {
    font-size: 2.5rem;
    color: #8B4513;
    margin: 0 0 10px 0;
    font-family: 'Cinzel', serif;
}

.author-title {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: #8B4513;
    color: #F0E68C;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
}

.author-content {
    display: grid;
    gap: 40px;
}

.author-bio-section {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid #ddd;
}

.author-bio-section h2 {
    color: #8B4513;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    font-family: 'Cinzel', serif;
}

.author-bio-section p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.recent-posts {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid #ddd;
}

.recent-posts h2 {
    color: #8B4513;
    font-size: 1.8rem;
    margin: 0 0 25px 0;
    font-family: 'Cinzel', serif;
}

.posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.posts-list a {
    color: #8B4513;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.posts-list a:hover {
    color: #F0E68C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-profile {
        padding: 20px 15px;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .author-avatar {
        width: 150px;
        height: 150px;
    }

    .author-info h1 {
        font-size: 2rem;
    }

    .author-title {
        font-size: 1rem;
    }

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

    .author-bio-section,
    .recent-posts {
        padding: 20px;
    }

    .author-bio-section h2,
    .recent-posts h2 {
        font-size: 1.5rem;
    }

    .posts-list {
        margin: 0;
    }

    .posts-list li {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .posts-list a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .author-header {
        padding: 20px;
    }

    .author-avatar {
        width: 120px;
        height: 120px;
    }

    .author-info h1 {
        font-size: 1.8rem;
    }

    .author-title {
        font-size: 0.9rem;
    }

    .expertise-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .author-bio-section,
    .recent-posts {
        padding: 15px;
    }

    .posts-list a {
        font-size: 0.95rem;
    }
} 