/* Shared header geometry for every public page. */
.header__inner {
  width: 100%;
}

.header__logo {
  flex: 0 0 223px;
}

.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header__nav-list {
  gap: 0 !important;
}

.header__nav-item {
  padding-inline: 5px !important;
}

.header__nav-link {
  white-space: nowrap;
}

.header__actions {
  flex: 0 0 200px;
}

/* Calculator has an extra wrapper around the CTA; keep it visually identical. */
.header__cta-wrap {
  height: auto;
}

.header__cta-wrap::after {
  display: none;
}

@media (max-width: 768px) {
  .header__inner {
    width: 100%;
  }

  .header__logo {
    flex: 0 0 89px;
  }

  .header__nav {
    flex: none;
    display: block;
  }

  .header__actions {
    flex: 0 0 auto;
  }
}
