/* SP Portal — Footer
   In the reference project, footer{...} and .footer-img live in an inline
   <head><style> block alongside a lot of other unrelated rules (body bg,
   header bg, blockquote, .sub-title, etc.) that belong to out-of-scope
   parts of that page. Pulling just the footer-relevant rules into their
   own file here, matching this project's one-file-per-feature convention.
   .transparency-img (base + the max-width:768px 100% override) already
   exists in header.css from an earlier pass and is reused as-is. */

footer {
  background-color: var(--primary-color);
  margin-top: 16px;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}
.footer-img {
  width: 72%;
}
