/* Social icons layout (inline SVG version) */

/* Basic layout */
.gh-footer-socials {
  display: flex;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.gh-footer-socials__link {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.gh-footer-socials__link:hover { opacity: 1; transform: translateY(-1px); }

/* Inline SVG sizing and color */
.gh-footer-socials__link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

/* A11y helper for non-visual text labels */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
