/* Shared header search and search-results page.
 * Loaded after site.css so legacy shared-chrome rules cannot override it. */
body.search-open {
  overflow: hidden;
}

.header-search-button {
  width: 2.25rem !important;
  height: 2.25rem !important;
  min-width: 2.25rem !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center;
  align-self: center;
  color: #222;
  background: #fff;
  border: .0625rem solid #dedede;
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.header-search-button svg {
  width: 1rem !important;
  height: 1rem !important;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-button:hover,
.header-search-button[aria-expanded="true"] {
  color: #e3540b;
  background: #fff8f3;
  border-color: #e3540b;
  box-shadow: 0 .25rem .875rem rgb(227 84 11 / 15%);
}

.header-search-button:focus-visible,
.header-search__clear:focus-visible,
.header-search__close:focus-visible,
.search-page__submit:focus-visible {
  outline: .125rem solid #e3540b;
  outline-offset: .1875rem;
}

.header-search {
  position: fixed;
  z-index: 998;
  inset: 4rem 0 0;
  background: transparent;
}

.header-search[hidden],
.header-search [hidden] {
  display: none !important;
}

.header-search__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgb(12 18 22 / 48%);
  border: 0;
  backdrop-filter: blur(.2rem);
  cursor: default;
}

.header-search__surface {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 72%);
  border-top: .0625rem solid #ededed;
  border-bottom: .0625rem solid #e5e5e5;
  box-shadow: 0 1.25rem 3.5rem rgb(0 0 0 / 18%);
}

.header-search__inner {
  position: relative;
  width: min(70rem, calc(100% - 3rem));
  margin: 0 auto;
}

.header-search__eyebrow {
  margin: 0 0 .75rem;
  color: #e3540b;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.header-search__inner h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.header-search__intro {
  margin: .75rem 0 0;
  color: #747474;
  font-size: .9375rem;
  line-height: 1.75;
}

.header-search form {
  width: min(50rem, 100%);
  min-height: 0;
  margin: 2rem 0 0;
  border-radius: .5rem;
  box-shadow: 0 .75rem 2.25rem rgb(17 24 32 / 9%);
}

.header-search__field {
  position: relative;
  min-width: 0;
}

.header-search__field > svg {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #7d7d7d;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  transform: translateY(-50%);
}

.header-search input {
  width: 100%;
  height: 4rem;
  min-width: 0;
  padding: 0 3rem 0 3.375rem;
  color: #171717;
  background: #fff;
  border: .0625rem solid #dedede;
  border-radius: .5rem;
  outline: 0;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.header-search input::-webkit-search-cancel-button {
  display: none;
}

.header-search input:focus {
  border-color: #e3540b;
  box-shadow: inset 0 0 0 .0625rem #e3540b;
}

.header-search input::placeholder {
  color: #999;
}

.header-search__clear {
  position: absolute;
  top: 50%;
  right: .625rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: grid;
  place-items: center;
  color: #777;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
}

.header-search__clear:hover {
  color: #e3540b;
  background: #eee;
}

.header-search__close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: grid;
  place-items: center;
  color: #555;
  background: #fff;
  border: .0625rem solid #dedede;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: color .2s ease, background-color .2s ease;
}

.header-search__close svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  transform: translate(-50%, -50%);
}

.header-search__close:hover {
  color: #e3540b;
  background: #fff8f3;
  border-color: #e3540b;
}

.header-search__hint {
  margin: .75rem 0 0;
  color: #999;
  font-size: .75rem;
}

.search-page {
  min-height: 70vh;
  padding: 4rem 0 6rem;
  background: #fff;
}

.search-page__hero {
  padding: 3.75rem 0 3.25rem;
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 72%);
  border-bottom: .0625rem solid #ededed;
}

.search-page__inner {
  width: min(70rem, calc(100% - 3rem));
  margin: 0 auto;
}

