/* ===== COUNTRY NEWS FEED ===== */
.news-loading {
  font-size: 10px; color: var(--t3); font-family: 'Space Mono', monospace;
  padding: 12px 0; text-align: center;
}
.news-spinner {
  display: inline-block; width: 10px; height: 10px; border: 1.5px solid var(--t3);
  border-top-color: var(--gold); border-radius: 50%; animation: spin .6s linear infinite;
  vertical-align: middle; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.news-empty {
  font-size: 10px; color: var(--t3); font-family: 'Space Mono', monospace;
  padding: 8px 0; text-align: center;
}

.cn-sector-group { margin-bottom: 10px; }
.cn-sector-group:last-child { margin-bottom: 0; }
.cn-sector-label {
  font-size: 9px; font-weight: 600; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.8px; font-family: 'Space Mono', monospace;
  margin-bottom: 4px; padding-bottom: 2px; border-bottom: 1px solid var(--border);
}

.cn-item {
  display: flex; gap: 8px; padding: 6px 0; text-decoration: none;
  border-bottom: 1px solid rgba(30,45,69,0.4); transition: background .15s;
}
.cn-item:hover { background: var(--hover); margin: 0 -12px; padding: 6px 12px; }
.cn-item:last-child { border-bottom: none; }

.cn-dot {
  width: 6px; height: 6px; min-width: 6px; border-radius: 50%; margin-top: 5px;
}
.cn-tone-pos { background: var(--green); }
.cn-tone-neg { background: var(--red); }
.cn-tone-neu { background: var(--t3); }

.cn-body { flex: 1; min-width: 0; }
.cn-title {
  font-size: 11px; color: var(--t1); line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cn-item:hover .cn-title { color: var(--gold); }
.cn-meta {
  font-size: 8px; color: var(--t3); font-family: 'Space Mono', monospace;
  margin-top: 2px;
}

/* ===== SECTOR STATISTICS ===== */
.stats-empty {
  font-size: 10px; color: var(--t3); font-family: 'Space Mono', monospace;
  padding: 8px 0; text-align: center;
}

.ss-sector {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  margin-bottom: 4px; overflow: hidden;
}
.ss-sector:last-child { margin-bottom: 0; }

.ss-sector-header {
  display: flex; align-items: center; gap: 6px; padding: 8px 10px;
  cursor: pointer; transition: background .15s;
}
.ss-sector-header:hover { background: var(--hover); }
.ss-icon { font-size: 14px; }
.ss-name { font-size: 11px; font-weight: 600; color: var(--t1); flex: 1; }
.ss-chevron {
  font-size: 10px; color: var(--t3); transition: transform .2s;
  font-family: monospace;
}
.ss-sector.ss-open .ss-chevron { transform: rotate(90deg); }

.ss-indices {
  display: none; padding: 0 10px 8px;
}
.ss-sector.ss-open .ss-indices { display: block; }

.ss-index {
  padding: 5px 0; border-bottom: 1px solid rgba(30,45,69,0.3);
}
.ss-index:last-child { border-bottom: none; }

.ss-index-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.ss-index-name {
  font-size: 10px; color: var(--t2);
}
.ss-index-value {
  font-size: 11px; font-weight: 700; color: var(--t1);
  font-family: 'Space Mono', monospace; white-space: nowrap;
}

.ss-index-bottom {
  display: flex; justify-content: space-between; align-items: center; margin-top: 1px;
}
.ss-source {
  font-size: 7px; color: var(--t3); font-family: 'Space Mono', monospace;
}
.ss-rank {
  font-size: 8px; color: var(--gold); font-family: 'Space Mono', monospace;
  font-weight: 700;
}
