/* ═══════════════════════════════════════
   INSTITUTIONS COMPONENTS & VISUALS
═══════════════════════════════════════ */

/* ── Overview Card ── */
.fund-overview-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-top: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.fund-header-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
}

.fund-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    font-family: var(--font-ui);
    min-width: 0;
    word-break: break-word;
}

.fund-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fund-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-raised);
    border: 1px solid var(--border);
    white-space: nowrap;
}

/* ── Stats Row ── */
.fund-stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, auto));
    gap: 20px;
    align-items: center;
    justify-content: end;
}

.fund-stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.fund-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-family: var(--font-mono);
    white-space: nowrap;
}

.fund-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    white-space: nowrap;
}

/* ── Chart Cards ── */
.fund-chart-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.fund-chart-title {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
    padding-left: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fund-chart-canvas {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

/* ── Table Styling ── */
.fund-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.fund-table-header,
.fund-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr 1fr 0.8fr 1fr 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
}

.fund-table-header {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    background: var(--bg-raised);
    user-select: none;
    position: sticky;
    top: 0;
    z-index: 4;
}

.fund-col-sortable {
    cursor: pointer;
    transition: color var(--transition-base), background var(--transition-base);
    border-radius: var(--radius-sm);
    padding: 2px 4px;
    margin-left: -4px;
}

.fund-col-sortable:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.sort-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    opacity: 0.35;
    transition: opacity 0.15s, color 0.15s;
}
.sort-arrow.active {
    opacity: 1;
    color: var(--accent);
}

.fund-table-body {
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}
.fund-table-body::-webkit-scrollbar        { width: 4px; height: 4px; }
.fund-table-body::-webkit-scrollbar-track  { background: transparent; }
.fund-table-body::-webkit-scrollbar-thumb  { background: var(--border-light); border-radius: var(--radius-full); }
.fund-table-body::-webkit-scrollbar-thumb:hover { background: var(--border-light); filter: brightness(1.3); }

.fund-table-row {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-base);
}

.fund-table-row:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.fund-table-row:last-child { border-bottom: none; }
.fund-table-row:hover { background: var(--bg-hover, var(--bg-raised)) !important; }

/* ── Columns & Data ── */
.fund-col { min-width: 0; }

/* Shared mono styling for all data columns */
.fund-col-ticker,
.fund-col-sector,
.fund-col-pct,
.fund-col-val,
.fund-col-shares,
.fund-col-price,
.fund-col-activity,
.fund-col-change-usd {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Text columns: left-align */
.fund-col-ticker,
.fund-col-sector { text-align: left; }

/* Numeric columns: right-align */
.fund-col-pct,
.fund-col-val,
.fund-col-shares,
.fund-col-price,
.fund-col-activity,
.fund-col-change-usd { text-align: right; }

/* ── Asset Wrap ── */
.fund-asset-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    justify-content: flex-start;
}

.fund-logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    flex-grow: 0;
    background: var(--bg-raised);
}

