.site-search-button {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 37, 74, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 22px rgba(44, 76, 124, .10);
  color: var(--navy, #10254a);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.spotlight-tools .site-search-button {
  width: auto;
  min-width: 0;
  min-height: 34px;
  height: 34px;
  margin-left: 0;
  padding: 6px 11px;
  font-size: 12px;
  box-shadow: 0 5px 14px rgba(44, 76, 124, .09);
}

.spotlight-tools .site-search-button svg {
  width: 15px;
  height: 15px;
}

.site-search-button:hover {
  background: rgba(255, 255, 255, .96);
  color: var(--teal-deep, #0b6871);
}

.site-search-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-search-button.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.94);
}

@media (max-width: 1120px) {
  .site-search-button {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .site-search-button span {
    display: none;
  }

  .spotlight-tools .site-search-button {
    width: 34px;
    min-width: 34px;
    padding: 0;
  }
}

@media (max-width: 820px) {
  .site-search-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .spotlight-tools .site-search-button {
    width: 34px;
    min-width: 34px;
    height: 32px;
    min-height: 32px;
    margin-left: 0;
  }

  .menu-button {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .site-search-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }


  .spotlight-tools .site-search-button {
    width: 32px;
    min-width: 32px;
    height: 30px;
    min-height: 30px;
  }
}

.header-utility-strip {
  min-height: 44px;
  padding: 5px max(16px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(16, 37, 74, .08);
  background: rgba(255, 255, 255, .9);
}

.spotlight-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

@media (prefers-reduced-motion: reduce) {
  .site-search-button {
    transition: none;
  }
}
