/* wgf-zone.css - zone detail Landmarks list (area_poi points of interest).
   Tokens only; no art (area_poi.icon is an atlas index, not a FileDataID) - name + the
   verbatim datamine description. Reduced-motion respected via the shared card transitions. */

.wgf-zone-pois {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-2);
}

.wgf-zone-poi {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--wgf-border-neutral);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--wgf-panel-2), var(--wgf-panel-1));
}

.wgf-zone-poi__name {
  font-family: var(--font-display);
  font-size: var(--text-md);
  letter-spacing: .03em;
  color: var(--wgf-gold-bright);
  line-height: 1.2;
}

.wgf-zone-poi__desc {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--wgf-muted);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .wgf-zone-pois { grid-template-columns: 1fr; }
}
