/* ============================================
   DASHBOARD-HERO.CSS
   Modern Safety Intelligence Dashboard Hero
   Glassmorphism + Animated System Visualization
   ============================================ */

/* Hero Dashboard Container */
.dashboard-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-neutral-950);
  overflow: hidden;
  padding: var(--space-8) var(--space-4);
}

/* Background Effects */
.dashboard-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204, 255, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.dashboard-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(204, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(204, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Grid Background Particles */
.dashboard-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(204, 255, 0, 0.3);
  border-radius: 50%;
  animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(var(--tx), var(--ty));
  }
}

/* Main Content Container */
.dashboard-hero__content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
  margin: 0 auto;
}

/* Left Section - Text Content */
.dashboard-hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.dashboard-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  animation: fade-in 0.8s ease-out;
}

.dashboard-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  animation: slide-up 0.8s ease-out 0.1s both;
}

.dashboard-hero__description {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 500px;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.dashboard-hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: slide-up 0.8s ease-out 0.3s both;
}

.dashboard-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.dashboard-hero__cta--primary {
  background: var(--color-primary);
  color: #000;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
}

.dashboard-hero__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(204, 255, 0, 0.4);
}

.dashboard-hero__cta--outline {
  background: rgba(204, 255, 0, 0.1);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.dashboard-hero__cta--outline:hover {
  background: rgba(204, 255, 0, 0.2);
  transform: translateY(-2px);
}

.dashboard-hero__cta--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.dashboard-hero__cta--ghost:hover {
  background: rgba(204, 255, 0, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.dashboard-hero__cta-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Right Section - Dashboard */
.dashboard-hero__right {
  position: relative;
  height: 600px;
  animation: fade-in 0.8s ease-out 0.2s both;
}

.dashboard {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(204, 255, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(204, 255, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  overflow: hidden;
}

/* Dashboard Header */
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.dashboard__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.dashboard__status-indicator {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  }
  50% {
    opacity: 0.5;
  }
}

.dashboard__timestamp {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Dashboard Grid */
.dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  flex: 1;
}

/* Status Card */
.status-card {
  background: rgba(204, 255, 0, 0.05);
  border: 1px solid rgba(204, 255, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.status-card:hover {
  background: rgba(204, 255, 0, 0.08);
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-2px);
}

.status-card:hover::before {
  opacity: 1;
}

.status-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.status-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.5px;
}

.status-card__unit {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.status-card__indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  align-self: flex-start;
}

.status-card__indicator--success {
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}

.status-card__indicator--warning {
  background: var(--color-warning);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.status-card__indicator--danger {
  background: var(--color-danger);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Alert Feed */
.alert-feed {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.alert-feed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
  pointer-events: none;
  z-index: 5;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(204, 255, 0, 0.1);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: slide-in-alert 0.4s ease-out;
}

@keyframes slide-in-alert {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-item__indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-item__indicator--success {
  background: var(--color-success);
}

.alert-item__indicator--warning {
  background: var(--color-warning);
}

.alert-item__indicator--danger {
  background: var(--color-danger);
  animation: blink 0.6s infinite;
}

@keyframes blink {
  0%, 49%, 100% {
    opacity: 1;
  }
  50%, 99% {
    opacity: 0.4;
  }
}

.alert-item__text {
  flex: 1;
  min-width: 0;
}

.alert-item__time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Scrolling Animation for Alert Feed */
.alert-feed.scrolling .alert-item:first-child {
  animation: slide-out-alert 0.4s ease-out forwards;
}

@keyframes slide-out-alert {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Analytics Mini Chart */
.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 60px;
  background: rgba(204, 255, 0, 0.03);
  border: 1px solid rgba(204, 255, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(204, 255, 0, 0.3) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(204, 255, 0, 0.2);
  min-height: 10px;
  animation: bar-wave 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.2);
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }
.chart-bar:nth-child(5) { animation-delay: 0.8s; }
.chart-bar:nth-child(6) { animation-delay: 1s; }

@keyframes bar-wave {
  0%, 100% {
    height: 40%;
    opacity: 0.6;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
}

/* Sensor Network Visualization */
.sensor-network {
  position: relative;
  width: 100%;
  height: 120px;
  background: rgba(204, 255, 0, 0.03);
  border: 1px solid rgba(204, 255, 0, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

canvas.sensor-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Bottom Section - Status and Alert State */
.dashboard__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  padding-top: var(--space-4);
}

.status-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.status-group__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.status-group__value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.status-group__value-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-indicator 2s infinite;
}

/* Fire Alert Indicator */
.fire-alert-state {
  background: rgba(204, 255, 0, 0.05);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}

.fire-alert-state__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.fire-alert-state__status {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.fire-alert-state__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
  animation: pulse 2s infinite;
}

.fire-alert-state__status.warning .fire-alert-state__status-dot {
  background: var(--color-warning);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
}

.fire-alert-state__status.critical .fire-alert-state__status-dot {
  background: var(--color-danger);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
  animation: pulse-critical 0.6s infinite;
}

@keyframes pulse-critical {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dashboard-hero__content {
    grid-template-columns: 1fr;
  }

  .dashboard-hero__right {
    height: auto;
    min-height: 600px;
  }

  .dashboard {
    padding: var(--space-4);
    max-height: none;
    overflow-y: auto;
    max-height: 700px;
  }

  .dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-hero {
    min-height: auto;
    padding: var(--space-6) var(--space-4);
  }

  .dashboard-hero__content {
    gap: var(--space-6);
  }

  .dashboard-hero__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .dashboard-hero__description {
    font-size: 1rem;
  }

  .dashboard-hero__right {
    height: auto;
    min-height: 550px;
  }

  .dashboard {
    padding: var(--space-4);
    gap: var(--space-4);
    max-height: 650px;
    overflow-y: auto;
  }

  .dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .dashboard__bottom {
    grid-template-columns: 1fr;
  }

  .status-card {
    padding: var(--space-3);
  }

  .status-card__label {
    font-size: 0.7rem;
  }

  .status-card__value {
    font-size: 1.5rem;
  }

  .alert-item {
    font-size: 0.75rem;
    padding: var(--space-2);
  }

  .analytics-chart {
    height: 60px;
  }

  .sensor-network {
    height: 100px;
  }
}

@media (max-width: 640px) {
  .dashboard-hero {
    padding: var(--space-4) var(--space-3);
  }

  .dashboard-hero__content {
    gap: var(--space-4);
  }

  .dashboard-hero__title {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .dashboard-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .dashboard-hero__cta-group {
    flex-direction: column;
  }

  .dashboard-hero__cta {
    justify-content: center;
    width: 100%;
    font-size: 0.9rem;
    padding: var(--space-3) var(--space-5);
  }

  .dashboard-hero__right {
    height: auto;
    min-height: auto;
  }

  .dashboard {
    padding: var(--space-3);
    gap: var(--space-3);
    max-height: none;
    overflow-y: visible;
    border-radius: 0.5rem;
  }

  .dashboard__header {
    padding-bottom: var(--space-2);
    gap: var(--space-2);
    flex-wrap: wrap;
  }

  .dashboard__title {
    font-size: 0.85rem;
  }

  .dashboard__timestamp {
    font-size: 0.65rem;
  }

  .dashboard__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .status-card {
    padding: var(--space-2);
  }

  .status-card__label {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }

  .status-card__value {
    font-size: 1.25rem;
  }

  .status-card__unit {
    font-size: 0.65rem;
  }

  .alert-feed {
    max-height: 120px;
  }

  .alert-item {
    font-size: 0.7rem;
    padding: var(--space-1) var(--space-2);
    gap: var(--space-2);
  }

  .alert-item__time {
    font-size: 0.6rem;
  }

  .analytics-chart {
    height: 45px;
    gap: var(--space-1);
    padding: var(--space-2);
  }

  .chart-bar {
    border-radius: 2px;
  }

  .sensor-network {
    height: 80px;
  }

  .dashboard__bottom {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .status-group {
    gap: var(--space-1);
  }

  .status-group__label {
    font-size: 0.65rem;
  }

  .status-group__value {
    font-size: 1rem;
  }

  .fire-alert-state {
    padding: var(--space-3);
  }

  .fire-alert-state__label {
    font-size: 0.65rem;
    margin-bottom: var(--space-1);
  }

  .fire-alert-state__status {
    font-size: 1rem;
  }

  .fire-alert-state__status-dot {
    width: 8px;
    height: 8px;
  }
}

/* Animation Keyframes */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */
[data-theme="light"] .dashboard-hero {
  background: #ffffff;
}

[data-theme="light"] .dashboard-hero::before {
  background: 
    radial-gradient(circle at 20% 50%, rgba(122, 184, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

[data-theme="light"] .dashboard-hero::after {
  background-image: 
    linear-gradient(90deg, rgba(122, 184, 0, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(122, 184, 0, 0.03) 1px, transparent 1px);
  opacity: 0.15;
}

[data-theme="light"] .particle {
  background: rgba(122, 184, 0, 0.2);
}

[data-theme="light"] .dashboard-hero__eyebrow {
  color: #7ab800;
}

[data-theme="light"] .dashboard-hero__title {
  color: #1a1a2e;
}

[data-theme="light"] .dashboard-hero__description {
  color: rgba(26, 26, 46, 0.7);
}

[data-theme="light"] .dashboard-hero__cta--primary {
  background: #7ab800;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(122, 184, 0, 0.2);
}

[data-theme="light"] .dashboard-hero__cta--primary:hover {
  box-shadow: 0 8px 40px rgba(122, 184, 0, 0.3);
}

[data-theme="light"] .dashboard-hero__cta--outline {
  background: rgba(122, 184, 0, 0.08);
  color: #7ab800;
  border-color: #7ab800;
}

[data-theme="light"] .dashboard-hero__cta--outline:hover {
  background: rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .dashboard-hero__cta--ghost {
  color: #1a1a2e;
  border-color: rgba(26, 26, 46, 0.2);
}

[data-theme="light"] .dashboard-hero__cta--ghost:hover {
  background: rgba(122, 184, 0, 0.1);
  border-color: #7ab800;
  color: #7ab800;
}

[data-theme="light"] .dashboard {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(122, 184, 0, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(122, 184, 0, 0.1);
}

[data-theme="light"] .dashboard__header {
  border-bottom-color: rgba(122, 184, 0, 0.1);
}

[data-theme="light"] .dashboard__title {
  color: #7ab800;
}

[data-theme="light"] .dashboard__timestamp {
  color: rgba(26, 26, 46, 0.5);
}

[data-theme="light"] .status-card {
  background: rgba(122, 184, 0, 0.04);
  border-color: rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .status-card:hover {
  background: rgba(122, 184, 0, 0.08);
  border-color: rgba(122, 184, 0, 0.25);
}

[data-theme="light"] .status-card__label {
  color: rgba(26, 26, 46, 0.6);
}

[data-theme="light"] .status-card__value {
  color: #7ab800;
}

[data-theme="light"] .status-card__unit {
  color: rgba(26, 26, 46, 0.6);
}

[data-theme="light"] .alert-feed {
  background: rgba(122, 184, 0, 0.02);
}

[data-theme="light"] .alert-feed::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
}

[data-theme="light"] .alert-item {
  background: rgba(122, 184, 0, 0.05);
  border-color: rgba(122, 184, 0, 0.1);
  color: rgba(26, 26, 46, 0.7);
}

[data-theme="light"] .alert-item__text {
  color: #1a1a2e;
}

[data-theme="light"] .alert-item__time {
  color: rgba(26, 26, 46, 0.5);
}

[data-theme="light"] .analytics-chart {
  background: rgba(122, 184, 0, 0.04);
  border-color: rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .chart-bar {
  background: linear-gradient(180deg, #7ab800 0%, rgba(122, 184, 0, 0.3) 100%);
  border-color: rgba(122, 184, 0, 0.2);
  box-shadow: 0 0 10px rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .sensor-network {
  background: rgba(122, 184, 0, 0.04);
  border-color: rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .dashboard__bottom {
  border-top-color: rgba(122, 184, 0, 0.1);
}

[data-theme="light"] .status-group__label {
  color: rgba(26, 26, 46, 0.6);
}

[data-theme="light"] .status-group__value {
  color: #7ab800;
}

[data-theme="light"] .fire-alert-state {
  background: rgba(122, 184, 0, 0.05);
  border-color: rgba(122, 184, 0, 0.15);
}

[data-theme="light"] .fire-alert-state__label {
  color: rgba(26, 26, 46, 0.6);
}

[data-theme="light"] .fire-alert-state__status {
  color: #7ab800;
}

/* Dashboard section dividers and labels */
.dashboard-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  padding-top: var(--space-3);
}

.dashboard-section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

[data-theme="light"] .dashboard-section {
  border-top-color: rgba(122, 184, 0, 0.1);
}

[data-theme="light"] .dashboard-section__label {
  color: rgba(26, 26, 46, 0.6);
}
