@media (min-width: 768px) {
  .site-name-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .site-name-wrapper .custom-badge {
    height: 70px; /* adjust as needed */
    margin: 0; /* let flex gap handle spacing */
  }
}
/* Show badge only on wide desktop screens */
@media screen and (min-width: 1200px) {
  body:not(.top-menu-trigger-visible) .custom-badge {
    display: inline-block;
  }
}

/* Hide badge on smaller widths or in mobile layout */
@media screen and (max-width: 1199px) {
  .custom-badge {
    display: none !important;
  }
}

body.top-menu-trigger-visible .custom-badge {
  display: none !important;
}