.footer {
  background-color: var(--bg-off-white);
  padding: 7.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  width: 100%;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  gap: 4.8rem;
  width: calc(100% - 4.8rem);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    max-width: 172rem;
  }
}

@media (min-width: 1768px) {
  .footer-links {
    width: 100%;
  }
}

.footer-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  width: 16rem;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

@media (min-width: 1024px) {
  .footer-nav {
    flex-direction: row;
    gap: 2.4rem;
    width: 100%;
  }
}

.footer-nav-link {
  text-decoration: none;
  color: var(--black);
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  transition: all 0.3s ease-in-out;
}

.footer-social-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.footer-social-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--black);
}

.footer-social-link:hover .footer-social-icon {
  color: var(--green);
}

.footer-social-link:focus-visible .footer-social-icon {
  color: var(--green);
}

.copyright-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  background-color: var(--off-white);
  width: 100%;
  padding: 1.2rem 2.4rem;
}

@media (min-width: 1024px) {
  .copyright-box {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .copyright-box {
    padding: 1.2rem 10.4rem;
  }
}

.copyright-text {
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

.copyright-link {
  text-decoration: none;
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
