/* LINKS PAGE */
/* base: mobile-first stacking */
.links-view {
  max-width: 28rem; /* optional, keeps it narrow */
  margin: 0 auto;
  padding: 1rem;
}

.links-view h3 {
  margin: 0 0 0.75rem 0;
}

.links-view h3 a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--link-border, #cfcfcf);
  background: var(--link-bg, #f5f5f5);
  color: var(--link-text, #222);
  border-radius: 0.5rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: 0.15s ease-in-out;
}

/* hover/focus: go "inset" and change colors */
.links-view h3 a:hover,
.links-view h3 a:focus {
  border-color: var(--link-border-hover, #aaa);
  background: var(--link-bg-hover, #e9e9e9);
  color: var(--link-text-hover, #000);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.08);
}

/* simple desktop enhancement: widen a bit */
@media (min-width: 768px) {
  .links-view {
    max-width: 32rem;
  }
}
/* END LINKS PAGE */
