/* Contenedor centrado y ancho controlado */
.eh-container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* .eh-footer { outline: 2px solid magenta; outline-offset: 6px; }
*/

/* Footer base */
.eh-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: .95;
}


/* Grid 1→2 columnas */
.eh-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .eh-footer__grid {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: start;
  }
}

/* Columnas y títulos */
.eh-footer__col { min-width: 0; }
.eh-footer__title { margin: 0 0 .5rem; font-size: .95rem; font-weight: 700; opacity: .9; }
@media (min-width: 768px) { .eh--right { text-align: right; } }

/* Lista de enlaces */
.eh-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.eh-footer__link { text-decoration: none; color: inherit; }
.eh-footer__link:hover { text-decoration: underline; }

/* Aviso (wrap forzado y ancho legible) */
.eh-footer__disclaimer {
  margin: 0;
  color: var(--secondary);
  line-height: 1.5;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 60ch;
}
@media (min-width: 768px) { .eh-footer__disclaimer { text-align: right; margin-left: auto; } }
