:root {
  --primary: #274472;
  --background: #F6F8FB;
  --gold: #D4AF37;
  --text: #333;
}

.share-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}

.share-container a {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--text);
  transition: color 0.3s;
}

.share-container a:hover {
  color: var(--primary); /* LinkedIn blue on hover */
}
