.footer {
  background-color: var(--color-secondary-background);
  color: var(--color-web-background);
  border-top: 2px solid var(--color-primary-foreground);
  padding: 2.5vw 6vw 1vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
}

.footer-grid section {
  display: flex;
  flex-direction: column;
}

.footer-grid section ul {
  margin-top: auto;
}

.footer h3 {
  margin-bottom: 1.2vw;
  font-size: 1.4vw;
  color: var(--color-primary-foreground);
}

.footer li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  margin-bottom: 0.9vw;
  font-size: 1.05vw;
}

.footer li img {
  width: 1.3vw;
  height: 1.3vw;
  flex-shrink: 0;
}

.footer a:hover {
  color: var(--color-secondary-foreground);
}

.footer-slogan {
  text-align: center;
}

.footer-slogan img {
  width: 8vw;
  margin: auto auto 1vw;
}

.footer-slogan p {
  margin-bottom: 0.9vw;
  font-size: 1.05vw;
}

.footer-copyright {
  margin-top: 2vw;
  padding-top: 1vw;
  border-top: 1px solid var(--color-primary-foreground);
  text-align: center;
  font-size: 0.95vw;
}
