.footer {
  background-color: var(--bg-secondary);
}
.footer .footer-logo {
  max-width: 200px;
}
.footer li {
  list-style: none;
  text-align: left;
}
.footer h2 {
  font-size: var(--fs-s);
  color: hsl(var(--clr-200));
  position: relative;
  margin-bottom: 0.5em;
}

.footer h2::after {
  content: "";
  position: absolute;
  width: 2em;
  height: 2px;
  background-color: hsl(var(--clr-200));
  left: 0;
  bottom: -0.5em;
}
.footer h3 {
  font-size: var(--fs-s);
  font-weight: 500;
  color: hsl(var(--clr-200));
}
.footer .post {
  grid-column: 1/2;
  display: flex;
  align-items: start;
  gap: 1em;
  text-align: left;
}
.footer .post img {
  aspect-ratio: 1/1;
  max-width: 4rem;
  flex: 1 0 4rem;
  object-fit: cover;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
}
@media (width < 64em) {
  .footer .logo {
    width: 15rem;
  }
}
