.footer {
  background-color: var(--bg-secondary);
}
.footer .custom-logo {
  width: 8rem;
}
.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: 8rem;
  flex: 1 0 4rem;
  object-fit: cover;
}
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
}
@media (width < 1024px) {
  .footer .custom-logo {
    width: 13rem;
  }
}
