/*************************************************
  ARTICLE SHARE BAR
*************************************************/

.share-bar {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ===============================
   Share Buttons
   =============================== */
.share-bar a {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;

  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, opacity .25s ease;
}

.share-bar a:hover {
  transform: scale(1.12);
  opacity: .9;
}

/* Networks */
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-x  { background: #000000; }

/* ===============================
   Mobile
   =============================== */
@media (max-width: 600px) {
  .share-bar a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}