.brand-footer {
  background: #fff;
  color: #566071;
  padding: 0 24px;
  overflow: hidden;
}
.footer-row {
  max-width: 1370px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.brand-footer a {
  color: inherit;
  text-decoration: none;
}
.brand-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.brand-footer a:focus-visible {
  outline: 2px solid #387df6;
  outline-offset: 5px;
}
.footer-wordmark {
  display: block;
  width: 80%;
  max-width: 1120px;
  margin: 38px auto 0;
}
.footer-wordmark svg {
  display: block;
  width: 100%;
  overflow: visible;
}
.footer-wordmark text {
  font-family: Inter, Arial, sans-serif;
  font-size: 270px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
@media (max-width: 600px) {
  .brand-footer {
    padding-inline: 16px;
  }
  .footer-row {
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
  }
  .footer-row nav {
    justify-content: center;
    gap: 22px;
  }
  .footer-wordmark {
    width: 88%;
    margin-top: 22px;
  }
}
