.dashboard-section {
  margin-top: 2rem;
}

.dashboard-section > h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--text-color);
  text-decoration: none;
}

a.stat-card:hover {
  border-color: var(--primary-color);
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--light-text-color);
}

.stat-card__value {
  font-size: 1.6rem;
  font-weight: 600;
}

.stat-card__sub {
  font-size: 0.8rem;
  color: var(--light-text-color);
}

.dashboard-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-list li:last-child {
  border-bottom: 0;
}

.dashboard-list .muted {
  color: var(--light-text-color);
}
