/* Keep editorial tables readable; scroll each table instead of the article. */
.public-article .editorial-table-scroll {
    max-width: 100%;
    margin: 26px 0 30px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: #96743a #211e1b;
    -webkit-overflow-scrolling: touch;
}

.public-article .editorial-table-scroll:focus-visible {
    outline: 2px solid #e0bd72;
    outline-offset: 3px;
}

.public-article .legacy-rich-content-body .editorial-table-scroll > table {
    display: table;
    width: 100%;
    min-width: var(--editorial-table-min-width, 640px);
    max-width: none;
    margin: 0;
    overflow: visible;
}

.public-article .editorial-table-scroll::-webkit-scrollbar {
    height: 10px;
}

.public-article .editorial-table-scroll::-webkit-scrollbar-track {
    background: #211e1b;
}

.public-article .editorial-table-scroll::-webkit-scrollbar-thumb {
    border: 2px solid #211e1b;
    border-radius: 5px;
    background: #96743a;
}