.search-page__eyebrow {
  margin: 0 0 .625rem;
  color: #e3540b;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.search-page h1 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.75rem, 2.25vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.search-page__intro {
  margin: .75rem 0 0;
  color: #747474;
  font-size: .875rem;
  line-height: 1.8;
}

.search-page__form {
  width: min(42rem, 100%);
  margin: 1.75rem 0 0;
}

.search-page__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.25rem;
  border-radius: .375rem;
  box-shadow: 0 .5rem 1.5rem rgb(17 24 32 / 8%);
}

.search-page__row > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  color: #7d7d7d;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  transform: translateY(-50%);
}

.search-page__row input {
  width: 100%;
  height: 3.25rem;
  min-width: 0;
  padding: 0 1rem 0 2.875rem;
  color: #171717;
  background: #fff;
  border: .0625rem solid #dedede;
  border-right: 0;
  border-radius: .375rem 0 0 .375rem;
  outline: 0;
  font-size: .9375rem;
}

.search-page__row input:focus {
  border-color: #e3540b;
  box-shadow: inset 0 0 0 .0625rem #e3540b;
}

.search-page__submit {
  height: 3.25rem;
  padding: 0 1rem;
  color: #fff;
  background: #e3540b;
  border: .0625rem solid #e3540b;
  border-radius: 0 .375rem .375rem 0;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s ease;
}

.search-page__submit:hover {
  background: #c94700;
}

.search-page__results {
  padding-top: 3.75rem;
  transition: opacity .16s ease;
}

.search-page__results.is-loading {
  opacity: .48;
  pointer-events: none;
}

.search-page__results-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.125rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: .0625rem solid #dedede;
}

.search-page__results-header h2 {
  margin: 0;
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
}

.search-page__results-header p {
  margin: 0;
  color: #888;
  font-size: .8125rem;
}

.search-page__results-header strong {
  color: #e3540b;
  font-weight: 500;
}

