/* SOX-specific presentation sits on top of the shared fear and greed layout. */
.sox-scope-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--fg-gap, 12px);
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-panel);
}

.sox-scope-item {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--border-light, var(--border));
    border-radius: 7px;
    background: var(--bg-panel-strong, var(--bg-elevated));
}

.sox-scope-item b {
    color: var(--text-primary);
    font: 800 13px/1.2 var(--font-body);
}

.sox-scope-item span {
    color: var(--text-secondary);
    font: 500 11px/1.5 var(--font-body);
}

.sox-fg-shell .fg-card {
    min-height: 188px;
    gap: 9px;
}

.sox-fg-shell .fg-latest {
    min-height: 26px;
}

.sox-fg-shell .fg-spark {
    height: 42px;
}

.sox-fg-shell .fg-card-expand {
    min-height: 36px;
}

@media (max-width: 1200px) {
    .sox-scope-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .sox-scope-strip {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .sox-scope-item {
        padding: 9px 10px;
    }
}
