/* ── Social Links Bar ──────────────────────────── */

.social-links {
  display: flex;
  gap: 0;
  margin-top: 1.2rem;
  max-width: 620px;
}

.social-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  border: 1px solid var(--border-dim);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.social-link + .social-link {
  border-left: none;
}

.social-link:first-child {
  border-radius: 4px 0 0 4px;
}

.social-link:last-child {
  border-radius: 0 4px 4px 0;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-link:hover + .social-link {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .social-links {
    max-width: 100%;
  }

  .social-link {
    padding: 0.6rem 0;
  }

  .social-link svg {
    width: 22px;
    height: 22px;
  }
}
