/* 全站统一页脚（站群模板） */
.site-footer {
  margin-top: 28px;
  background: #ff4a93;
  color: #fff;
}
.site-footer .footer-inner {
  padding: 28px 18px 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  margin-bottom: 22px;
}
.site-footer .footer-col h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.site-footer .footer-col p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-links li {
  margin-bottom: 6px;
}
.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid transparent;
}
.site-footer .footer-links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 16px;
}
.site-footer .footer-copy {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer .footer-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-meta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-meta a:hover {
  text-decoration: underline;
}
.site-footer .footer-sep {
  margin: 0 8px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* 文章页容器较窄时与 .wrap 对齐 */
body .site-footer .footer-inner {
  box-sizing: border-box;
}
