/* =========================================================================
   Stations list page
   ========================================================================= */

.stations-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stations-row > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 120ms ease;
}

.stations-row > a:hover {
  background: var(--bg-hover);
}

.stations-number {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
  min-width: 3ch;
  text-align: right;
}

.stations-name {
  flex: 1;
  font-weight: 500;
}

.stations-name small {
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 0.25rem;
}

.stations-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .stations-row > a {
    flex-wrap: wrap;
  }
  .stations-tags {
    flex-basis: 100%;
    padding-left: calc(3ch + 0.75rem);
  }
}
