.footer {
  background-color: var(--brand-strong);
  color: var(--text-on-primary);
  padding: 3rem 0 2rem;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;

  @media (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 480px) {
    grid-template-columns: 1fr;
  }
}

.footer-heading {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;

  a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-sm);

    &:hover {
      color: white;
      text-decoration: underline;
    }
  }
}

.footer-container .social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0;
  list-style: none;

  li {
    list-style: none;

    svg {
      color: rgba(255, 255, 255, 0.8);
    }

    &:hover svg {
      color: white;
    }
  }
}

.footer-copyright {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}
