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

.blog-search {
  margin-bottom: clamp(2.6rem, 5vw, 4.5rem);
  padding: clamp(1.4rem, 3vw, 2.35rem);
  border: 1px solid #d7e5ee;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fcfe 0%, #fff 72%);
  box-shadow: 0 18px 48px rgba(39, 78, 112, .08);
}

.blog-search__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.blog-search__heading h2 {
  margin: .35rem 0 0;
  color: #1a2d47;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.blog-search__heading > p {
  max-width: 420px;
  margin: 0;
  color: #5a6b7f;
  line-height: 1.65;
}

.blog-search__field {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 64px;
  padding: 0 1.1rem;
  border: 1px solid #c9dbe6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(39, 78, 112, .06);
  transition: border-color .2s, box-shadow .2s;
}

.blog-search__field:focus-within {
  border-color: #31c2ea;
  box-shadow: 0 0 0 4px rgba(49, 194, 234, .14), 0 10px 28px rgba(39, 78, 112, .08);
}

.blog-search__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #247ea0;
  border-radius: 50%;
}

.blog-search__icon::after {
  content: "";
  position: absolute;
  right: -.36rem;
  bottom: -.2rem;
  width: .48rem;
  height: 2px;
  border-radius: 2px;
  background: #247ea0;
  transform: rotate(45deg);
  transform-origin: left center;
}

.blog-search__field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172a43;
  font-size: 1rem;
}

.blog-search__field input::placeholder { color: #7b8999; }

.blog-search__hint {
  flex: 0 0 auto;
  padding: .5rem .72rem;
  border-radius: 99px;
  background: #eaf7fb;
  color: #247b99;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-search__status {
  min-height: 1.4em;
  margin: .85rem 0 0;
  color: #65758a;
  font-size: .8rem;
  font-weight: 600;
}

.editorial-card[hidden] { display: none; }

.blog-search__empty {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  text-align: center;
}

.blog-search__empty h2 {
  max-width: 650px;
  margin: .45rem auto 1rem;
  color: #1a2d47;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.blog-search__empty > p:not(.eyebrow) {
  margin: 0 auto 1.7rem;
  color: #5a6b7f;
}

.blog-search__empty .button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 720px) {
  .blog-search {
    padding: 1.2rem;
    border-radius: 17px;
  }

  .blog-search__heading { display: block; }
  .blog-search__heading > p { margin-top: .75rem; }

  .blog-search__field {
    min-height: 58px;
    padding: 0 .9rem;
  }

  .blog-search__hint { display: none; }
}
