.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.tnr-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tnr-tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-2);
  text-decoration: none;
}

.tnr-tile-icon {
  font-size: 28px;
}

.tnr-tile-title {
  font-weight: 700;
  font-size: 17px;
}

.tnr-tile-desc {
  color: var(--text-dim);
  font-size: 13px;
  flex: 1;
}

.tnr-tile-placeholder {
  opacity: 0.55;
  border-style: dashed;
  cursor: default;
  pointer-events: none;
}

.tnr-tile .tnr-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.snapshot-item {
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.snapshot-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.snapshot-value {
  font-size: 22px;
  font-weight: 700;
}
