/* ============================================
   Dashboard page styles
   ============================================ */

.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--fg);
  transition: transform 0.15s, box-shadow 0.15s;
  border-left: 4px solid var(--card-accent, var(--primary));
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  text-decoration: none;
}

.dashboard-card:active {
  transform: translateY(0);
}

.dashboard-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-card-icon svg {
  width: 22px;
  height: 22px;
}

.dashboard-card-body {
  flex: 1;
  min-width: 0;
}

.dashboard-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
  line-height: 1.3;
}

.dashboard-card-desc {
  font-size: 13px;
  opacity: 0.65;
  margin: 0;
  line-height: 1.4;
}

.dashboard-card-arrow {
  font-size: 18px;
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.15s;
}

.dashboard-card:hover .dashboard-card-arrow {
  opacity: 0.7;
  transform: translateX(2px);
}

@media (max-width: 600px) {
  .dashboard-card {
    padding: 14px 16px;
  }
  .dashboard-card-icon {
    width: 40px;
    height: 40px;
  }
  .dashboard-card-title {
    font-size: 14px;
  }
  .dashboard-card-desc {
    font-size: 12px;
  }
}
