/* === Footer === */

footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--footer-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  height: 40px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo:hover { opacity: 1; }

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blue-light); }
