/* Malexera v5.3.2 — responsive flat social sharing */
.mlx-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.mlx-social-label {
  margin-right: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mlx-social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.mlx-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mlx-social-link:hover,
.mlx-social-link:focus-visible {
  border-color: var(--warm);
  background: var(--brass-soft);
  color: var(--warm);
  outline: none;
  transform: translateY(-2px);
}

.mlx-social-link:active {
  transform: translateY(0) scale(.96);
}

.mnav .mlx-social {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  justify-content: center;
  width: 100%;
  margin: 16px 0 6px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.mnav .mlx-social-label {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  text-align: center;
}

.mnav .mlx-social-link {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

@media (max-width: 640px) {
  footer .mlx-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  footer .mlx-social-label {
    flex-basis: 100%;
    margin: 0 0 2px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mlx-social-link {
    transition: none;
  }
}
