.collapseTrigger {
    transition: transform 0.3s ease;
}

/*
#IDmenuAnimate[aria-expanded="false"] .collapseTrigger {
    transition: transform 0.3s ease;
}
*/
a[aria-expanded="true"] .collapseTrigger {
    transform: rotate(180deg);
}

.sidebar {
    width: 100%;
}

#sidebar {
    box-shadow: 0 10px 5px rgba(78, 74, 73, .4);
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
}

#sidebar .widgettitle {
    color: #000;
}

#sidebar .widget {
    margin-bottom: 1em;
}

#sidebar .lmqm-logo,
#sidebar img {
    display: none;
}

#sidebar .sidebar-section {
    text-align: left;
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(78, 74, 73, .8);
}

.icon-rs {
    display: flex;
    justify-content: center;
}

@media (min-width: 1284px) {
    .sidebar {
        width: auto;
    }

    #sidebar {
        position: fixed;
        box-shadow: none;
        top: 30px;
        right: 0;
        width: 260px;
    }

    #sidebar .lmqm-logo,
    #sidebar img {
        display: block;
    }

    #sidebar .sidebar-section {
        text-align: right;
        font-size: 18px;
        line-height: 1.8;
    }

    .icon-rs {
        display: flex;
        justify-content: flex-end;
    }
}

@media (min-width: 1536px) {
    #sidebar {
        width: calc(4vw + 260px);
        padding-right: 4vw;
    }

    #sidebar .lmqm-logo,
    #sidebar img {
        width: 140px !important;
    }
}

@media (min-width: 1920px) {
    #sidebar {
        width: calc(8vw + 260px);
        padding-right: 8vw;
    }
}

@media (min-width: 2560px) {

    #sidebar .lmqm-logo,
    #sidebar img {
        width: 220px !important;
    }

    #sidebar .sidebar-section {
        font-size: 20px;
    }
}
/*
*/
.btn-narrow-right::before {
    clear: both;
    content: "";
    position: absolute;
    top: 0px;
    right: -20px;
    border-left: 20px solid #ffff0d;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.page-numbers {
    font-style: normal;
    font-weight: 800;
    font-family: var(--wp--preset--font-family--spectral);
    padding: 4px 8px;
    margin-right: 6px;
    border: 1px solid #ffff0d;
    background-color: #ffff0d;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.page-numbers:hover {
    border-color: #000;
}

/* 
* {border: 1px dotted red;} 
*/
article ul{
    list-style:disc;
}

.btn-triangle-bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px; /* descend le triangle sous le bouton */
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffff0d; /* couleur identique au fond du bouton */
}