/* Social icons in topbar */
.topbar__socials {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--topbar-fg, #5c6570);
  border-radius: 999px;
  text-decoration: none;
  opacity: 1;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.topbar__social:hover,
.topbar__social:focus-visible {
  color: var(--tf-ring, var(--color-accent, #f36c00));
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.topbar__social:focus-visible {
  outline: var(--focus-ring-width, 2px) solid var(--focus-ring-color, currentColor);
  outline-offset: var(--focus-ring-offset, 2px);
}

.topbar__social .vul-icon,
.topbar__social .topbar__icon,
.topbar__social svg {
  --icon-size: 16px;
  width: 16px;
  height: 16px;
  display: block;
  opacity: 1;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.topbar__divider {
  width: 1px;
  height: 14px;
  margin: 0 8px 0 6px;
  background: currentColor;
  opacity: 0.22;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .topbar__socials {
    margin-right: 0;
  }

  .topbar__social {
    width: 26px;
    height: 26px;
  }
}
