:root {
  --footer-color: var(--color-white);
  --footer-gap: 1rem;
  --footer-wrapper-gap: 1rem;
}

.footer.section {
  z-index: 30;
  overflow: hidden;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--footer-wrapper-gap);
}

.footer-menu-group {
  display: flex;
  flex-direction: row;
}

.footer-menu-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/**
 * Logo
 */
.footer-logo {
  max-width: 138px;

  & a {
    color: var(--color-white);
  }

  & svg {
    width: 100%;
    height: auto;
  }
}

/**
 * Copyright
 */
.footer-copyright {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: calc(var(--padding-y) - 1rem);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--footer-gap);
}

/**
 * Menu link
 */
.footer-menu-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-color);
  text-decoration: none;
}

.footer-menu-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--footer-gap);
}
