/* Keep every service link visible without a horizontally scrolling carousel. */
@media (max-width: 680px) {
  .landing-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .landing-links a {
    min-width: 0;
    width: auto;
    gap: 8px;
    white-space: normal;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .landing-links a > * { min-width: 0; }
}
