/* Shared SnipeSearch network footer */
footer {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 28px !important;
  max-width: 1100px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* Must beat page-level `nav { display:flex; align-items:center }` */
.site-footer-links {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start !important;
  gap: 28px 24px;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(61, 220, 110, 0.12);
}

.sfl-col {
  align-self: start;
  min-width: 0;
}

.sfl-col h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3ddc6e;
  margin: 0 0 12px;
}

.sfl-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sfl-col a {
  color: #8a9a8e;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.35;
}

.sfl-col a:hover {
  color: #3ddc6e;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

@media (max-width: 980px) {
  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start !important;
  }
}

@media (max-width: 560px) {
  .site-footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
