/* Dashboard-specific overrides — inherits service-shell.css */

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.dash-card {
  background: #fff;
  border: 1px solid #e2ddd8;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.dash-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border-color: #bf5700;
}

.dash-card-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dash-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
}

.dash-card-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.dash-card-arrow {
  font-size: 0.78rem;
  color: #bf5700;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .dash-grid { grid-template-columns: 1fr; }
}
