/**
 * Quick task 260521-gp3: responsive header phone number fix
 *
 * Problem: at narrow desktop viewports the header phone number
 * "+46 762 74 85 84" wraps each two-digit chunk to its own line
 * (without nowrap) or clips on the right (with nowrap + shrink).
 *
 * Strategy: keep nowrap as a safety net, then just hide the block
 * whenever the layout gets cramped (<= 1400px). Mobile menu still
 * exposes contact info via the WhatsApp CTA + Support Center link.
 */

.header-support-center__phone,
.header-support-center__phone a,
.header-support-center__text {
  white-space: nowrap !important;
}

@media (max-width: 1400px) {
  .header-support-center {
    display: none !important;
  }
}
