:host {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #22222254; /* fond sombre */
  color: #dddddd; /* texte clair */
  line-height: 0.9;
  padding: 0; 
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}
.footer-column > div {
  display: flex;
  align-items: flex-start;   /* 🔑 */
  gap: 6px;
}


.footer-static {
  text-align: left;
}

.footer-info {
  color: #aaa;
  padding: 7px 0px 10px 15px;
  font-size: 0.9rem;
}

.footer-column strong {
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-column span {
  white-space: normal;
  word-break: break-word;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {flex-direction: column;}

  .footer-static {
    text-align: left;
    margin-top: 10px;
  }
  .footer-info {
    padding-top: 7px;
  }
}

