/**
 * Sectors & Holdings table + footnote (companion to the [custom_chart] pie).
 * Rendered by the sectors_holdings_table / sectors_footnote shortcodes.
 * The per-sector bar color is passed inline as the --sh-color custom property.
 */
.sh-table {
    font-family: "Source Sans 3", sans-serif;
    width: 100%;
    color: #2c2e30;
}

.sh-table .sh-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.sh-table .sh-name {
    flex: 1 1 auto;
    text-align: left;
    padding: 1rem 0 1rem 3rem;
    border-left: 15px solid var(--sh-color, transparent);
}

.sh-table .sh-weight {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
    padding: 1rem 0;
}

.sh-table .sh-head {
    font-size: 18px;
    font-weight: 600;
    color: #09367a;
    padding-bottom: 10px;
    align-items: center;
}

.sh-table .sh-sector {
    font-size: 17px;
    font-weight: 600;
    border-top: 1px solid #c0c2c4;
    border-bottom: 1px solid #c0c2c4;
}

.sh-table .sh-sector .sh-weight {
    font-weight: 400;
}

.sh-table .sh-holdings {
    font-size: 17px;
    font-weight: 400;
}

.sh-footnote {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
