/**
 * CRS FOOTER FIXES (Audit Response)
 * Purpose: Reduce footer logo size, improve text hierarchy
 * Audit Issue #3: Footer logo too large (250px → 100px)
 */

/* Reduce footer brand stamp from 250px to 100px */
.footer-signature img,
.brand-stamp {
  max-width: 100px !important;
  height: auto !important;
  width: auto !important;
}

/* Increase footer credit text size */
.footer-credit {
  font-size: 13px !important;
  margin-top: 0.75rem !important;
}

/* Increase footer terminal text size from 10px to 11px */
.footer-grid {
  font-size: 11px !important;
}

/* Better visual balance */
.footer-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
}
