.financial-summary-wrap--combined {
    display: grid;
    gap: 10px;
}

.financial-summary-section {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.financial-summary-section__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    background: #f7faff;
    color: #17304f;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.financial-summary-section__summary::-webkit-details-marker {
    display: none;
}

.financial-summary-section__summary::before {
    content: "▸";
    display: inline-block;
    margin-right: 7px;
    color: var(--brand);
    transition: transform .12s ease;
}

.financial-summary-section[open] > .financial-summary-section__summary::before {
    transform: rotate(90deg);
}

.financial-summary-section__summary > span:first-child {
    margin-right: auto;
}

.financial-summary-section__content {
    border-top: 1px solid var(--border);
}

.financial-summary-section .financial-summary-table {
    margin: 0;
}
