        .ix-row { position: relative; }
        .ix-row__pillwrap { display: inline-flex; gap: 6px; margin-left: auto; }
        .ix-row__pill {
          display: inline-flex; align-items: center; gap: 6px;
          font-size: 12px; border: 1px solid #e5e7eb; border: 1px solid var(--border, #e5e7eb);
          padding: 2px 8px; border-radius: 999px;
        }
        .ix-row__pill.is-secondary { opacity: 0.75; }
        .ix-row__pill-dot {
          width: 10px; height: 10px; border-radius: 50%; display: inline-block;
        }
        .ix-row__pill-text { white-space: nowrap; }


        




.ix-summary-list {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 320ms ease,
    opacity 220ms ease;
  opacity: 0.9;
}

.ix-summary-list > * {
  overflow: hidden;
}

.ix-summary-list.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
}


.ix-summary-list > .ix-row__desc {
  transition: transform 220ms ease, opacity 220ms ease;
}

.ix-summary-list:not(.is-expanded)
  > .ix-row__desc:nth-child(n+6) {
  opacity: 0;
  transform: translateY(-4px);
}

.ix-summary-list.is-expanded
  > .ix-row__desc {
  opacity: 1;
  transform: translateY(0);
}

.ix-show-all {
  background: none;
  border: none;
  
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 180ms ease, transform 180ms ease;
}



