 /* Responsive footer: on small screens break after site name and remove the trailing separator */
      .footer-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.25rem;
      }
      .footer-inner span { line-height: 1; }
      .footer-inner .sep { color: #6c757d; }

      /* Mobile: force rights text onto its own line and hide the separator between site name and rights */
      @media (max-width: 576px) {
        .footer-inner .rights {
          flex-basis: 100%;
          width: 100%;
          margin-top: 0.25rem;
        }
        .footer-inner .sep-2 { display: none; }
      }