.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.album-slot {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 4px;
}

.card-locked {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  font-size: 32px;
  color: var(--muted);
}

.repeated-view {
  margin-top: 24px;
}

.repeated-count {
  background: var(--gold);
  color: #000;
  font-weight: bold;
}
