/* Mantém os grupos do cabeçalho separados em ecrãs de computador. */
@media (min-width: 1101px) {
  body > #root header > nav {
    position: static !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center;
    gap: clamp(1.25rem, 2.2vw, 2.5rem);
    margin-left: auto;
    margin-right: clamp(1.25rem, 2.2vw, 2.5rem);
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body > #root header > .head-actions {
    flex: 0 0 auto;
    min-width: 0;
  }

  body > #root header .notification-wrap,
  body > #root header .bell {
    flex: 0 0 auto;
  }

  body > #root header .profile {
    max-width: min(20rem, 24vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  body > #root header {
    padding-inline: 1.5rem;
  }

  body > #root header .ghost {
    display: none;
  }
}
