/* Shared header contact bar: centered with balanced spacing on wide
   screens and stacked cleanly when the available width is limited. */

.wtap-topbar {
  max-width: 80rem;
  width: 100%;
  justify-content: center;
  column-gap: clamp(2rem, 3.5vw, 3.5rem);
  row-gap: .4rem;
  padding-block: .55rem;
  text-align: center;
}

.wtap-topbar > p {
  white-space: nowrap;
  line-height: 1.5;
}

.wtap-topbar > p:first-child {
  flex: 0 1 auto;
}

.wtap-topbar > p.flex {
  flex: 0 0 auto;
  justify-content: center;
  column-gap: clamp(1.5rem, 2.5vw, 2.5rem);
  row-gap: .25rem;
}

@media (max-width: 760px) {
  .wtap-topbar {
    flex-direction: column;
    align-items: center;
    row-gap: .35rem;
    padding-block: .65rem;
  }

  .wtap-topbar > p {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .wtap-topbar > p.flex {
    flex-direction: column;
    gap: .15rem;
  }
}
