/* Author Bio Page Styles */

.author-header {
    background: linear-gradient(135deg, #111 0%, #262626 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.author-image {
    margin-bottom: 2rem;
}

.author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #78C93D;
    box-shadow: 0 10px 30px rgba(120, 201, 61, 0.3);
}

.author-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #78C93D;
}

.author-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.author-company {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.author-bio {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.bio-content h2 {
    color: #262626;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.bio-content h3 {
    color: #78C93D;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.bio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.expertise-list, .achievements-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.expertise-list li, .achievements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.expertise-list li:before, .achievements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #78C93D;
    font-weight: bold;
}

.author-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.author-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #78C93D;
}

.stat-label {
    color: #555;
    font-size: 0.9rem;
}

.author-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
}

.contact-item i {
    color: #78C93D;
    font-size: 1.2rem;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #78C93D;
}

.author-social {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-links a:hover {
    background: #78C93D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 201, 61, 0.3);
}

.social-links i {
    font-size: 1.2rem;
}

.author-articles {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.author-articles h2 {
    text-align: center;
    color: #262626;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-card h3 {
    color: #262626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #78C93D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #262626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-bio {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .author-sidebar {
        position: static;
    }
    
    .author-name {
        font-size: 2rem;
    }
    
    .author-photo {
        width: 150px;
        height: 150px;
    }
    
    .bio-content h2 {
        font-size: 2rem;
    }
    
    .author-articles h2 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .author-header {
        padding: 2rem 1rem;
    }
    
    .author-bio {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .author-articles {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .author-name {
        font-size: 1.5rem;
    }
    
    .author-title {
        font-size: 1.2rem;
    }
} 