/* ────────────────────────────────
   PatriotChat Footer
   Cleaned 2025-07-02
──────────────────────────────── */

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem; /* 14px */
  }
  
  /* Icon link row */
  .footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
  
  /* Shrink text + gap below 380px */
  @media (max-width: 380px) {
    .site-footer {
      font-size: 0.75rem; /* 12px */
    }
    .footer-links {
      gap: 0.5rem;
    }
  }
  
  /* Finally wrap only if viewport is very narrow */
  @media (max-width: 330px) {
    .site-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  /* Icon link style */
  .footer-links a {
    display: inline-flex;
    align-items: center;
    color: #ccc;
    padding: 0.25rem;
    transition: color 0.2s;
    position: relative;
  }
  .footer-links a:hover {
    color: #fff;
  }
  
  /* Tooltip (desktop only) */
  .footer-links a:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e1e1e;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
  }
  
  footer.site-footer {
    margin-top: 3rem;
    padding: 1rem 0;
    background-color: #111;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 5rem; /* prevents cookie bar overlap */
  }
  