.utility {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1390px, calc(100% - 48px));
  height: 72px;
  gap: clamp(18px, 3vw, 36px);
  margin: 0 auto;
}

.utility > a.header-phone-link,
.utility > .header-location {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.utility > a.header-phone-link {
  grid-column: 1;
  font-variant-numeric: tabular-nums;
}

.utility > .header-location {
  grid-column: 3;
  gap: 7px;
}

.utility > .header-location > svg {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.utility > .header-location > span {
  display: inline;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

@media (min-width: 1260px) {
  .nav-shell > .menu {
    display: none;
  }

  .nav-shell > .nav {
    gap: 0;
    margin-left: clamp(20px, 2vw, 32px);
  }

  .nav-shell > .nav a {
    padding: 12px clamp(8px, 1vw, 16px);
  }

  .nav-shell > .nav a:first-child {
    padding-left: 0;
  }

  .nav-shell > .nav a:last-child {
    padding-right: 0;
  }

  .nav-shell > .nav a + a {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 1120px) {
  .utility {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .utility > a.header-phone-link { grid-column: 1; }
  .utility > .header-location { grid-column: 2; }
}

@media (max-width: 760px) {
  .utility {
    width: min(100% - 32px, 620px);
    height: 58px;
    gap: 12px;
    padding: 0;
  }

  .utility > a.header-phone-link,
  .utility > .header-location {
    font-size: clamp(14px, 4vw, 16px);
  }

  .utility > .header-location > svg {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .nav-shell .intermed-logo {
    gap: 12px;
  }

  .nav-shell .intermed-brand-mark {
    flex-basis: 68px;
    width: 68px;
    height: 38px;
  }

  .nav-shell .intermed-logo b {
    font-size: 19px;
  }

  .nav-shell .intermed-logo small {
    margin-top: 5px;
    font-size: 9.5px;
  }
}

@media (max-width: 340px) {
  .nav-shell .intermed-logo {
    gap: 10px;
  }

  .nav-shell .intermed-brand-mark {
    flex-basis: 64px;
    width: 64px;
    height: 36px;
  }

  .nav-shell .intermed-logo b {
    font-size: 18px;
  }

  .nav-shell .intermed-logo small {
    font-size: 9px;
  }
}

@media (max-width: 300px) {
  .utility {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .utility > a.header-phone-link,
  .utility > .header-location {
    font-size: 12px;
  }

  .utility > .header-location > svg {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }
}
