.wst-feed-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #121212;
  color: #E0E0E0;
  margin: 0 -10px;
}
.wst-threat-feed {
  flex: 1 1 400px;
  padding: 10px;
}
.wst-threat-map {
  flex: 1 1 400px;
  height: 500px;
  margin: 10px;
  border: 1px solid #333;
  border-radius: 8px;
}
.threat-card {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.threat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(0,255,255,0.5);
}
.severity-high { color: #FF4C4C; }
.severity-medium { color: #FFA500; }
.severity-low { color: #00FFAA; }