.hb-oeuvres-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: none;
}

.hb-oeuvres-container:hover {
    cursor: auto;
}

.hb-artistic-nav {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--content-padding, 40px);
    z-index: 1000;
    opacity: 1;
    max-width: 1340px;
    width: 100%;
}

.hb-artistic-nav.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.hb-nav-arrow {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.hb-nav-arrow svg {
    width: 100%;
    height: 100%;
}

.hb-nav-arrow:hover svg path {
    stroke-width: 4;
}

.hb-nav-arrow:hover {
    color: #e01d18;
    background-color: inherit;
}

.hb-initials {
    font-size: 35px;
    font-family: "205TF Plaax 44 Terme Bold", sans-serif;
    color: #e01d18;
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
}

.hb-initials:hover {
    color: #e01d18;
    background-color: inherit;
    text-decoration: none;
}

.hb-right-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.hb-right-content {
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.hb-collection-name {
    font-size: 22px;
    line-height: 1.3;
    color: #e01d18;
    font-family: "205TF Plaax 44 Foch Bold", sans-serif;
    text-align: right;
}

.hb-oeuvres-list {
    width: 100%;
}

.hb-category-content {
    display: none;
    width: 100%;
}

.hb-category-content.active {
    display: block;
}

.hb-oeuvre-item {
    width: 100%;
    line-height: 0;
    position: relative;
    margin-bottom: 2px;
}

.hb-oeuvre-item a {
    display: block;
    width: 100%;
}

.hb-oeuvre-item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.hb-oeuvre-legende {
    position: absolute;
    bottom: 30px;
    right: var(--content-padding, 109px);
    color: #e01d18;
    font-family: "205TF Plaax 44 Foch Light", sans-serif;
    text-align: right;
    line-height: 1.3;
    opacity: 1;
    font-size: 21px;
}

.hb-oeuvre-legende.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 768px) {
    .hb-oeuvre-legende {
        right: 20px; /* Réduire la marge droite */
        bottom: 20px; /* Ajuster la position du bas */
        font-size: 16px; /* Réduire la taille de la police */
    }
    .hb-artistic-nav {
        top: 20px; /* Réduire l'espace depuis le haut */
        padding: 5px 7px; /* Réduire le padding */
        width: 100%;
    }
    .hb-initials {
        font-size: 25px;
    }
    .hb-collection-name {
        font-size: 17px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 576px) {
    .hb-artistic-nav {
        top: 15px;
        padding: 5px 7px;
        /* Si besoin de modifications supplémentaires pour très petits écrans */
    }
}
