/* findus.html — only what the shared system genuinely lacks.
   Tokens only, no literal colours. */

/* Numbered walking-times list: the eight landmarks, nearest first.
   Neither .reason (3-col card grid) nor .arrowlist (unordered, no time
   column) fits a ranked list with a trailing duration, so a small
   dedicated component is needed. */
.walklist{
  list-style:none;
}
.walklist li{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  font-weight:600;
}
.walklist li:last-child{
  border-bottom:none;
}
.walklist .num{
  flex:0 0 auto;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.05em;
  color:var(--accent-d);
}
.walklist .time{
  margin-left:auto;
  padding-left:10px;
  color:var(--muted);
  font-size:.85rem;
  font-weight:400;
  white-space:nowrap;
}

/* A single standalone .loccard (not in a .loccards grid) otherwise
   stretches to the full .wrap width; keep it proportioned like a card. */
.findus-card{
  max-width:560px;
}
