.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 42px 26px 34px;
}

.hero-title-row {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.hero-title-row .brand {
  justify-self: start;
}

.hero-title-row .brand img {
  width: 174px;
}

.hero-title-row h1 {
  margin: 0;
  white-space: nowrap;
}

.hero > p {
  margin-top: 12px;
}

.product-search {
  width: min(820px, 100%);
  height: 60px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 18px #24364c12;
}

.search-icon {
  width: 22px;
  height: 22px;
  flex: none;
  margin-left: 25px;
  color: #a5adb9;
}

.product-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 15px;
  border: 0;
  outline: 0;
  color: #27313d;
  background: transparent;
  font-size: 15px;
}

.product-search input::placeholder {
  color: #a4adbb;
}

.product-search:focus-within {
  box-shadow: 0 0 0 3px #6099d73d, 0 3px 18px #24364c12;
}

.product-search button {
  align-self: stretch;
  width: 176px;
  flex: none;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: #5fa6d9;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.product-search button:hover {
  background: #4b93cb;
}

.image-status {
  margin: 0 0 12px;
  color: #5f7287;
  font-size: 12px;
}

.image-status.missing {
  padding: 12px 14px;
  border-radius: 6px;
  background: #f3f7fc;
}

@media (max-width: 760px) {
  .hero {
    padding: 30px 18px 26px;
  }

  .hero-title-row {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .hero-title-row .brand img {
    width: clamp(82px, 26vw, 110px);
  }

  .hero-title-row h1 {
    font-size: clamp(20px, 5.3vw, 29px);
  }

  .hero > p {
    margin-top: 11px;
  }

  .product-search {
    height: 52px;
    margin-top: 24px;
  }

  .search-icon {
    width: 18px;
    height: 18px;
    margin-left: 17px;
  }

  .product-search input {
    padding: 0 9px;
    font-size: 12px;
  }

  .product-search button {
    width: 94px;
    font-size: 13px;
  }
}
