/* ===============================
   SOCIAL SHARE BUTTON STYLES
   =============================== */

.social-share {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-share a:hover {
  background-color: #0073aa; /* Default WP blue */
  color: #fff;
}
