/* Footer social media icons styling */
.icons a.muted-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 6px;
  border: 1px solid var(--ngkore-primary);
  /* border-color: var(--primary-color); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  background: white;
  color: #125baf !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icons a.muted-link:hover {
  background: #125baf;
  color: white !important;
  transform: translateY(-2px);
}

.icons a.muted-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Dark theme support for social icons */
body[data-theme="dark"] .icons a.muted-link {
  background: var(--color-background-secondary);
  color: white !important;
  /* border-color: white; */
  border: 1px solid white;
}

body[data-theme="dark"] .icons a.muted-link:hover {
  background: var(--ngkore-primary);
  color: white !important;
  transform: translateY(-2px);
  border: 0px;
}
