/* © 2026 pluvius.dev. All rights reserved. */

.subtitle {
  color: var(--text-dim);
  font-size: 13px;
  margin: -4px 0 20px;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.puzzle-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
}

.puzzle-card:active { background: var(--cell-selected); }

.puzzle-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.puzzle-info { flex: 1; min-width: 0; }

.puzzle-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}

.puzzle-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.puzzle-arrow {
  color: var(--text-dim);
  font-size: 18px;
}