.ix-source-footnote {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed color-mix(in srgb, #d1d5db 70%, transparent);
  border-top: 1px dashed color-mix(in srgb, var(--border, #d1d5db) 70%, transparent);
  font-size: 11.5px;
  line-height: 1.35;
  opacity: 0.68;
}

.ix-source-text {
  user-select: text;
  -webkit-user-select: text;
}

.ix-row__desc {
  user-select: text;
  -webkit-user-select: text;
}

.ix-source-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.ix-source-link:hover,
.ix-source-link:focus,
.ix-source-link:active,
.ix-source-link:visited {
  color: inherit;
  text-decoration: none;
}

.ix-source-link-icon {
  display: inline-flex;
  font-size: 13px;
  opacity: 0.78;
}


.ix .ix__controls {
  position: relative;
  display: flex;
  width: 100%;
  padding: 3px;
  border: 1px solid color-mix(in srgb, #d9dee7 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--line, #d9dee7) 82%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, #f4f5f7 72%, #fff);
  background: color-mix(in srgb, var(--soft, #f4f5f7) 72%, var(--bg, #fff));
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ix .ix__controls:focus-within {
  border-color: color-mix(in srgb, #3478f6 55%, transparent);
  border-color: color-mix(in srgb, var(--accent, #3478f6) 55%, transparent);
  background: #fff;
  background: var(--bg, #fff);
  box-shadow:
    0 0 0 3px color-mix(in srgb, #3478f6 14%, transparent),
    0 2px 8px rgba(15, 23, 42, 0.06);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent, #3478f6) 14%, transparent),
    0 2px 8px rgba(15, 23, 42, 0.06);
}

.ix .ix-input {
  width: 100%;
  height: 40px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #182033;
  color: var(--fg, #182033);
  caret-color: #3478f6;
  caret-color: var(--accent-strong, var(--accent, #3478f6));
  font: inherit;
  font-size: 14px;
  line-height: normal;
}

.ix .ix-input:focus {
  border-color: transparent;
  box-shadow: none;
}

.ix .ix-input::placeholder {
  color: transparent;
  opacity: 0;
}

.ix .ix-input-placeholder {
  position: absolute;
  inset-inline: 16px;
  inset-block: 3px;
  display: flex;
  align-items: center;
  min-width: 0;
  color: color-mix(in srgb, #7c8596 84%, transparent);
  color: color-mix(in srgb, var(--muted, #7c8596) 84%, transparent);
  font: inherit;
  font-size: 14px;
  line-height: normal;
  pointer-events: none;
  text-align: start;
}

.ix .ix-input-placeholder__text {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ix .ix-results {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  margin-top: 10px;
}

.ix .ix-row {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #d9dee7 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--line, #d9dee7) 82%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, #fff 96%, #f4f5f7);
  background: color-mix(in srgb, var(--bg, #fff) 96%, var(--soft, #f4f5f7));
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ix .ix-row:hover {
  border-color: color-mix(in srgb, #d9dee7 88%, transparent);
  border-color: color-mix(in srgb, var(--line, #d9dee7) 88%, transparent);
  background: color-mix(in srgb, #fff 92%, #f4f5f7);
  background: color-mix(in srgb, var(--bg, #fff) 92%, var(--soft, #f4f5f7));
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
  transform: none;
}

.ix .ix-row:active {
  border-color: color-mix(in srgb, #d9dee7 88%, transparent);
  border-color: color-mix(in srgb, var(--line, #d9dee7) 88%, transparent);
  background: color-mix(in srgb, #f4f5f7 72%, #fff);
  background: color-mix(in srgb, var(--soft, #f4f5f7) 72%, var(--bg, #fff));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #182033 4%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fg, #182033) 4%, transparent);
  transform: none;
}

.ix .ix-row:focus {
  outline: none;
}

.ix .ix-row:focus-visible {
  outline: 2px solid #dcaa2e;
  outline: 2px solid var(--accent-strong, var(--accent, #dcaa2e));
  outline-offset: 2px;
}

.ix .ix-row__main {
  min-height: 38px;
  padding: 10px 12px;
  border-right: 0;
}

.ix .ix-row__detail {
  padding: 12px 14px 13px;
  border-top: 1px solid color-mix(in srgb, #d9dee7 70%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--line, #d9dee7) 70%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, #f4f5f7 62%, #fff);
  background: color-mix(in srgb, var(--soft, #f4f5f7) 62%, var(--bg, #fff));
}

.ix .ix-summary-list {
  display: block;
  opacity: 1;
}

.ix .ix-row--summary .ix-row__detail {
  padding-top: 15px;
  padding-bottom: 16px;
}

.ix .ix-summary-list .ix-row__desc:last-child {
  margin-bottom: 0 !important;
}

.ix .ix-row__title {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.ix .ix-row__desc {
  margin: 0;
  color: #7c8596;
  color: var(--muted, #7c8596);
  font-size: 12.5px;
  line-height: 1.48;
}


.ix .ix-row__meta,
.ix .ix-source-text {
  color: #7c8596;
  color: var(--muted, #7c8596);
  font-size: 12.5px;
  line-height: 1.48;
}

.ix .ix-row__meta {
  margin-top: 8px;
}

.ix .ix-show-all {
  
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 12px 16px 14px;
  border-top: 1px solid color-mix(in srgb, #d9dee7 65%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--line, #d9dee7) 65%, transparent);
  background: transparent;
  color: #182033;
  color: var(--fg, #182033);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}

.ix .ix-show-all:hover {
  background: color-mix(in srgb, #f4f5f7 70%, transparent);
  background: color-mix(in srgb, var(--soft, #f4f5f7) 70%, transparent);
}

.ix .ix-show-all:focus {
  outline: none;
}

.ix .ix-show-all:focus-visible {
  box-shadow: inset 0 0 0 2px #dcaa2e;
  box-shadow: inset 0 0 0 2px var(--accent-strong, var(--accent, #dcaa2e));
}

.theme-dark .ix .ix__controls,
[data-theme="dark"] .ix .ix__controls {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.theme-dark .ix .ix-row,
[data-theme="dark"] .ix .ix-row {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

.theme-dark .ix .ix-row:hover,
[data-theme="dark"] .ix .ix-row:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.theme-dark .ix .ix-row:active,
[data-theme="dark"] .ix .ix-row:active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.theme-dark .ix .ix-row__detail,
[data-theme="dark"] .ix .ix-row__detail {
  background: rgba(255, 255, 255, 0.035);
}