.search-results {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.search-results li {
  padding: 0;
  border-bottom: .0625rem solid #ededed;
}

.search-results__link {
  position: relative;
  padding: 1.625rem 3.5rem 1.625rem 0;
  display: block;
  transition: padding-left .2s ease, background-color .2s ease;
}

.search-results__link::after {
  position: absolute;
  top: 50%;
  right: .75rem;
  color: #aaa;
  content: "→";
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: color .2s ease, right .2s ease;
}

.search-results__link:hover {
  padding-left: .75rem;
  background: #fafafa;
}

.search-results__link:hover::after {
  right: .25rem;
  color: #e3540b;
}

.search-results__title {
  display: block;
  color: #222;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.search-results__description {
  max-width: 52rem;
  margin: .625rem 0 0;
  color: #777;
  font-size: .875rem;
  line-height: 1.75;
}

.search-page__empty {
  padding: 4rem 1.5rem;
  color: #777;
  background: #fafafa;
  border: .0625rem solid #ededed;
  text-align: center;
  font-size: .9375rem;
  line-height: 1.8;
}

.search-page__tabs {
  margin: 0 0 2.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.search-page__tabs a {
  flex: 0 0 auto;
  padding: .65rem 1rem;
  color: #666;
  background: #f6f6f6;
  border: .0625rem solid #e8e8e8;
  border-radius: 999px;
  font-size: .875rem;
  line-height: 1;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.search-page__tabs a:hover,
.search-page__tabs a.is-active {
  color: #fff;
  background: #e3540b;
  border-color: #e3540b;
}

.search-page__tabs span {
  margin-left: .25rem;
  opacity: .75;
}

.search-page__groups {
  display: grid;
  gap: 4rem;
}

.search-result-group__header {
  margin: 0 0 1.5rem;
  padding: 0 0 .875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: .0625rem solid #ddd;
}

.search-result-group__header h2 {
  margin: 0;
  color: #222;
  font-size: 1.35rem;
  font-weight: 500;
}

.search-result-group__header h2 span {
  margin-left: .35rem;
  color: #aaa;
  font-size: .875rem;
  font-weight: 400;
}

.search-result-group__header a {
  color: #e3540b;
  font-size: .875rem;
}

.search-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.search-result-grid--product .products-card {
  width: 100%;
  max-width: none;
}

.search-result-grid--product .products-card > a {
  min-height: 23rem;
}

.search-result-grid--product .products-card__image {
  width: 10rem;
  height: 16rem;
  max-width: 100%;
  max-height: 16rem;
}

.search-results__meta,
.search-results__subtitle {
  display: block;
}

.search-results__meta {
  margin-bottom: .35rem;
  color: #e3540b;
  font-size: .75rem;
}

.search-results__subtitle {
  margin-top: .25rem;
  color: #555;
  font-size: .875rem;
}

.search-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.search-pagination a,
.search-pagination span {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  color: #666;
  background: #f5f5f5;
  border-radius: .25rem;
}

.search-pagination a:hover,
.search-pagination .is-active {
  color: #fff;
  background: #e3540b;
}

@media (max-width: 900px) {
  .search-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header-search {
    inset: 6.25rem 0 0;
  }

  .header-search__backdrop {
    background: rgb(12 18 22 / 32%);
  }

  .header-search__surface {
    padding: 2.75rem 0 3rem;
  }

  .header-search__inner {
    width: calc(100% - 2rem);
  }

  .search-page__hero {
    padding: 3.25rem 0 2.75rem;
  }

  .search-page__inner {
    width: calc(100% - 2rem);
  }
}

@media (max-width: 520px) {
  .header-search-button {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
  }

  .header-search {
    inset: 3.75rem 0 0;
  }

  .header-search__surface {
    padding: 2rem 0 2.25rem;
  }

  .header-search__inner {
    width: calc(100% - 2rem);
  }

  .header-search__inner h2 {
    padding-right: 3.25rem;
    font-size: 1.625rem;
  }

  .header-search__intro {
    max-width: calc(100% - 1rem);
    font-size: .8125rem;
  }

  .header-search form {
    margin-top: 1.5rem;
  }

  .header-search input {
    height: 3.5rem;
  }

  .header-search input {
    padding-left: 3rem;
    font-size: .875rem;
  }

  .header-search__field > svg {
    left: 1rem;
    width: 1.125rem;
    height: 1.125rem;
  }

  .search-page {
    padding-bottom: 4rem;
  }

  .search-page__hero {
    padding: 2.5rem 0 2.25rem;
  }

  .search-page__row {
    grid-template-columns: minmax(0, 1fr) 5.25rem;
  }

  .search-page__row input,
  .search-page__submit {
    height: 3rem;
  }

  .search-page__results {
    padding-top: 2.5rem;
  }

  .search-page__results-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-results__link {
    padding-block: 1.25rem;
  }

  .search-page__tabs {
    width: calc(100% + 1rem);
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .search-page__groups {
    gap: 3rem;
  }

  .search-result-grid {
    grid-template-columns: 1fr;
  }

  .search-result-grid--product .products-card {
    width: 100%;
    max-width: none;
  }

  .search-result-grid--product .products-card > a {
    min-height: 22rem;
  }
}

@media (max-width: 450px) {
  .header-search {
    inset: 3.125rem 0 0;
  }
}

/* Match the navigation's desktop second-level menu: a restrained full-width panel. */
body.search-open {
  overflow: visible;
}

.header-search > .header-search__backdrop {
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
  color: transparent;
  padding: 0;
}

.header-search__surface {
  height: 16rem;
  padding: 0;
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border: 0;
  box-shadow: none;
}

.header-search form {
  width: min(42rem, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.25rem;
  align-items: center;
  border-radius: .375rem;
  box-shadow: 0 .5rem 1.5rem rgb(17 24 32 / 8%);
}

.header-search input {
  height: 3.25rem;
  padding: 0 1rem 0 2.875rem;
  background: #fff;
  border: .0625rem solid #dedede;
  border-right: 0;
  border-radius: .375rem 0 0 .375rem;
  font-size: .9375rem;
}

.header-search__field > svg {
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
}

.header-search__submit {
  height: 3.25rem;
  padding: 0 1rem;
  color: #fff;
  background: #e3540b;
  border: .0625rem solid #e3540b;
  border-radius: 0 .375rem .375rem 0;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s ease, border-color .2s ease;
}

.header-search__submit:hover {
  background: #c94700;
  border-color: #c94700;
}

.header-search__submit:focus-visible {
  outline: .125rem solid #e3540b;
  outline-offset: .1875rem;
}

@media (min-width: 1281px) {
  .header-search {
    inset: calc(2vw + 1.875rem) 0 0;
  }

  .search-page {
    padding-top: calc(2vw + 1.875rem);
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .header-search {
    inset: calc(3.75rem + 1px) 0 0;
  }

  .search-page {
    padding-top: calc(3.75rem + 1px);
  }
}

@media (max-width: 767px) {
  .header-search__surface {
    height: 10rem;
    padding: 0;
  }

  .header-search form {
    width: calc(100% - 2rem);
    grid-template-columns: minmax(0, 1fr) 6.25rem;
  }

  .search-page {
    padding-top: 6.25rem;
  }
}

@media (max-width: 520px) {
  .header-search__surface {
    height: 7.5rem;
  }

  .header-search form {
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) 5.25rem;
  }

  .header-search input,
  .header-search__submit {
    height: 3rem;
  }

  .search-page {
    padding-top: 3.75rem;
  }
}

@media (max-width: 450px) {
  .search-page {
    padding-top: 3.125rem;
  }
}

/* One shared control for both the header dropdown and /search/ page.
 * Repeated class selectors intentionally outrank legacy site.css rules. */
.cps-search-control.cps-search-control {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.25rem;
  gap: 0;
  align-items: center;
  border-radius: .375rem;
  box-shadow: 0 .5rem 1.5rem rgb(17 24 32 / 8%);
}

.cps-search-control .cps-search-control__icon.cps-search-control__icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  color: #7d7d7d;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  transform: translateY(-50%);
}

.cps-search-control .cps-search-control__input.cps-search-control__input {
  box-sizing: border-box;
  width: 100%;
  height: 3.25rem;
  min-width: 0;
  padding: 0 3rem 0 2.875rem;
  color: #171717;
  background: #fff;
  border: .0625rem solid #dedede;
  border-right: 0;
  border-radius: .375rem 0 0 .375rem;
  outline: 0;
  font-size: .9375rem;
  line-height: normal;
}

.cps-search-control .cps-search-control__input.cps-search-control__input:focus {
  background: #fff;
  border-color: #e3540b;
  box-shadow: inset 0 0 0 .0625rem #e3540b;
}

.cps-search-control .cps-search-control__submit.cps-search-control__submit {
  box-sizing: border-box;
  width: 100%;
  height: 3.25rem;
  min-width: 0;
  margin: 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #e3540b;
  border: .0625rem solid #e3540b;
  border-radius: 0 .375rem .375rem 0;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  line-height: normal;
}

.cps-search-control .cps-search-control__submit.cps-search-control__submit:hover {
  color: #fff;
  background: #c94700;
  border-color: #c94700;
}

.cps-search-control .cps-search-control__clear.cps-search-control__clear {
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #777;
  background: transparent;
  border: 0;
  border-radius: 50%;
  line-height: 1;
}

@media (max-width: 520px) {
  .cps-search-control.cps-search-control {
    grid-template-columns: minmax(0, 1fr) 5.25rem;
  }

  .cps-search-control .cps-search-control__input.cps-search-control__input,
  .cps-search-control .cps-search-control__submit.cps-search-control__submit {
    height: 3rem;
  }
}

/* Header live results: input updates this panel; form submission still opens /search/. */
.header-search.has-results .header-search__surface {
  box-sizing: border-box;
  height: min(44rem, calc(100vh - 5rem));
  min-height: 26rem;
  padding: 2.5rem 0 2rem;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

.header-search.has-results .cps-search-control.cps-search-control {
  margin: 0 auto;
}

.header-search__results {
  box-sizing: border-box;
  width: min(75rem, calc(100% - 3rem));
  margin: 1.75rem auto 0;
  color: #282828;
  transition: opacity .15s ease;
}

.header-search__results.is-loading {
  opacity: .5;
  pointer-events: none;
}

.header-search-results__summary {
  padding-bottom: .875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: .0625rem solid #d9d9d9;
}

.header-search-results__summary p,
.header-search-results__summary span {
  margin: 0;
}

.header-search-results__summary p {
  overflow: hidden;
  font-size: .9375rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-results__summary span {
  flex: 0 0 auto;
  color: #858585;
  font-size: .75rem;
}

.header-search-results__groups {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.header-search-results__group {
  min-width: 0;
  padding: 1rem;
  background: #fff;
  border: .0625rem solid #e2e2e2;
  border-radius: .25rem;
}

.header-search-results__group > header {
  padding-bottom: .625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border-bottom: .0625rem solid #ececec;
}

.header-search-results__group h2,
.header-search-results__group > header span {
  margin: 0;
}

.header-search-results__group h2 {
  color: #222;
  font-size: .875rem;
  font-weight: 600;
}

.header-search-results__group > header span {
  color: #e3540b;
  font-size: .75rem;
}

.header-search-results__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-search-results__group li + li {
  border-top: .0625rem solid #f0f0f0;
}

.header-search-results__group li > a {
  min-height: 3.375rem;
  padding: .625rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #333;
  transition: color .15s ease;
}

.header-search-results__group li > a:hover {
  color: #e3540b;
}

.header-search-results__group strong,
.header-search-results__group small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-results__group strong {
  font-size: .8125rem;
  font-weight: 500;
}

.header-search-results__group small {
  margin-top: .25rem;
  color: #8b8b8b;
  font-size: .6875rem;
}

.header-search-results__more,
.header-search-results__all {
  color: #e3540b;
  font-size: .75rem;
}

.header-search-results__more {
  margin-top: .5rem;
  display: inline-block;
}

.header-search-results__all {
  width: fit-content;
  margin: 1.25rem auto 0;
  padding: .625rem 1.125rem;
  display: block;
  border: .0625rem solid #e3540b;
  border-radius: .1875rem;
}

.header-search-results__all:hover {
  color: #fff;
  background: #e3540b;
}

.header-search-results__empty {
  margin: 1.25rem 0 0;
  padding: 1.5rem;
  color: #777;
  background: #fff;
  border: .0625rem solid #e2e2e2;
  text-align: center;
  font-size: .8125rem;
}

@media (max-width: 767px) {
  .header-search.has-results .header-search__surface {
    height: 100%;
    min-height: 100%;
    padding: 1.5rem 0 2rem;
  }

  .header-search__results {
    width: calc(100% - 2rem);
    margin-top: 1.25rem;
  }

  .header-search-results__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .header-search.has-results .header-search__surface {
    padding-top: 1rem;
  }

  .header-search__results {
    width: calc(100% - 1.25rem);
    margin-top: 1rem;
  }

  .header-search-results__groups {
    grid-template-columns: 1fr;
  }
}

/* The overlay renders the same result partial and card components as /search/. */
.header-search__results.search-page__results.search-page__inner {
  width: min(70rem, calc(100% - 3rem));
  margin: 2rem auto 0;
  padding-top: 0;
}

.header-search__results .search-page__groups {
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .header-search__results.search-page__results.search-page__inner {
    width: calc(100% - 2rem);
    margin-top: 1.5rem;
  }
}

@media (max-width: 520px) {
  .header-search__results.search-page__results.search-page__inner {
    width: calc(100% - 1.25rem);
    margin-top: 1rem;
  }
}
