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

.site-footer {
  background-color: #111;
  color: #888;
  text-align: center;
  font-size: 0.9rem;
  padding: 1.25rem 1rem 1.75rem;
  margin-top: 3rem;
  margin-bottom: 5rem; /* prevents cookie banner overlap */
}
.site-footer a { color: #ccc; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.footer-meta {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem;
}

.footer-salute a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.footer-salute img{
  width: 28px;
  height: 28px;
  display: inline-block;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem 2rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.footer-column {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  text-align: left;
}

.footer-column li + li { margin-top: 0.35rem; }

.footer-column a {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 420px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
