/* "Ask about Vivijure" widget, themed to the vivijure.com design tokens. The base
   widget ships neutral defaults in skyphusion-search; here it inherits the site palette
   via var() so it blends with the rest of the page. */
.vjask {
  font-family: var(--font-body);
  color: var(--fg);
}
.vjask-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.vjask-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}
.vjask-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.vjask-input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
}
.vjask-input::placeholder {
  color: var(--dim);
}
.vjask-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-hover);
}
.vjask-btn {
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--gradient);
  color: #05121a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.vjask-btn:disabled {
  opacity: 0.55;
  cursor: progress;
}
.vjask-answer {
  white-space: pre-wrap;
  line-height: 1.75;
  color: var(--fg);
}
.vjask-answer:not(:empty) {
  padding-top: 0.25rem;
}
.vjask-sources {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.vjask-sources-title {
  width: 100%;
  font-weight: 700;
  color: var(--fg);
}
.vjask-sources li {
  font-family: var(--font-mono);
}