.fund-symbol {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

/* ── Sector Badge ── */
.fund-sector-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 500;
    background: var(--bg-raised);
    color: var(--text-muted);
    border: 1px solid var(--border);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/* ── % Portfolio Bar ── */
.fund-col-pct {
    position: relative;
    overflow: hidden;
}
.fund-pct-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    pointer-events: none;
    max-width: 100%;
    transition: width 0.4s ease;
}
.fund-pct-value {
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* ── Delta Pill (Δ Shares) ── */
.fund-delta-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    white-space: nowrap;
}
.fund-delta-pill.up {
    background: var(--positive-dim, rgba(16, 185, 129, 0.12));
    color: var(--positive, #10b981);
}
.fund-delta-pill.down {
    background: var(--negative-dim, rgba(239, 68, 68, 0.12));
    color: var(--negative, #ef4444);
}

.fund-action-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ── Sparkline inline beside ticker ── */
.fund-sparkline {
    display: block;
    flex-shrink: 0;
    overflow: visible;
    opacity: 0.85;
}

.fund-no-trend {
    color: var(--text-muted);
    font-size: 10px;
    font-family: var(--font-mono);
}

/* ── Chart subtitle ── */
.fund-chart-subtitle {
    font-weight: 400;
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
}

/* ── Semantic Color Helpers ── */
.fund-text-green { color: var(--positive) !important; }
.fund-text-red   { color: var(--negative) !important; }
.fund-text-muted { color: var(--text-muted) !important; }
.text-blue       { color: var(--accent) !important; }

/* ── States ── */
.fund-loading-state,
.fund-error-state,
.fund-no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    color: var(--text-secondary);
    padding: 40px 20px;
    min-height: 180px;
}

.fund-error-state { color: var(--negative); }
.fund-error-msg {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.fund-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    animation: fund-spin 0.8s linear infinite;
}

@keyframes fund-spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════
   COMPONENT RESPONSIVENESS
═══════════════════════════════════════ */

/* Tablet / iPad (1100px — standard breakpoint) */
@media (max-width: 1100px) {
    .fund-overview-card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }

    .fund-stats-row {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        justify-content: start;
    }

    /* min-width forces wrapper's overflow:auto to show horizontal scroll */
    .fund-table-header,
    .fund-table-row {
        min-width: 920px;
        padding: 9px 10px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .fund-title       { font-size: 15px; }
    .fund-badge       { font-size: 9px; padding: 3px 7px; }
    .fund-stat-label  { font-size: 9px; }
    .fund-stat-value  { font-size: 15px; }

    .fund-chart-title { font-size: 10px; margin-bottom: 4px; padding-left: 2px; }

    .fund-col-ticker,
    .fund-col-sector,
    .fund-col-pct,
    .fund-col-val,
    .fund-col-shares,
    .fund-col-price,
    .fund-col-activity,
    .fund-col-change-usd { font-size: 12px; }

    .fund-sector-badge  { font-size: 9px; padding: 2px 5px; }
    .fund-delta-pill    { font-size: 11px; padding: 2px 5px; }

    .fund-table-header,
    .fund-table-row { min-width: 860px; gap: 10px; padding: 8px 10px; }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
    .fund-overview-card { padding: 10px; border-radius: var(--radius-sm); }
    .fund-title         { font-size: 14px; }
    .fund-meta-badges   { gap: 5px; }
    .fund-badge         { padding: 3px 6px; }

    .fund-stats-row     { grid-template-columns: 1fr; gap: 8px; }
    .fund-stat-label    { font-size: 8px; }
    .fund-stat-value    { font-size: 14px; }

    .fund-chart-card,
    .fund-table-wrapper { border-radius: var(--radius-sm); }
    .fund-chart-title   { font-size: 9px; }

    .fund-table-header,
    .fund-table-row {
        min-width: 820px;
        gap: 8px;
        padding: 7px 9px;
    }

    .fund-col-ticker,
    .fund-col-sector,
    .fund-col-pct,
    .fund-col-val,
    .fund-col-shares,
    .fund-col-price,
    .fund-col-activity,
    .fund-col-change-usd { font-size: 11px; }

    .fund-logo         { width: 15px; height: 15px; }
    .fund-symbol       { font-size: 11px; }
    .fund-sector-badge { font-size: 8px; padding: 1px 4px; }
    .fund-delta-pill   { font-size: 10px; padding: 1px 5px; }
}

/* ═══════════════════════════════════════
   LEFT PANE — MARKET OVERVIEW COMPONENTS
═══════════════════════════════════════ */

/* ── Card header left group (icon + title) ── */
.inst-main-card .card-header-left {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
}

/* ── Section headers ── */
.inst-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    position: sticky;
    top: 0;
    background: var(--bg-base);
    z-index: 2;
}

.inst-section-meta {
    font-size: 8px;
    font-weight: 600;
    color: var(--accent, #4d94ff);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    text-transform: none;
    padding: 2px 6px;
    border: 1px solid var(--accent, #4d94ff);
    border-radius: var(--radius-sm);
    background: rgba(77, 148, 255, 0.08);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Recent filer rows ── */
.inst-filer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-dim, var(--border));
    transition: background 0.12s;
}

.inst-filer-row:hover { background: var(--bg-hover); }

.inst-filer-row.active {
    background: var(--bg-raised);
    border-left: 2px solid var(--accent);
    padding-left: 10px;
}

.inst-filer-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-ui);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inst-filer-meta {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Aggregate split: bought + sold side by side ── */
.inst-agg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.inst-agg-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.inst-agg-col + .inst-agg-col {
    border-left: 1px solid var(--border);
}

.inst-agg-col-header {
    padding: 5px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-mono);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-base);
    z-index: 1;
}

