/* ============================================================================
   SIDEBAR SHARE - Blog V2
   Share Card - Enhanced with Platform Colors
   Extracted from blog-v2.css
   ============================================================================ */

.share-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2, 12px);
}

.share-btn-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-cartoon, 18px);
  border: 2px solid var(--c-border);
  background: var(--c-bg-alt);
  color: var(--c-text);
  cursor: pointer;
  transition: all var(--motion-med) var(--motion-curve);
  box-shadow: 0 2px 0 var(--c-border);
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.share-btn-vertical::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--motion-med) var(--motion-curve);
}

.share-btn-vertical:hover {
  transform: translateX(8px);
  box-shadow: 0 3px 0 var(--c-border), 0 6px 0 #042b33;
}

.share-btn-vertical:active {
  transform: translateX(4px);
  box-shadow: 0 2px 0 var(--c-border);
}

/* Platform specific colors on hover */
.share-btn-vertical[data-share-platform="twitter"]:hover {
  border-color: #1da1f2;
  background: #1da1f2;
  color: white;
  box-shadow: 0 3px 0 #1570b8, 0 6px 0 #042b33;
}

.share-btn-vertical[data-share-platform="linkedin"]:hover {
  border-color: #0077b5;
  background: #0077b5;
  color: white;
  box-shadow: 0 3px 0 #005885, 0 6px 0 #042b33;
}

.share-btn-vertical[data-share-platform="copy"]:hover {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-bg);
  box-shadow: 0 3px 0 var(--c-border), 0 6px 0 #042b33;
}

.share-btn-vertical svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .share-btn-vertical {
    transition: none;
  }
  .share-btn-vertical:hover,
  .share-btn-vertical:active {
    transform: none;
  }
}
