/*
  "Spring direct naar" — a heading and a wrapping row of secondary-button
  shortcuts (the buttons themselves are the shared .btn .btn-secondary).
*/

.jump-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.jump-links__title {
  margin: 0;
  font-family: var(--font-sans-serif);
  font-weight: 700;
}

.jump-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) 1rem;   /* row / horizontal — the flex gap spaces the buttons */
}

/* The shared .btn carries its own right + bottom margins (for inline stacking);
   here the flex gap above handles spacing, so drop them. */
.jump-links__items .btn {
  margin: 0;
}
