/* Snehal.ai branding footer — follows the dashboard's light/dark theme tokens */
.snehal-footer {
  border-top: 1px solid var(--hairline);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  padding: 12px 20px;
}
.snehal-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.snehal-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.snehal-footer__name {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.snehal-footer__name:hover { color: var(--accent); }
.snehal-footer__tagline {
  color: var(--text-faint);
  font-size: 12px;
}
.snehal-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.snehal-footer__social a {
  color: var(--text-muted);
  display: inline-flex;
  transition: color 0.15s ease;
}
.snehal-footer__social a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .snehal-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .snehal-footer__brand {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}
