/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #F5F3F2;
  padding-top: 100px;
  overflow: hidden;
}

/* Social icons row */
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 62px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer__social-link:hover {
  opacity: 0.75;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Big wordmark */
.footer__wordmark {
  display: block;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  user-select: none;
  pointer-events: none;
}

.footer__wordmark svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Bottom bar */
.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  font-size: 0.8rem;
  color: #6b6b6b;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  white-space: nowrap;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  color: #6b6b6b;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer__links a:hover {
  color: #191919;
}

@media (max-width: 600px) {
  .footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer__links {
    justify-content: center;
    gap: 16px;
  }
}
