.dashboard-signals-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.dashboard-profile-list {
  display: grid;
  gap: .7rem;
}

.dashboard-profile-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: .45rem;
  background: #f8fafc;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dashboard-profile-list__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 .4rem .95rem rgba(0, 0, 0, .08);
  border-color: rgba(13,110,253,.16);
}

.dashboard-profile-list__main {
  min-width: 0;
}

.dashboard-profile-list__name {
  font-size: .98rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.dashboard-profile-list__meta {
  margin-top: .18rem;
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.4;
}

.dashboard-profile-list__views {
  flex: 0 0 auto;
  min-width: 44px;
  text-align: center;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(13,110,253,.08);
  color: #0d6efd;
  font-size: .86rem;
  font-weight: 700;
}

.dashboard-map-wrap {
  border: 1px solid rgba(0,0,0,.05);
  border-radius: .45rem;
  background: linear-gradient(180deg, #fafcff 0%, #f5f8fc 100%);
  padding: .65rem;
}

.dashboard-map-canvas {
  width: 100%;
  height: 285px;
  position: relative;
  overflow: hidden;
}

.dashboard-map-canvas svg {
  width: 100% !important;
  height: 100% !important;
}

.dashboard-map-canvas,
.dashboard-map-canvas svg,
.dashboard-map-canvas svg * {
  pointer-events: none !important;
}

.dashboard-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
  justify-content: center;
}

.dashboard-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
  color: #4b5563;
  font-size: .84rem;
}

@media (max-width: 991.98px) {
  .dashboard-signals-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-map-canvas {
    height: 240px;
  }
}