.global-search-page {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 44%, #f6f8fc 100%);
  color: #15243b;
  min-height: 72vh;
  padding: 34px 0 48px;
}
.global-search-shell {
  display: grid;
  gap: 22px;
}
.global-search-hero,
.global-search-facets,
.global-search-results {
  background: #fff;
  border: 1px solid rgba(20, 61, 118, .1);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 45, 85, .08);
}
.global-search-hero {
  padding: clamp(24px, 4vw, 42px);
}
.global-search-kicker,
.global-search-card__domain {
  color: #1d5aa6;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.global-search-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  margin: 10px 0 12px;
  max-width: 850px;
}
.global-search-hero p {
  color: #5a6680;
  margin: 0 0 22px;
  max-width: 730px;
}
.global-search-form {
  align-items: center;
  background: #f3f7fd;
  border: 1px solid rgba(25, 86, 160, .14);
  border-radius: 999px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  min-height: 52px;
  padding: 6px 6px 6px 18px;
}
.global-search-form__icon {
  color: #2f66a6;
  font-size: 1.3rem;
  line-height: 1;
}
.global-search-form input {
  background: transparent;
  border: 0;
  color: #15243b;
  font: inherit;
  min-width: 0;
  outline: 0;
}
.global-search-form button {
  background: #195ca8;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 40px;
  padding: 0 22px;
}
.global-search-layout {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(240px, 300px) 1fr;
}
.global-search-facets {
  display: grid;
  gap: 8px;
  padding: 18px;
  position: sticky;
  top: 18px;
}
.global-search-facets__head,
.global-search-results__toolbar,
.global-search-card__meta,
.global-search-pagination {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.global-search-facets__head a,
.global-search-pagination a {
  color: #195ca8;
  font-weight: 700;
  text-decoration: none;
}
.global-search-category {
  align-items: center;
  border: 1px solid rgba(25, 86, 160, .12);
  border-radius: 16px;
  color: #15243b;
  display: flex;
  justify-content: space-between;
  padding: 12px 13px;
  text-decoration: none;
}
.global-search-category small {
  color: #6d7890;
  font-size: .72rem;
}
.global-search-category.is-active,
.global-search-category:hover {
  background: #edf5ff;
  border-color: rgba(25, 86, 160, .28);
}
.global-search-results {
  padding: 18px;
}
.global-search-results__toolbar {
  border-bottom: 1px solid rgba(20, 61, 118, .1);
  color: #6d7890;
  margin-bottom: 18px;
  padding-bottom: 16px;
}
.global-search-results__toolbar strong {
  color: #15243b;
}
.global-search-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.global-search-card {
  border: 1px solid rgba(20, 61, 118, .1);
  border-radius: 20px;
  display: grid;
  overflow: hidden;
}
.global-search-card__media {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef5ff, #fff7ee);
  color: #195ca8;
  display: flex;
  font-weight: 800;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.global-search-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.global-search-card__body {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.global-search-card h2 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0;
}
.global-search-card h2 a {
  color: #15243b;
  text-decoration: none;
}
.global-search-card p {
  color: #5f6b82;
  margin: 0;
}
.global-search-card__subtitle {
  font-weight: 700;
}
.global-search-card__meta {
  color: #6d7890;
  margin-top: 4px;
}
.global-search-card__meta strong {
  color: #0f427d;
}
.global-search-empty {
  background: #f7faff;
  border: 1px dashed rgba(25, 86, 160, .22);
  border-radius: 18px;
  padding: 28px;
}
.global-search-pagination {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .global-search-layout {
    grid-template-columns: 1fr;
  }
  .global-search-facets {
    position: static;
  }
}
@media (max-width: 620px) {
  .global-search-form {
    border-radius: 22px;
    grid-template-columns: auto 1fr;
  }
  .global-search-form button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .global-search-results__toolbar,
  .global-search-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}
