.wp-block-biederman-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wp-block-biederman-social-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.wp-block-biederman-social-links .social-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.wp-block-biederman-social-links .social-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.wp-block-biederman-social-links .social-link[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.wp-block-biederman-social-links .social-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wp-block-biederman-social-links .social-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wp-block-biederman-social-links .social-link__text {
  white-space: nowrap;
}

/* Platform-specific colors on hover - optional enhancement */
.wp-block-biederman-social-links .social-link--instagram:hover {
  color: var(--text);
}

.wp-block-biederman-social-links .social-link--youtube:hover {
  color: var(--text);
}

.wp-block-biederman-social-links .social-link--tiktok:hover {
  color: var(--text);
}

.wp-block-biederman-social-links .social-link--facebook:hover {
  color: var(--text);
}

