.share-panel {
  margin: 2.5rem 0;
  padding: 1.6rem 1.8rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.share-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.share-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.share-subtitle {
  margin: 0;
  color: var(--muted, #4b5563);
  font-size: 0.95rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.share-button {
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  color: var(--ink, #121417);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.share-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.3);
}

.share-button--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1fb45a;
}

.share-button--facebook {
  background: #1877f2;
  color: #fff;
  border-color: #0f63d6;
}

.share-button--linkedin {
  background: #0a66c2;
  color: #fff;
  border-color: #0858a8;
}

.share-button--x {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 640px) {
  .share-panel {
    padding: 1.2rem;
  }
  .share-button {
    width: 100%;
    text-align: center;
  }
}
