.report-top {
    padding-block: 35px 38px;
    border-bottom: 1px solid var(--line);
}

.report-top h1 {
    font-size: clamp(30px,3.7vw,48px);
    line-height: 1.13;
    max-width: 950px;
    overflow-wrap: anywhere;
}

.report-top .lede {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.75;
}

.report-layout {
    display: grid;
    grid-template-columns: 225px minmax(0,1fr);
    gap: 52px;
    align-items: start;
    padding-block: 42px 72px;
}

.toc-panel {
    position: sticky;
    top: 112px;
    min-width: 0;
    font-size: 12px;
}

.toc-panel details {
    border-top: 2px solid var(--green);
    padding-top: 17px;
}

.toc-panel summary {
    font: 11px/1.6 var(--mono);
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--green);
}

.toc-panel nav {
    margin-top: 18px;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 235px);
    overflow: auto;
    scrollbar-width: thin;
}

.toc-panel nav a {
    padding: 10px 12px;
    border-left: 2px solid transparent;
    border-radius: 0 5px 5px 0;
    line-height: 1.5;
    color: var(--muted);
    display: block;
    transition: background .2s;
}

.toc-panel nav a:hover,.toc-panel nav a.is-active {
    background: var(--mint);
    border-left-color: var(--green);
    color: var(--green-dark);
}

.toc-panel nav a strong {
    font-weight: 500;
}

.toc-panel nav a span {
    display: block;
    font-size: 11px;
    margin-top: 3px;
    color: var(--muted);
}

.toc-back {
    display: inline-block;
    margin-top: 22px;
    font-size: 12px;
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.report-content {
    min-width: 0;
    overflow-wrap: anywhere;
}

.report-content section[id],.report-content h2[id] {
    scroll-margin-top: 112px;
}

.report-content .section {
    margin: 0 0 46px;
}

.report-content .section+.section {
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.section__head {
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 22px;
}

.section__head h2 {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.section__head h2 strong {
    font-weight: 600;
}

.section__num {
    font: 11px/1.5 var(--mono);
    color: var(--green);
    flex-shrink: 0;
}

.report-content p {
    max-width: 75ch;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.report-content h3 {
    font-size: 21px;
    line-height: 1.4;
    margin: 28px 0 14px;
    letter-spacing: -.02em;
}

.report-content h4 {
    font-size: 17px;
    margin: 22px 0 12px;
}

.report-content a:not(.figure-open):not(.btn) {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #a1b6a7;
}

.report-content a:not(.figure-open):not(.btn):hover {
    text-decoration-color: currentColor;
}

.report-content ul,.report-content ol {
    margin: 16px 0 22px;
    padding-left: 25px;
}

.report-content li {
    margin-bottom: 8px;
}

.report-content .ref-list {
    font-size: 13px;
}

.report-content pre {
    font: 12px/1.85 var(--mono);
    white-space: pre;
    overflow: auto;
    padding: 22px;
    margin: 20px 0;
    background: #edf0e6;
    border: 1px solid var(--line);
    border-radius: 8px;
    max-width: 100%;
    tab-size: 4;
}

.report-content code {
    font-family: var(--mono);
    font-size: .88em;
}

.report-content pre code {
    font-size: inherit;
}

.code-block {
    max-width: 100%;
    min-width: 0;
}

.code-block pre {
    margin: 0;
}

.code-block {
    margin-block: 24px;
}

.pull-quote {
    padding: 22px 26px;
    border-left: 3px solid var(--green);
    background: var(--mint);
    border-radius: 0 8px 8px 0;
}

.card {
    border: 1px solid var(--line);
    background: #fafbf6;
    padding: 24px;
    border-radius: 12px;
    margin: 22px 0;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 38px;
}

.key-stat {
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.key-stat:nth-last-child(-n+2) {
    border-bottom: 0;
}

.key-stat:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.key-stat__value {
    font: 31px/1.2 var(--serif);
    color: var(--green);
}

.key-stat__value small,.key-stat__value sup {
    font: 13px var(--sans);
    margin-left: 3px;
}

.key-stat__label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    margin: 22px 0 30px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fcfcf8;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.65;
    min-width: 520px;
}

.data-table caption {
    padding: 15px 17px;
    font-size: 12px;
    text-align: left;
    color: var(--muted);
    background: #edf0e6;
}

.data-table th {
    text-align: left;
    background: #e8ede2;
    color: #2c4a3a;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    padding: 14px 15px;
    border-bottom: 1px solid var(--line);
}

.data-table td {
    padding: 13px 15px;
    border-bottom: 1px solid #e4e8df;
    vertical-align: top;
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
    background: #f5f7f0;
}

.data-table tbody tr:hover {
    background: #e8f0e3;
}

.data-table .num {
    text-align: right;
    font-family: var(--mono);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.data-table .aa-code {
    font-weight: 600;
    color: var(--green);
}

.data-table .bb-code {
    font-weight: 600;
    background: #e1edda;
}

.fig {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    margin: 28px 0;
    overflow: hidden;
    min-width: 0;
}

.fig__media,.fig__protein {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    min-height: 0;
}

.fig__protein {
    background: #050807;
    padding: 12px;
}

.figure-open {
    display: block;
    position: relative;
    width: 100%;
    min-width: 0;
    cursor: zoom-in;
}

.figure-open img {
    max-width: 100%;
    max-height: 580px;
    object-fit: contain;
    margin: auto;
}

.figure-open::after {
    content: '↗';
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 7px;
    background: var(--paper);
    color: var(--green-dark);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 1px 3px #0002;
}

.fig__caption {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.fig__caption-label {
    font: 10px/1.5 var(--mono);
    color: var(--green);
    white-space: nowrap;
    flex: none;
}

.collapsible {
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 18px 20px;
    margin-block: 20px;
    background: #fcfcf8;
}

.collapsible summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
}

.collapsible__body {
    padding-top: 18px;
}

.report-pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    margin-top: 50px;
}

.report-pager a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--mint);
    border-radius: 10px;
    font-size: 13px!important;
    text-decoration: none!important;
    line-height: 1.55;
}

.report-pager small {
    font: 10px var(--mono);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
}

.report-pager a:last-child {
    text-align: right;
    grid-column: 2;
}
