/* Styles pour le lien profil dans le menu latéral */

.author-box a {
    color: inherit;
    transition: opacity 0.3s ease;
}

.author-box a:hover {
    opacity: 0.8;
}

.author-box a:hover .dz-media img {
    transform: scale(1.05);
}

.author-box .dz-media img {
    transition: transform 0.3s ease;
}

/* S'assurer que le nom reste visible */
.author-box .name {
    color: var(--title);
    margin-bottom: 0;
}

/* Style dark mode */
.dark .author-box .name {
    color: #fff;
}

/* Curseur pointer sur toute la zone */
.author-box a {
    cursor: pointer;
}