.site-footer a:hover {
  transition: 0.2s ease-in-out;
  color: rgba(15, 23, 42, 0.7);
}

.site-footer {
  background: var(--neutral-50);
  border-top: 0.0625rem solid var(--neutral-100);
  padding: 3.5rem 0 1.75rem;
}

.site-footer .container {
  padding: 0 6%;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 0.0625rem solid var(--neutral-100);
}

.site-footer .footer-logo img {
  height: 2.125rem;
  width: auto;
  display: block;
}

.site-footer .footer-brand p {
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 26.25rem;
}

.site-footer h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
  font-family: 'Sora', sans-serif;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
}

.site-footer .footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.site-footer .footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 1180px) {
  .site-footer .container {
    padding: 0;
  }
}

@media (max-width: 980px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.375rem;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
  }
}