/* Author Box - Styles CSS */

.author-box {
    background: #FFFFFF !important;
    border: 4px solid #D5D3F6;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;

}

.author-box-title {
    color: #413d91;
    font-size: 30px;
    font-family: 'Figtree',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
    margin: 0 0 20px 0;
    text-align: left;
}

.author-box-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Section gauche - Photo et nom */
.author-box-left {
    flex-shrink: 0;
    text-align: center;
    min-width: 120px;
}

.author-box-avatar-link {
    display: block;
    transition: transform 0.3s ease;
}

.author-box-avatar-link:hover {
    transform: scale(1.05);
}

.author-box-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;

    transition: box-shadow 0.3s ease;
}


.author-box-name {
    margin: 15px 0 0 0;
    font-size: 20px;
    font-weight: 600;
}

.author-box-name a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-box-name a:hover {
    color: #007bff;
}

/* Section droite - Biographie */
.author-box-right {
    flex: 1;
}

.author-box-bio {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.author-box-bio p {
    margin: 0 0 15px 0;
}

.author-box-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-box {
        padding: 20px;
    }
    
    .author-box-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-box-left {
        min-width: auto;
        align-self: center;
    }
    
    .author-box-avatar {
        width: 80px;
        height: 80px;
    }
    
    .author-box-title {
        font-size: 16px;
        text-align: center;
    }
    
    .author-box-bio {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .author-box {
        padding: 15px;
        margin: 20px 0;
    }
    
    .author-box-avatar {
        width: 70px;
        height: 70px;
    }
    
    .author-box-name {
        font-size: 15px;
    }
    
    .author-box-bio {
        font-size: 13px;
    }
}