html,
body {
    margin: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 40px 24px;
}

.section {
    position: relative;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 18px;
    padding-bottom: 24px;
}

.section.shaded::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #f7fbff;
    z-index: -1;
}

.section h2 {
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.25;
}

.section h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.3;
}

.section ul {
    padding-left: 1.25em;
}

.section li + li {
    margin-top: 6px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 32px;
}

.buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 5px;
    background-color: #1E6C93;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.buttons .button:visited {
    color: #fff;
}

.buttons .button:hover {
    background-color: #15516f;
}

.buttons .button:focus-visible {
    outline: 2px solid #226E93;
    outline-offset: 2px;
}

.buttons .button.disabled,
.buttons button:disabled {
    background-color: #b0bec5;
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
}

.buttons .button-pending {
    min-width: 150px;
    min-height: 40px;
    width: auto;
    margin: 0;
    padding: 0 18px;
    border: none;
    border-radius: 5px;
    background-color: #b0bec5;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: help;
    opacity: 0.75;
}

.figure-panel {
    margin: 22px auto;
    max-width: 1100px;
    text-align: center;
}

.figure-panel img {
    width: 100%;
    height: auto;
}

.figure-panel .figure-medium {
    max-width: 560px;
}

.figure-panel figcaption {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.45;
    text-align: justify;
}

.table-panel {
    margin: 20px auto;
    max-width: 760px;
    text-align: center;
}

.table-panel figcaption {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.45;
    text-align: justify;
}

.table-scroll {
    overflow-x: auto;
}

.result-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    font-size: 15px;
    line-height: 1.4;
}

.result-table th,
.result-table td {
    padding: 4px 10px;
    text-align: center;
    white-space: nowrap;
}

.result-table th:first-child,
.result-table td:first-child {
    text-align: left;
}

.result-table thead tr:last-child {
    border-bottom: 1.5px solid #222;
}

.result-table .group-header td {
    text-align: left;
    font-weight: bold;
    padding-top: 8px;
}

.result-table tbody tr.group-header:not(:first-child) td {
    border-top: 1px solid #666;
}

.benchmark-cta {
    text-align: center;
    font-size: 21px;
    line-height: 1.7;
}

.result-table .avg-row {
    border-top: 1px solid #666;
}
