/* Footer — version minimaliste : copyright + lien FFYB. */
.footer {
  background: var(--marine-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.5rem 0;
  font-size: 0.92rem;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.7); }
.footer__bottom a:hover { color: #fff; }

/* FFYB long sur desktop, court sur mobile */
.footer__bottom .ffyb-short { display: none; }
@media (max-width: 640px) {
  .footer__bottom .ffyb-long { display: none; }
  .footer__bottom .ffyb-short { display: inline; }
}
