
/* V0.9.8.5 — correction header mobile iPhone */
@media (max-width: 700px) {
  header {
    min-height: 74px;
    padding: 10px 12px;
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand adsi"
      "nova nova";
    gap: 6px 10px;
    align-items: center;
  }
  header .brand { grid-area: brand; min-width: 0; }
  header .brand img { max-width: 170px; height: auto; }
  header .top-actions { grid-area: adsi; justify-self: end; }
  header .top-actions .ghost { white-space: nowrap; }
  header .nova-mini-link {
    grid-area: nova;
    position: static !important;
    justify-self: end;
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    text-align: right;
    max-width: 100%;
  }
}
