/* Authors Page Styles */

.authors-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-bottom: 40px;
}

.authors-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.authors-hero p {
    font-size: 1.2rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.author-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e8ed;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.author-avatar {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-card:hover .author-avatar img {
    transform: scale(1.05);
}

.author-info {
    padding: 25px;
}

.author-info h2 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: #2c3e50;
    font-family: 'Cinzel', serif;
}

.author-info h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-info h2 a:hover {
    color: #8B4513;
}

.author-bio {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.expertise-tag {
    background: #e8f4fd;
    color: #2980b9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #b3d9f2;
}

.author-link {
    display: inline-block;
    background: #8B4513;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.author-link:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .authors-hero {
        padding: 40px 15px;
    }
    
    .authors-hero h1 {
        font-size: 2.5rem;
    }
    
    .authors-hero p {
        font-size: 1.1rem;
    }
    
    .authors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 40px;
    }
    
    .author-card {
        margin: 0 10px;
    }
    
    .author-info {
        padding: 20px;
    }
    
    .author-info h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .authors-hero h1 {
        font-size: 2rem;
    }
    
    .authors-hero p {
        font-size: 1rem;
    }
    
    .author-avatar {
        height: 180px;
    }
    
    .author-info {
        padding: 15px;
    }
    
    .expertise-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .author-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
} 