.super-search-toggle {
  color: #087c73;
  border-color: #bcded9;
  background: #eef9f7;
}

.super-search-toggle:hover {
  color: #055d57;
  border-color: #74bdb5;
  background: #e0f4f1;
}

.super-search-dialog {
  --ss-page: #f4f7fb;
  --ss-panel: #ffffff;
  --ss-soft: #f7f9fc;
  --ss-line: #d5dfeb;
  --ss-line-soft: #e3e9f1;
  --ss-text: #101828;
  --ss-copy: #344054;
  --ss-muted: #667085;
  --ss-faint: #7b8798;
  --ss-accent: #087c73;
  --ss-accent-hover: #056d66;
  --ss-accent-soft: #eaf7f5;
  --ss-danger: #c83d4e;
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--ss-text);
  background-color: var(--ss-page);
  background-image:
    linear-gradient(rgba(15, 97, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 97, 180, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

html[data-theme="dark"] .super-search-dialog {
  --ss-page: #0b1019;
  --ss-panel: #131b28;
  --ss-soft: #192332;
  --ss-line: #29384d;
  --ss-line-soft: #263549;
  --ss-text: #f3f7ff;
  --ss-copy: #dce7f8;
  --ss-muted: #aab7c8;
  --ss-faint: #8797aa;
  --ss-accent: #77d2c8;
  --ss-accent-hover: #9de9e1;
  --ss-accent-soft: #173330;
  --ss-danger: #ef7181;
  background-image:
    linear-gradient(rgba(91, 148, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 148, 255, 0.04) 1px, transparent 1px);
}

html[data-theme="dark"] .super-search-toggle {
  color: #7fd8cf;
  border-color: #315d5a;
  background: #15302f;
}

html[data-theme="dark"] .super-search-toggle:hover {
  color: #c7fff9;
  border-color: #4b817d;
  background: #1e4541;
}

.super-search-dialog::backdrop {
  background: rgba(7, 16, 31, 0.52);
}

.super-search-window {
  min-height: 100%;
}

.super-search-window-head {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--ss-line);
  background: var(--ss-panel);
}

.super-search-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.super-search-brand-icon,
.super-search-progress-head > span,
.super-search-idle-icon,
.super-search-loading-mark,
.super-search-summary > div > span {
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ss-accent) 35%, var(--ss-line));
  border-radius: 7px;
  color: var(--ss-accent);
  background: var(--ss-accent-soft);
}

.super-search-brand-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
}

.super-search-brand-icon .icon {
  width: 25px;
  height: 25px;
}

.super-search-brand > div {
  display: grid;
  gap: 2px;
}

.super-search-brand > div > span,
.super-search-kicker {
  color: var(--ss-accent);
  font-size: 12px;
  font-weight: 850;
}

.super-search-brand h2 {
  margin: 0;
  color: var(--ss-text);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.super-search-close {
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  color: var(--ss-muted);
  background: var(--ss-panel);
  cursor: pointer;
}

.super-search-close:hover {
  color: var(--ss-text);
  border-color: var(--ss-faint);
  background: var(--ss-soft);
}

.super-search-close .icon {
  width: 22px;
  height: 22px;
}

.super-search-content {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.super-search-command {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  padding: clamp(26px, 3.5vw, 48px);
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-intro {
  display: grid;
  gap: 15px;
  align-content: center;
}

.super-search-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.super-search-kicker .icon,
.super-search-note .icon {
  width: 18px;
  height: 18px;
}

.super-search-intro h3 {
  max-width: 650px;
  margin: 0;
  color: var(--ss-text);
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.01;
  letter-spacing: 0;
}

.super-search-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--ss-muted);
  font-size: 17px;
  line-height: 1.6;
}

.super-search-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 650px;
  padding-top: 13px;
  border-top: 1px solid var(--ss-line-soft);
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.45;
}

.super-search-note .icon {
  flex: 0 0 18px;
  margin-top: 1px;
  color: var(--ss-accent);
}

.super-search-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-soft);
}

.super-search-form label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 5px;
}

.super-search-form label span {
  color: var(--ss-copy);
  font-size: 14px;
  font-weight: 800;
}

.super-search-form label small {
  color: var(--ss-faint);
  font-size: 12px;
  text-align: right;
}

.super-search-form input,
.super-search-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  color: var(--ss-text);
  background: var(--ss-panel);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.super-search-form input {
  height: 52px;
  padding: 0 15px;
}

.super-search-form textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.45;
}

.super-search-form input:focus,
.super-search-form textarea:focus {
  border-color: var(--ss-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ss-accent) 14%, transparent);
}

