/* =========================================================
   BSA Footer
   ========================================================= */

.bsa-footer {
  padding: 3rem 0 3.5rem;
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bsa-footer-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2.25rem 1.9rem;
  background: #050608;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 45px rgba(0,0,0,0.75);
  color: #f7f7f7;
}

/* Grid layout */
.bsa-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: flex-start;
  text-align: center;
}

.bsa-footer-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.bsa-footer-col p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.9rem;
}

/* About column */
.bsa-footer-about p {
  max-width: 540px;
  margin: 0 auto;
}

/* Links */
.bsa-footer a {
  color: #a6c8ff;
  font-weight: 500;
  text-decoration: none;
}

.bsa-footer a:hover {
  text-decoration: underline;
}

/* Divider */
.bsa-footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin: 1.75rem 0 1.25rem;
}

/* Bottom row */
.bsa-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(247,247,247,0.9);
}

.bsa-footer-bottom span {
  white-space: nowrap;
}

/* Ensure footer text stays light */
.bsa-footer,
.bsa-footer * {
  color: #f7f7f7;
}

/* Mobile */
@media (max-width: 768px) {
  .bsa-footer-card {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 18px;
  }

  .bsa-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bsa-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .bsa-footer-bottom span {
    white-space: normal;
  }
}
