.site-footer {
  background: var(--bg-light-green);
  border-top: 1px solid var(--border);
  padding: 40px 20px 20px;
  color: var(--text-muted);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 600;
}

.footer-section h4 {
  margin: 0 0 12px 0;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.footer-slogan {
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
}

.footer-section p {
  margin: 8px 0;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.version-info {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer-admin-link {
  margin-top: 8px;
  font-size: 0.85rem;
}

.footer-admin-link a {
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-admin-link a:hover {
  opacity: 1;
  text-decoration: underline;
}