.super-search-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.super-search-form-actions button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--ss-accent);
  border-radius: 7px;
  color: #ffffff;
  background: var(--ss-accent);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.super-search-form-actions button:hover {
  border-color: var(--ss-accent-hover);
  background: var(--ss-accent-hover);
}

.super-search-form-actions button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.super-search-form-actions .super-search-abort {
  border-color: var(--ss-danger);
  background: var(--ss-danger);
}

.super-search-form-actions .icon {
  width: 19px;
  height: 19px;
}

.super-search-stage,
.super-search-result {
  display: grid;
  gap: 18px;
}

.super-search-stage {
  margin-top: 18px;
}

.super-search-progress {
  padding: 20px 24px 0;
  overflow: hidden;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-progress-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.super-search-progress-head > span {
  width: 42px;
  height: 42px;
}

.super-search-progress-head > span .icon {
  width: 21px;
  height: 21px;
}

.super-search-progress-head > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.super-search-progress-head small {
  color: var(--ss-accent);
  font-size: 11px;
  font-weight: 850;
}

.super-search-progress-head strong {
  overflow: hidden;
  color: var(--ss-copy);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.super-search-progress-head > b {
  color: var(--ss-text);
  font-size: 17px;
}

.super-search-progress-track {
  height: 5px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--ss-line-soft);
}

.super-search-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--ss-accent);
  transition: width 0.42s ease;
}

.super-search-stage.is-error .super-search-progress {
  border-color: color-mix(in srgb, var(--ss-danger) 52%, var(--ss-line));
}

.super-search-stage.is-error .super-search-progress-head > span {
  color: var(--ss-danger);
  background: color-mix(in srgb, var(--ss-danger) 10%, var(--ss-panel));
}

.super-search-stage.is-error .super-search-progress-head small {
  color: var(--ss-danger);
}

.super-search-progress-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid var(--ss-line-soft);
}

.super-search-progress-meta > span {
  display: grid;
  gap: 2px;
  min-height: 66px;
  align-content: center;
  padding: 10px 18px;
  border-left: 1px solid var(--ss-line-soft);
}

.super-search-progress-meta > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.super-search-progress-meta small {
  color: var(--ss-faint);
  font-size: 11px;
}

.super-search-progress-meta strong {
  color: var(--ss-text);
  font-size: 18px;
}

.super-search-idle,
.super-search-loading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 176px;
  padding: 28px 32px;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-idle-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 850px;
}

.super-search-idle-icon,
.super-search-loading-mark {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}

.super-search-idle-icon .icon,
.super-search-loading-mark .icon {
  width: 28px;
  height: 28px;
}

.super-search-idle-copy > span:last-child,
.super-search-loading > div {
  display: grid;
  gap: 6px;
}

.super-search-idle-copy small,
.super-search-loading small {
  color: var(--ss-accent);
  font-size: 11px;
  font-weight: 850;
}

.super-search-idle-copy strong,
.super-search-loading strong {
  color: var(--ss-text);
  font-size: 20px;
}

.super-search-idle-copy p,
.super-search-loading p {
  max-width: 780px;
  margin: 0;
  color: var(--ss-muted);
  line-height: 1.55;
}

.super-search-idle-features {
  display: grid;
  gap: 11px;
  min-width: 240px;
}

.super-search-idle-features span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ss-copy);
  font-size: 13px;
  font-weight: 700;
}

.super-search-idle-features .icon {
  width: 18px;
  height: 18px;
  color: var(--ss-accent);
}

.super-search-loading {
  justify-content: flex-start;
}

.super-search-stage.is-loading .super-search-loading-mark .icon {
  animation: super-search-scan 1.8s ease-in-out infinite;
}

@keyframes super-search-scan {
  0%, 100% { transform: translateX(-3px); opacity: 0.72; }
  50% { transform: translateX(3px); opacity: 1; }
}

.super-search-overview {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(360px, 1.5fr) minmax(210px, 0.65fr);
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-profile,
.super-search-query-summary,
.super-search-coverage {
  min-width: 0;
  padding: 24px;
}

.super-search-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.super-search-profile:hover strong,
.super-search-profile:hover b {
  color: var(--ss-accent);
}

.super-search-profile-avatar {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--ss-accent);
  background: var(--ss-accent-soft);
}

.super-search-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.super-search-profile-avatar .icon {
  width: 25px;
  height: 25px;
}

.super-search-profile > span:last-child,
.super-search-query-summary,
.super-search-coverage {
  display: grid;
  gap: 5px;
  align-content: center;
}

