/* Assets/css/footer.css
   - Footer ONLY
   - Clean, centered, stable across screen sizes
   - Matches reference screenshot
*/

.footer{
  margin-top: 18px;
}

/* Centered card with max-width like old site */
.footer__card{
  max-width: 980px;
  margin: 0 auto;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.16);

  padding: 14px 16px;
  text-align: center;
}

/* Footer links row */
.footer__links{
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: #0f3a86;
  line-height: 1.4;
}

/* Individual links */
.footer__links a{
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 8px;
  white-space: nowrap;

  transition: background .15s ease, color .15s ease;
}

/* Hover / focus */
.footer__links a:hover,
.footer__links a:focus{
  text-decoration: underline;
  background: rgba(15, 58, 134, 0.08);
}

/* Pipe separators */
.footer__links span{
  opacity: 0.55;
  font-weight: 900;
  user-select: none;
  white-space: nowrap;
}

/* Copyright text */
.footer__copy{
  margin: 6px 0 0;
  font-size: 12px;
  color: #0f172a;
  font-weight: 700;
}
