







.links-group { margin-bottom: var(--s4, 1.5rem); }

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: var(--s2, .5rem);
}

.link-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  
  min-height: 44px;
  padding: .6rem .8rem;
  border: var(--hair, 1px) solid var(--rule);
  border-radius: var(--radius-panel, 8px);
  text-decoration: none;
  color: inherit;
}




.link-card:hover,
.link-card:focus-visible {
  background: var(--bg-row);
  border-color: var(--rule-strong);
}

.link-card__logo { flex: 0 0 auto; display: grid; place-items: center; }
.link-card__logo svg { width: 1.4rem; height: 1.4rem; }




.link-card--tg .link-card__logo { color: #2aabee; }
.link-card--ig .link-card__logo { color: #e1306c; }



.link-card__body { display: flex; flex-direction: column; min-width: 0; text-align: left; }
.link-card__name { font-weight: 600; }
.link-card__meta {
  font-size: .8rem;
  color: var(--text-muted);          
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
