/* static/css/footer.css */
.site-footer {
  background: #f8f8f8;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  color: #555;
  text-align: center;
}

.site-footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.site-footer .footer-sections a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-sections a:hover {
  color: var(--hover-color);
}

.site-footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer .footer-logos img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
  mix-blend-mode: multiply;
}
.site-footer .footer-logos img:hover {
  opacity: 1;
}

.site-footer .footer-copy {
  font-size: 0.875rem;
  color: #777;
}
