.site-footer {
  margin-top: auto;
  color: var(--color-white);
  background-color: #000;
}

.site-footer__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.site-footer__logo {
  height: 48px;
  width: auto;
  display: block;
}

.site-footer__description {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9ca3af;
}

.site-footer__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 0.5rem;
}

.site-footer__list a,
.site-footer__legal a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__legal a:hover {
  color: #ff0098;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}