/* ================================================
   FOOTER
   ================================================ */
.page-footer {
  background: #1a1f25;
  color: rgba(255,255,255,0.6);
  padding: 24px 0;
  margin-top: 24px;
}

.page-footer__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.page-footer__inner p {
  font-size: 0.76rem;
}

.page-footer__links {
  display: flex;
  gap: 20px;
}

.page-footer__links a {
  font-size: 0.76rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.page-footer__links a:hover {
  opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 550px) {
  .page-footer__inner { flex-direction: column; text-align: center; }
}
