/* Styles pour la biographie de l'auteur dans les articles */

.author-bio {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.author-bio:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-bio img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #0d6efd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-bio-content {
    flex: 1;
    min-width: 0;
}

.author-bio-content p {
    margin: 0;
    line-height: 1.5;
    color: #333333;
    font-size: 15px;
}

.author-bio-content a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.author-bio-content a:hover {
    color: darkorange;
    text-decoration: underline;
}

/* Responsive - version mobile */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px;
    }
    
    .author-bio img {
        width: 50px;
        height: 50px;
    }
    
    .author-bio-content p {
        font-size: 14px;
    }
}

/* Style pour masquer l'ancien composant auteur si présent */
.auteur {
    display: none !important;
}