/* Site-wide footer — canonical markup: scripts/footer-block.html */
.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.75);
  padding: 1.25rem 0;
  font-size: 13px;
}

.footer-inner {
  width: min(100% - 2.5rem, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-inner p {
  margin: 0;
  line-height: 1.4;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
  opacity: 0.85;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