.super-search-profile small,
.super-search-query-summary small,
.super-search-coverage small {
  color: var(--ss-faint);
  font-size: 10px;
  font-weight: 850;
}

.super-search-profile strong {
  overflow: hidden;
  color: var(--ss-text);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.super-search-profile b {
  color: var(--ss-accent);
  font-size: 13px;
}

.super-search-query-summary {
  border-right: 1px solid var(--ss-line-soft);
  border-left: 1px solid var(--ss-line-soft);
}

.super-search-query-summary > strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ss-text);
  font-size: 22px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.super-search-query-summary p,
.super-search-coverage p {
  margin: 0;
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.45;
}

.super-search-coverage > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.super-search-coverage .icon {
  width: 17px;
  height: 17px;
  color: var(--ss-accent);
}

.super-search-coverage > strong {
  color: var(--ss-text);
  font-size: 28px;
}

.super-search-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-summary > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 10px;
  min-height: 94px;
  align-content: center;
  padding: 16px 18px;
  border-left: 1px solid var(--ss-line-soft);
}

.super-search-summary > div:first-child {
  border-left: 0;
}

.super-search-summary > div > span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  align-self: center;
}

.super-search-summary .icon {
  width: 18px;
  height: 18px;
}

.super-search-summary small {
  align-self: end;
  color: var(--ss-faint);
  font-size: 10px;
  font-weight: 850;
}

.super-search-summary strong {
  color: var(--ss-text);
  font-size: 24px;
  line-height: 1;
}

.super-search-results-section {
  padding: 24px;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  background: var(--ss-panel);
}

.super-search-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ss-line-soft);
}

.super-search-results-head > div:first-child {
  display: grid;
  gap: 4px;
}

.super-search-results-head small {
  color: var(--ss-accent);
  font-size: 11px;
  font-weight: 850;
}

.super-search-results-head strong {
  color: var(--ss-text);
  font-size: 20px;
}

.super-search-result-count {
  color: var(--ss-muted);
  font-size: 12px;
  white-space: nowrap;
}

.super-search-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

.super-search-segment {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  background: var(--ss-soft);
}

.super-search-segment button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 0;
  border-radius: 5px;
  color: var(--ss-muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.super-search-segment button:hover {
  color: var(--ss-accent);
}

.super-search-segment button.active {
  color: #ffffff;
  background: #087c73;
}

.super-search-segment .icon,
.super-search-sort .icon {
  width: 15px;
  height: 15px;
}

.super-search-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.super-search-sort > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ss-muted);
  font-size: 12px;
  font-weight: 700;
}

.super-search-sort select {
  height: 40px;
  padding: 0 32px 0 11px;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  color: var(--ss-copy);
  background: var(--ss-panel);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.super-search-list {
  display: grid;
  gap: 8px;
}

.super-search-item {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  color: inherit;
  background: var(--ss-panel);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.super-search-item:hover {
  border-color: color-mix(in srgb, var(--ss-accent) 55%, var(--ss-line));
  background: color-mix(in srgb, var(--ss-accent) 3%, var(--ss-panel));
  transform: translateY(-1px);
}

.super-search-item.is-exact {
  border-left: 4px solid var(--ss-accent);
}

.super-search-item-score {
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--ss-line-soft);
  background: var(--ss-soft);
}

.super-search-item.is-exact .super-search-item-score {
  background: var(--ss-accent-soft);
}

.super-search-item-score strong {
  color: var(--ss-accent);
  font-size: 26px;
  line-height: 1;
}

.super-search-item-score small {
  color: var(--ss-muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
}

.super-search-item-content {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 17px 0;
}

.super-search-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 14px;
}

.super-search-item-meta b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ss-accent);
  font-size: 11px;
  text-transform: uppercase;
}

.super-search-item-meta .icon {
  width: 15px;
  height: 15px;
}

.super-search-item-meta i {
  color: var(--ss-faint);
  font-size: 11px;
  font-style: normal;
}

.super-search-item-title {
  overflow: hidden;
  color: var(--ss-text);
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.super-search-item-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ss-muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.super-search-item mark {
  padding: 0 2px;
  border-radius: 2px;
  color: color-mix(in srgb, var(--ss-accent) 82%, var(--ss-text));
  background: color-mix(in srgb, var(--ss-accent) 22%, var(--ss-panel));
}

.super-search-item-open {
  display: grid;
  place-items: center;
  color: var(--ss-faint);
}

.super-search-item-open .icon {
  width: 18px;
  height: 18px;
}

.super-search-item:hover .super-search-item-open {
  color: var(--ss-accent);
}

.super-search-more {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid var(--ss-line);
  border-radius: 7px;
  color: var(--ss-accent);
  background: var(--ss-panel);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.super-search-more:hover {
  border-color: var(--ss-accent);
  background: var(--ss-accent-soft);
}

.super-search-more .icon {
  width: 17px;
  height: 17px;
}

.super-search-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--ss-muted);
  text-align: center;
}

