/* ================= SHARE STRIP (EDITORIAL STYLE) ================= */

.share-strip {
  display: flex;
  flex-direction: column;
  width: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Individual buttons */
.share-item {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

/* Remove last divider */
.share-item:last-child {
  border-bottom: none;
}

/* Platform subtle base shades */
.share-item.whatsapp {
  background: #0f172a;
}
.share-item.facebook {
  background: #111827;
}
.share-item.x {
  background: #020617;
}
.share-item.linkedin {
  background: #0b1220;
}

/* Hover effect (gold glow + lift) */
.share-item:hover {
  background: linear-gradient(135deg, var(--hp-gold-1), var(--hp-gold-2));
  color: #111;
  transform: translateX(4px);
}

/* Icon styling */
.share-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform 0.25s ease;
}

/* Slight boost for some icons */
.scale-fix {
  transform: scale(1.08);
}

/* Hover polish */
.share-item:hover .share-icon {
  transform: scale(1.15);
}

/* Special case (larger FB icon) */
.facebook-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Letter-based icons */
.share-item i {
  font-style: normal;
  letter-spacing: 0.5px;
}
