/* list styles */

div.on-this-page.inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

div.on-this-page.inline ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -.5em;
}


div.on-this-page.inline ol li {
    padding-right: .5em;
    padding-left: .5em;
    border-right: 2px solid #222;
}

div.on-this-page.inline ol li:last-child {
    border: none;
}

div.on-this-page.inline h3 {
    margin-right: .5em; /* Space between heading and list */
    font-size: 1.1em;
    white-space: nowrap; /* Prevents the heading from wrapping */
}

