/* ============================================
   Module-Specific Styles
   ============================================ */

/* News Feed */
.news-feed { display: flex; flex-direction: column; gap: 1px; }
.news-item {
    padding: 16px;
    background: var(--bg-card);
    border-left: 3px solid var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}
.news-item:hover { background: var(--bg-hover); }
.news-item.high { border-left-color: var(--accent-red); }
.news-item.medium { border-left-color: var(--accent-orange); }
.news-item.low { border-left-color: var(--accent-green); }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.news-source { font-size: 10px; color: var(--accent-orange); font-weight: 600; text-transform: uppercase; }
.news-time { font-size: 10px; color: var(--text-muted); }
.news-title { font-size: 13px; line-height: 1.5; margin-bottom: 6px; font-weight: 500; }
.news-summary { font-size: 11px; color: var(--text-secondary); line-height: 1.6; }
.news-tags { display: flex; gap: 6px; margin-top: 10px; }
.news-tag { font-size: 9px; padding: 2px 8px; background: var(--bg-hover); border-radius: 3px; color: var(--text-muted); }

/* Volatility Cards */
.vol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.vol-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 16px;
}
.vol-symbol { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--accent-cyan); margin-bottom: 16px; }
.vol-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 11px; }
.vol-label { color: var(--text-muted); }
.vol-value { font-family: var(--font-mono); }
.vol-bar { height: 8px; background: var(--bg-hover); border-radius: 4px; overflow: hidden; margin-top: 12px; }
.vol-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow), var(--accent-red)); border-radius: 4px; transition: width 0.3s; }

/* Market Structure */
.structure-container { display: grid; grid-template-columns: 1fr 320px; gap: 16px; height: 100%; }
.structure-chart { background: var(--bg-card); border-radius: 8px; min-height: 400px; }
.structure-levels { display: flex; flex-direction: column; gap: 8px; }
.structure-level {
    display: flex; align-items: center;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 6px;
    border-left: 3px solid var(--text-muted);
}
.structure-level.resistance { border-left-color: var(--accent-red); }
.structure-level.support { border-left-color: var(--accent-green); }
.structure-level.pivot { border-left-color: var(--accent-yellow); }
.structure-info { flex: 1; }
.structure-type { font-size: 10px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.structure-price { font-family: var(--font-mono); font-size: 15px; font-weight: 500; }
.structure-meta { font-size: 10px; color: var(--text-muted); margin-top: 4px; }
