/* ── News feed personalisation onboarding ─────────────────────────────
   4-step modal shown once on first login for brand-new accounts.
   Reuses .po-* classes from premium-onboarding.css for shared structure.
   This file only defines elements unique to this modal.
──────────────────────────────────────────────────────────────────────── */

/* Region tiles: 2-column grid */
.no-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 1.1rem;
}

/* Category tiles: 3-column grid */
.no-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.1rem;
}

/* Selectable tile button */
.no-tile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  background: var(--surface2);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.no-tile:hover { border-color: var(--accent); }
.no-tile.selected {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
}

.no-tile-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  line-height: 1.2;
}

.no-tile-check {
  width: 18px;
  height: 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.no-tile.selected .no-tile-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Split actions row: skip (left) + continue (right) */
.po-actions-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .no-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
