.highlight {
    padding-left: 0.75rem;
    margin: 1rem 0;
    border-left: 4px solid;
    background: transparent;
    border-radius: 2px;
    color: inherit;
    border-left-width: 3px;
    border-color: #888;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.title-with-bars {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.title-with-bars::before,
.title-with-bars::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #666;
}

.title-with-bars::before {
    margin-right: 0.75rem;
}

.title-with-bars::after {
    margin-left: 0.75rem;
}

.list-divider {
    width: 65%;
    border-bottom: 1px solid var(--bs-secondary);
    margin: 1.5rem auto;
}

.item-adaptive {
    background-color: rgba(0, 0, 0, 0.03);
}

@media (prefers-color-scheme: dark) {
    .item-adaptive {
        background-color: rgba(0, 0, 0, 0.15);
    }
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: .5rem 0;
    /* espace au-dessus et en dessous */
    color: #666;
    /* couleur du texte et de la ligne */
}

.separator::before {
    content: "";
    flex: 1;
    border-bottom: 1px solid #666;
    margin-right: 0.5em;
}

.separator span {
    font-weight: bold;
}