/* Shared social icon row — used in the header and footer of index / guide / onboarding. */
.wc-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wc-social a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--muted, #7f8ca3);
  border: 1px solid transparent;
  transition: color .2s, background-color .2s, border-color .2s;
}
.wc-social a:hover,
.wc-social a:focus-visible {
  color: var(--accent, #4da3ff);
  background: rgba(77, 163, 255, .10);
  border-color: rgba(77, 163, 255, .28);
}
.wc-social a:focus-visible {
  outline: 2px solid var(--accent, #4da3ff);
  outline-offset: 2px;
}
.wc-social svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}
/* Footer variant sits under the columns with a little breathing room. */
.wc-social-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wc-social-footer .wc-social-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted, #7f8ca3);
}
@media (max-width: 860px) {
  .wc-social-topbar { display: none; }
}
