/* Aumenta o logo no topo do painel.
   A estrutura real (conferida no código-fonte do Homepage) é:
   .information-widget-logo > .resolved > img
   O <img> usa estilo inline para largura/altura, por isso o !important
   é obrigatório aqui — CSS sem !important nunca vence estilo inline. */

.information-widget-logo .resolved,
.information-widget-logo .resolved img {
  max-width: none !important;
  max-height: none !important;
}

.information-widget-logo .resolved img {
  width: 110px !important;
  height: auto !important;
}
