.ev-component-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .ev-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1rem;
            flex: 1;
            min-width: 160px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.2s;
        }
        .ev-card i {
            font-size: 2rem;
            color: #2c6e9e;
            margin-bottom: 0.5rem;
        }
        .ev-card .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4a5568;
        }
        .ev-card .number {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a365d;
        }
        .metric-badge {
            background-color: #e9ecef;
            border-radius: 40px;
            padding: 0.2rem 0.8rem;
            font-size: 0.8rem;
        }
        .insight-box {
            background: #eef2ff;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 1rem;
        }
        .valuation-bridge {
            background: white;
            border-radius: 20px;
            padding: 1rem 1rem 0.8rem 1rem;
            margin: 1rem 0;
            border: 1px solid #e2e8f0;
        }
        .bridge-bar-container {
            display: flex;
            width: 100%;
            height: 42px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #edf2f7;
            margin: 0.5rem 0;
        }
        .bridge-segment {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            transition: width 0.2s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: clip;
        }
        .bridge-segment.equity { background-color: #2e7d32; }
        .bridge-segment.debt { background-color: #ed6c02; }
        .bridge-segment.pref-min { background-color: #9c27b0; }
        .bridge-segment.cash-offset { background-color: #d32f2f; }
        .bridge-segment.ev-result { background-color: #1976d2; }
        .bridge-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 0.75rem;
            font-size: 0.75rem;
        }
        .bridge-legend span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .bridge-legend i {
            width: 14px;
            height: 14px;
            display: inline-block;
            border-radius: 3px;
        }
        @media (max-width: 640px) {
            .bridge-segment { font-size: 0.6rem; }
            .ev-card .number { font-size: 1.2rem; }
        }