/* foot.css */
.site-footer {
  background: var(--BgFooter);
  border-top: 1px solid var(--BorderMid);
  padding: 40px 0 32px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-footer__logo:hover { opacity: 0.8; }
.site-footer__logo-img { height: 28px; width: auto; object-fit: contain; }
.site-footer__logo-text {
  font-family: var(--FontTitle);
  font-size: 18px;
  font-weight: 800;
  color: var(--Theme);
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.site-footer__link {
  font-size: 13px;
  color: var(--TextSecondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__link:hover { color: var(--Theme); }
.site-footer__copy {
  font-size: 13px;
  color: var(--TextMuted);
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer { padding: 32px 0 24px; }
  .site-footer__nav { gap: 8px 16px; }
}
