.tab-anchor {
    display: none;
}

/* Default: show home, hide authors */
.tabs > .authors {
    display: none;
}

/* When #auteurs is targeted, show authors and hide home */
body:has(#auteurs:target) .tabs > .authors {
    display: block;
}

body:has(#auteurs:target) .tabs > .home {
    display: none;
}

.tabs > div {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
