/* Links page only: independent columns avoid gaps below shorter groups. */
body.links-page .hub-panel{
  max-width: 1440px;
}

body.links-page .links-layout{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

body.links-page .links-column{
  display: grid;
  gap: 20px;
  min-width: 0;
}

body.links-page .links-group{
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  transform: none;
}

body.links-page .links-group::before{
  display: none;
}

body.links-page .links-group > .meta{
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
}

body.links-page .list{
  gap: 10px;
}

body.links-page .item .name{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.links-page .item .name > span{
  min-width: 0;
}

body.links-page .link-logo{
  display: block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
}

body.links-page .link-logo--wordmark{
  flex-basis: 72px;
  width: 72px;
  background: #183749;
}

body.links-page .item .note{
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
}

body.links-page .aurora-list,
body.links-page .employer-list{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.links-page .aurora-list > .active{
  grid-column: 1 / -1;
  border: 0;
  border-bottom: 1px solid var(--accent-soft);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 0 14px;
  margin-bottom: 2px;
}

body.links-page .aurora-list{
  padding: 14px;
  border: 1px solid var(--accent);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--accent-soft);
}

body.links-page .aurora-list > .active::before{
  display: none;
}

@media (max-width: 850px){
  body.links-page .links-layout{
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px){
  body.links-page .aurora-list,
  body.links-page .employer-list{
    grid-template-columns: minmax(0, 1fr);
  }
}
