/*
  One World Balance shared header:
  thirteen white stars in a full-width blue field.
*/

header:has(> .owb-thirteen-stars) {
  flex-wrap: wrap !important;
  overflow: visible !important;
}

header > .owb-thirteen-stars {
  display: grid !important;
  grid-template-columns:
    repeat(13, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: clamp(0.25rem, 1vw, 1rem) !important;

  flex: 0 0 100vw !important;
  grid-column: 1 / -1 !important;
  order: 999 !important;
  align-self: stretch !important;

  width: 100vw !important;
  max-width: none !important;

  margin:
    0
    0
    clamp(1.5rem, 3vw, 2.5rem)
    calc(50% - 50vw) !important;

  padding:
    clamp(0.9rem, 1.8vw, 1.3rem)
    clamp(1rem, 4vw, 5rem) !important;

  border: 0 !important;
  box-sizing: border-box !important;
  background: #172f50 !important;
}

header > .owb-thirteen-stars span {
  display: block !important;
  color: #ffffff !important;
  font-size:
    clamp(1.2rem, 3vw, 2.75rem) !important;
  font-family:
    Georgia,
    "Times New Roman",
    serif !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

/*
  Mobile portrait correction:
  On narrow portrait screens the header becomes a vertical flex container.
  Prevent 100vw from becoming the star field's vertical flex-basis.
*/
@media
  (max-width: 760px)
  and (orientation: portrait) {

  header > .owb-thirteen-stars {
    flex: 0 0 auto !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    gap: clamp(0.12rem, 0.8vw, 0.25rem) !important;

    margin-bottom:
      clamp(0.9rem, 3vw, 1.2rem) !important;

    padding:
      clamp(0.58rem, 2.5vw, 0.78rem)
      clamp(0.55rem, 3vw, 1rem) !important;
  }

  header > .owb-thirteen-stars span {
    font-size:
      clamp(0.85rem, 4.4vw, 1.2rem) !important;
    line-height: 1 !important;
  }
}

/* BEGIN OWB SITE CONTACT */
.site-contact {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-contact a {
  color: inherit;
  text-underline-offset: 0.18em;
}
/* END OWB SITE CONTACT */