.super-search-empty .icon {
  width: 30px;
  height: 30px;
  color: var(--ss-accent);
}

.super-search-empty strong {
  color: var(--ss-copy);
}

.super-search-empty p {
  margin: 0;
  font-size: 13px;
}

.super-search-method {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 19px 22px;
  border: 1px solid var(--ss-line);
  border-left: 4px solid var(--ss-accent);
  border-radius: 7px;
  color: var(--ss-muted);
  background: var(--ss-panel);
}

.super-search-method > .icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--ss-accent);
}

.super-search-method span {
  display: grid;
  gap: 4px;
}

.super-search-method strong {
  color: var(--ss-copy);
  font-size: 13px;
}

.super-search-method p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .super-search-command {
    grid-template-columns: 1fr;
  }

  .super-search-intro h3 br {
    display: none;
  }

  .super-search-overview {
    grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr);
  }

  .super-search-coverage {
    grid-column: 1 / -1;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    border-top: 1px solid var(--ss-line-soft);
  }

  .super-search-coverage > strong {
    margin-right: 8px;
  }

  .super-search-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .super-search-summary > div:nth-child(4) {
    border-left: 0;
  }

  .super-search-summary > div:nth-child(4),
  .super-search-summary > div:nth-child(5) {
    border-top: 1px solid var(--ss-line-soft);
  }
}

@media (max-width: 760px) {
  .super-search-window-head {
    min-height: 72px;
    padding: 12px 16px;
  }

  .super-search-brand-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .super-search-content {
    width: min(100% - 20px, 1480px);
    padding: 12px 0 32px;
  }

  .super-search-command,
  .super-search-results-section {
    padding: 18px;
  }

  .super-search-intro h3 {
    font-size: 31px;
  }

  .super-search-intro > p {
    font-size: 15px;
  }

  .super-search-form {
    padding: 16px;
  }

  .super-search-form label {
    display: grid;
    gap: 2px;
  }

  .super-search-form label small {
    text-align: left;
  }

  .super-search-form-actions {
    display: grid;
  }

  .super-search-progress {
    padding: 16px 16px 0;
  }

  .super-search-progress-head {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .super-search-progress-head > span {
    width: 38px;
    height: 38px;
  }

  .super-search-progress-head strong {
    white-space: normal;
  }

  .super-search-progress-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .super-search-progress-meta > span:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--ss-line-soft);
    border-left: 0;
  }

  .super-search-progress-meta > span:nth-child(4) {
    border-top: 1px solid var(--ss-line-soft);
  }

  .super-search-idle,
  .super-search-loading {
    display: grid;
    padding: 22px;
  }

  .super-search-idle-features {
    min-width: 0;
  }

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

  .super-search-query-summary {
    border: 0;
    border-top: 1px solid var(--ss-line-soft);
    border-bottom: 1px solid var(--ss-line-soft);
  }

  .super-search-coverage {
    grid-column: auto;
    grid-template-columns: auto;
    border-top: 0;
  }

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

  .super-search-summary > div:nth-child(3),
  .super-search-summary > div:nth-child(5) {
    border-top: 1px solid var(--ss-line-soft);
    border-left: 0;
  }

  .super-search-summary > div:nth-child(4) {
    border-left: 1px solid var(--ss-line-soft);
  }

  .super-search-results-head {
    display: grid;
  }

  .super-search-result-count {
    white-space: normal;
  }

  .super-search-segment {
    width: 100%;
    overflow-x: auto;
  }

  .super-search-segment button {
    flex: 1 0 auto;
    justify-content: center;
  }

  .super-search-sort {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .super-search-item {
    grid-template-columns: 88px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  .super-search-item-score {
    padding: 12px;
  }

  .super-search-item-score strong {
    font-size: 22px;
  }

  .super-search-item-title {
    white-space: normal;
  }

  .super-search-item-open {
    padding-right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .super-search-progress-track span,
  .super-search-item {
    transition: none;
  }

  .super-search-stage.is-loading .super-search-loading-mark .icon {
    animation: none;
  }
}
