:root > * {
  --md-footer-bg-color: #f6f8fb;
  --md-footer-bg-color--dark: #f6f8fb;
  --md-footer-fg-color: #4b5563;
  --md-footer-fg-color--light: #6b7280;
  --md-footer-fg-color--lighter: #9ca3af;
}

.md-footer {
  background: var(--md-footer-bg-color) !important;
  color: var(--md-footer-fg-color);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.md-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 1.4rem 2rem;
}

.md-footer-meta__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.md-footer-meta .md-social {
  gap: 0.65rem;
  justify-content: center;
}

.md-footer-meta .md-social__link {
  color: #0f172a;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  transition: color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.md-footer-meta .md-social__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.md-footer-meta .md-social__link:hover {
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}
