/* Footer component styles (extracted from src/components/ui/Footer.astro) */
#footer {
  background-color: var(--m3-color-background);
  padding: 2.4rem 0;
}

#footer-ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.4rem;
}

.footer-link {
  color: var(--m3-color-on-surface-variant);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--m3-color-primary);
  transform: scale(1.1) rotate(-5deg);
}

.svg-icon {
  width: 3.2rem;
  height: 3.2rem;
  fill: currentColor;
}