.xaver-logo {
  margin: auto;
  display: block;
  width: 100px;
  height: 25px;
  background: url("/xaver-mini.png") no-repeat;
  transition: all 0.2s ease-in-out;
}

.xaver-logo.xaver-hover:hover {
  background-position: bottom;
}

/* Pagy pagination */
nav.pagy {
  display: flex;
  gap: 0.25rem;
}
nav.pagy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--xv-charcoal, #241F21);
  transition: all 0.15s;
}
nav.pagy a:hover {
  background-color: var(--xv-mist, #EDF1F7);
  color: var(--xv-orange, #F29524);
}
nav.pagy a[aria-disabled] {
  color: #d1d5db;
  pointer-events: none;
}
nav.pagy a[aria-current="page"] {
  background-color: var(--xv-orange, #F29524);
  color: #fff;
}

/*
 * Trix rich-text typography. Tailwind's preflight strips list markers, block
 * spacing and heading styles, so both the editor (<trix-editor>) and any rendered
 * `.trix-content` that is NOT wrapped in `.prose` lose their formatting (bullets
 * vanish, spacing collapses). Restore it for:
 *   - `trix-editor`     — the editing view.
 *   - `.quote-document` — the client quote document (proposals/_document), a
 *                         bespoke non-`.prose` render used in the admin live
 *                         preview and the public proposal page. Its opening note
 *                         (`.quote-intro`) was losing its bullets here.
 * Rendered rich text wrapped in `.prose` (proposal show, blog, newsletter) is
 * styled by the typography plugin and left untouched. This file is @imported after
 * `tailwindcss`, so these rules sit after preflight in the cascade.
 */
trix-editor.trix-content h1,
trix-editor.trix-content h2,
.quote-document .trix-content h1,
.quote-document .trix-content h2 { font-size: 1.25em; font-weight: 700; line-height: 1.3; margin: 1em 0 0.5em; }
trix-editor.trix-content h3,
.quote-document .trix-content h3 { font-size: 1.1em; font-weight: 600; line-height: 1.3; margin: 1em 0 0.5em; }
trix-editor.trix-content p,
.quote-document .trix-content p { margin: 0.75em 0; }
trix-editor.trix-content ul,
trix-editor.trix-content ol,
.quote-document .trix-content ul,
.quote-document .trix-content ol { margin: 0.75em 0; padding-left: 1.5em; }
trix-editor.trix-content ul,
.quote-document .trix-content ul { list-style: disc; }
trix-editor.trix-content ol,
.quote-document .trix-content ol { list-style: decimal; }
trix-editor.trix-content li,
.quote-document .trix-content li { margin: 0.25em 0; }
trix-editor.trix-content a,
.quote-document .trix-content a { color: #db2777; text-decoration: underline; }
trix-editor.trix-content strong,
.quote-document .trix-content strong { font-weight: 700; }