.inst-agg-col-header.buy  { color: var(--positive, #10b981); }
.inst-agg-col-header.sell { color: var(--negative, #ef4444); }

/* ── Aggregate ticker rows (top bought / sold) ── */
.inst-agg-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 8px;
    border-bottom: 1px solid var(--border-dim, var(--border));
    cursor: default;
}

.inst-ticker-logo {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    object-fit: contain;
}

/* Smaller logo in the tight net-flow rows */
.inst-net-row .inst-ticker-logo {
    width: 14px;
    height: 14px;
}

/* Body: vertical stack — ticker+count / bar / sub+value */
.inst-agg-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

/* Top row: ticker on left, fund count on right */
.inst-agg-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
}

/* Bottom row: sub-label on left, dollar value on right */
.inst-agg-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.inst-agg-ticker {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.inst-agg-bar {
    width: 100%;
    height: 5px;
    border-radius: var(--radius-sm);
    background: var(--bg-raised);
    overflow: hidden;
}

.inst-agg-bar-fill {
    height: 100%;
    border-radius: var(--radius-sm);
    transition: width 0.3s ease;
}

.inst-agg-bar-fill.buy  { background: var(--positive, #4ac26b); }
.inst-agg-bar-fill.sell { background: var(--negative, #ff6b6b); }

.inst-agg-count {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-mono);
    flex-shrink: 0;
    white-space: nowrap;
}

.inst-agg-count.buy  { color: var(--positive, #4ac26b); }
.inst-agg-count.sell { color: var(--negative, #ff6b6b); }

/* ── Compact ticker cards (Most Bought / Most Sold) ── */
.inst-agg-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.inst-agg-card {
    margin: 4px 6px;
    padding: 6px 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: default;
    transition: border-color 0.15s, background 0.15s;
}

.inst-agg-card:hover {
    background: var(--bg-raised);
    border-color: var(--border-hover, var(--border));
}

.inst-agg-card-top {
    display: flex;
    align-items: center;
    gap: 5px;
}

.inst-agg-card-bottom {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* Labeled stat: [label] [value] inline — label precedes the number */
.inst-agg-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 3px;
    flex-shrink: 0;
}

/* Separator before second stat block */
.inst-agg-stat--sep {
    padding-left: 6px;
    border-left: 1px solid var(--border);
    margin-left: 2px;
}

.inst-agg-stat-lbl {
    font-size: 8px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    white-space: nowrap;
}

.inst-agg-stat-val {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
    white-space: nowrap;
    color: var(--text-secondary);
    line-height: 1;
}
.inst-agg-stat-val.buy  { color: var(--positive, #4ac26b); }
.inst-agg-stat-val.sell { color: var(--negative, #ff6b6b); }

/* Status pills — NEW / ADD / EXIT / TRIM */
.inst-status-pill {
    font-size: 8px;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    padding: 2px 5px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}
.inst-status-pill.new  { background: var(--positive-dim, rgba(74,194,107,0.15)); color: var(--positive, #4ac26b); }
.inst-status-pill.add  { background: rgba(77,148,255,0.12);                      color: var(--accent, #4d94ff);   }
.inst-status-pill.exit { background: var(--negative-dim, rgba(255,107,107,0.15)); color: var(--negative, #ff6b6b); }
.inst-status-pill.trim { background: var(--warning-dim,  rgba(245,158,11,0.15));  color: var(--warning, #f59e0b); }

/* ── Section header: no sticky on the top-most one (inside scrollable pane) ── */
.inst-section-header--top {
    position: static;
}

/* ── Loading / error states ── */
.inst-overview-loading,
.inst-overview-error {
    padding: 32px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.inst-overview-error { color: var(--negative, #ef4444); }

.inst-overview-warming {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.inst-warming-icon {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.inst-warming-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-ui);
}

.inst-warming-msg {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   AGG ROW — sub-label + dollar value
═══════════════════════════════════════════════════════════ */

/* "312 NEW · 145 ADD" / "45 EXIT · 87 TRIM" */
.inst-agg-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    opacity: 0.9;
}

/* Dollar value: "$4.5B" — coloured by buy/sell class, sits inline in card-top */
.inst-agg-value {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;   /* pushes value + count to the right of ticker */
}
.inst-agg-value.buy  { color: var(--positive, #4ac26b); }
.inst-agg-value.sell { color: var(--negative, #ff6b6b); }

/* ═══════════════════════════════════════════════════════════
   NET INSTITUTIONAL FLOW SECTION
═══════════════════════════════════════════════════════════ */

.inst-net-flow-section {
    border-bottom: 1px solid var(--border);
}

/* One ticker row */
.inst-net-row {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-bottom: 1px solid var(--border-dim, var(--border));
}

/* Rank number: "1", "2", … */
.inst-net-rank {
    font-size: 9px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    width: 14px;
    flex-shrink: 0;
    text-align: right;
    opacity: 0.6;
}

/* Ticker symbol */
.inst-net-ticker {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    width: 40px;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Middle column: diverging center bar */
.inst-net-divbar {
    flex: 1;
    display: flex;
    height: 5px;
    min-width: 0;
    gap: 1px;           /* 1px center hairline gap */
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Left half — sell side fills rightward from left edge, so we flip with justify-content */
.inst-net-divbar-sell-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;   /* fill grows from center leftward */
    background: var(--bg-raised);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    overflow: hidden;
}

/* Right half — buy side fills leftward from right edge */
.inst-net-divbar-buy-side {
    flex: 1;
    display: flex;
    justify-content: flex-start; /* fill grows from center rightward */
    background: var(--bg-raised);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    overflow: hidden;
}

.inst-net-divbar-fill {
    height: 100%;
    transition: width 0.35s ease;
}
.inst-net-divbar-fill.buy  { background: var(--positive, #4ac26b); }
.inst-net-divbar-fill.sell { background: var(--negative, #ff6b6b); }

/* Net value: "+$4.5B" or "-$1.2B" */
.inst-net-value {
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    min-width: 52px;
}
.inst-net-value.pos { color: var(--positive, #4ac26b); }
.inst-net-value.neg { color: var(--negative, #ff6b6b); }

/* ── Responsive ── */
@media (max-width: 480px) {
    .inst-agg-bottom { display: none; }        /* hide sub-label + value row */
    .inst-net-value  { font-size: 10px; min-width: 44px; }
    .inst-net-ticker { width: 34px; }
    .inst-section-meta { display: none; }      /* badge too wide on small screens */
}
