/**
 * Brand mark + wordmark, shared by the nav and the auth card header.
 * Separate sheet so the vendor `classical.css` design system stays untouched.
 */

/* `.nav a` in classical.css sets 14px and outranks a bare `.nav-brand`, hence `.nav a.nav-brand`. */
.nav-brand,
.nav a.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 30px;
  line-height: 1;
}

.nav-brand-mark {
  display: block;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
}

@media (max-width: 620px) {
  .nav-brand,
  .nav a.nav-brand {
    font-size: 24px;
  }

  .nav-brand-mark {
    width: 28px;
    height: 28px;
  }
}

.site-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 32px 48px;
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer-disclaimer {
  margin: 0;
  max-width: 56ch;
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}

.site-footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.site-footer-links a {
  color: var(--color-accent);
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--color-accent-700);
}

@media (max-width: 560px) {
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
