/**
 * src/siteRuntime/blocks.css — l'habillage des blocs de page, pour les sites
 * qui n'ont pas le pipeline Tailwind du .com (les satellites Cloudflare).
 *
 * Le problème qu'il règle : « Insérer un bloc » sert le MÊME HTML aux deux
 * moteurs — celui que produit `puckConfig.toHtml()`, écrit avec les classes
 * Tailwind et les jetons de design du .com (`container-page`, `text-gold-500`,
 * `btn-primary`…). Le .com a la feuille qui donne un sens à ces classes ; un
 * satellite n'avait que son thème. Un bloc inséré y sortait donc en texte nu,
 * empilé, sans grille ni bouton.
 *
 * Compilé au `vite build` (voir le plugin dans vite.config.js) avec
 * `tailwind.blocks.config.mjs`, qui scanne EXACTEMENT la source des blocs.
 * Aucune classe n'est écrite à la main ici : ce qui sort dépend de ce que les
 * blocs utilisent, donc ajouter un bloc suffit à faire apparaître son CSS.
 *
 * ⚠ Pas de `@tailwind base` : la remise à zéro de Tailwind écraserait le thème
 * du satellite (typographie, couleurs de fond, marges) que `staticSite.themeCss`
 * vient de poser. On ne prend que les composants et les utilitaires.
 *
 * La palette n'est PAS figée : chaque jeton `ink`/`gold` pointe une variable
 * CSS dont la valeur par défaut est celle du .com, et `staticSite.themeCss`
 * redéfinit ces variables à partir du `theme.json` du satellite (gamme
 * fabriquée par `server/colorRamp.js`). Un site aux couleurs violet/orange
 * obtient donc des blocs violet/orange, sans rien réécrire ici.
 */

.container {

    width: 100%;
}

@media (min-width: 640px) {

    .container {

        max-width: 640px;
    }
}

@media (min-width: 768px) {

    .container {

        max-width: 768px;
    }
}

@media (min-width: 1024px) {

    .container {

        max-width: 1024px;
    }
}

@media (min-width: 1280px) {

    .container {

        max-width: 1280px;
    }
}

@media (min-width: 1536px) {

    .container {

        max-width: 1536px;
    }
}

.prose {

    color: var(--tw-prose-body);

    max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;

    margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-lead);

    font-size: 1.25em;

    line-height: 1.6;

    margin-top: 1.2em;

    margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-links);

    text-decoration: underline;

    font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-bold);

    font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: decimal;

    margin-top: 1.25em;

    margin-bottom: 1.25em;

    padding-inline-start: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: disc;

    margin-top: 1.25em;

    margin-bottom: 1.25em;

    padding-inline-start: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {

    font-weight: 400;

    color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {

    color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-color: var(--tw-prose-hr);

    border-top-width: 1px;

    margin-top: 3em;

    margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 500;

    font-style: italic;

    color: var(--tw-prose-quotes);

    border-inline-start-width: 0.25rem;

    border-inline-start-color: var(--tw-prose-quote-borders);

    quotes: "\201C""\201D""\2018""\2019";

    margin-top: 1.6em;

    margin-bottom: 1.6em;

    padding-inline-start: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 800;

    font-size: 2.25em;

    margin-top: 0;

    margin-bottom: 0.8888889em;

    line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 900;

    color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 700;

    font-size: 1.5em;

    margin-top: 2em;

    margin-bottom: 1em;

    line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 800;

    color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    font-size: 1.25em;

    margin-top: 1.6em;

    margin-bottom: 0.6em;

    line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 700;

    color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    margin-top: 1.5em;

    margin-bottom: 0.5em;

    line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 700;

    color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    display: block;

    margin-top: 2em;

    margin-bottom: 2em;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 500;

    font-family: inherit;

    color: var(--tw-prose-kbd);

    box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);

    font-size: 0.875em;

    border-radius: 0.3125rem;

    padding-top: 0.1875em;

    padding-inline-end: 0.375em;

    padding-bottom: 0.1875em;

    padding-inline-start: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-code);

    font-weight: 600;

    font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;

    font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;

    font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-pre-code);

    background-color: var(--tw-prose-pre-bg);

    overflow-x: auto;

    font-weight: 400;

    font-size: 0.875em;

    line-height: 1.7142857;

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;

    border-radius: 0.375rem;

    padding-top: 0.8571429em;

    padding-inline-end: 1.1428571em;

    padding-bottom: 0.8571429em;

    padding-inline-start: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    background-color: transparent;

    border-width: 0;

    border-radius: 0;

    padding: 0;

    font-weight: inherit;

    color: inherit;

    font-size: inherit;

    font-family: inherit;

    line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    width: 100%;

    table-layout: auto;

    margin-top: 2em;

    margin-bottom: 2em;

    font-size: 0.875em;

    line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 1px;

    border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    vertical-align: bottom;

    padding-inline-end: 0.5714286em;

    padding-bottom: 0.5714286em;

    padding-inline-start: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 1px;

    border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-top-width: 1px;

    border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    vertical-align: top;
}

.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    text-align: start;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-captions);

    font-size: 0.875em;

    line-height: 1.4285714;

    margin-top: 0.8571429em;
}

.prose {

    --tw-prose-body: #374151;

    --tw-prose-headings: #111827;

    --tw-prose-lead: #4b5563;

    --tw-prose-links: #111827;

    --tw-prose-bold: #111827;

    --tw-prose-counters: #6b7280;

    --tw-prose-bullets: #d1d5db;

    --tw-prose-hr: #e5e7eb;

    --tw-prose-quotes: #111827;

    --tw-prose-quote-borders: #e5e7eb;

    --tw-prose-captions: #6b7280;

    --tw-prose-kbd: #111827;

    --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);

    --tw-prose-code: #111827;

    --tw-prose-pre-code: #e5e7eb;

    --tw-prose-pre-bg: #1f2937;

    --tw-prose-th-borders: #d1d5db;

    --tw-prose-td-borders: #e5e7eb;

    --tw-prose-invert-body: #d1d5db;

    --tw-prose-invert-headings: #fff;

    --tw-prose-invert-lead: #9ca3af;

    --tw-prose-invert-links: #fff;

    --tw-prose-invert-bold: #fff;

    --tw-prose-invert-counters: #9ca3af;

    --tw-prose-invert-bullets: #4b5563;

    --tw-prose-invert-hr: #374151;

    --tw-prose-invert-quotes: #f3f4f6;

    --tw-prose-invert-quote-borders: #374151;

    --tw-prose-invert-captions: #9ca3af;

    --tw-prose-invert-kbd: #fff;

    --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);

    --tw-prose-invert-code: #fff;

    --tw-prose-invert-pre-code: #d1d5db;

    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);

    --tw-prose-invert-th-borders: #4b5563;

    --tw-prose-invert-td-borders: #374151;

    font-size: 1rem;

    line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5em;

    margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.75em;

    margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;
}

.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;
}

.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.75em;

    margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;

    margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5em;

    padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-top: 0.5714286em;

    padding-inline-end: 0.5714286em;

    padding-bottom: 0.5714286em;

    padding-inline-start: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 0;
}

.prose-sm {

    font-size: 0.875rem;

    line-height: 1.7142857;
}

.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;

    margin-bottom: 1.1428571em;
}

.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.2857143em;

    line-height: 1.5555556;

    margin-top: 0.8888889em;

    margin-bottom: 0.8888889em;
}

.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;

    margin-bottom: 1.3333333em;

    padding-inline-start: 1.1111111em;
}

.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 2.1428571em;

    margin-top: 0;

    margin-bottom: 0.8em;

    line-height: 1.2;
}

.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.4285714em;

    margin-top: 1.6em;

    margin-bottom: 0.8em;

    line-height: 1.4;
}

.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.2857143em;

    margin-top: 1.5555556em;

    margin-bottom: 0.4444444em;

    line-height: 1.5555556;
}

.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.4285714em;

    margin-bottom: 0.5714286em;

    line-height: 1.4285714;
}

.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;
}

.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;
}

.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;
}

.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8571429em;

    border-radius: 0.3125rem;

    padding-top: 0.1428571em;

    padding-inline-end: 0.3571429em;

    padding-bottom: 0.1428571em;

    padding-inline-start: 0.3571429em;
}

.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8571429em;
}

.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.9em;
}

.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;
}

.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8571429em;

    line-height: 1.6666667;

    margin-top: 1.6666667em;

    margin-bottom: 1.6666667em;

    border-radius: 0.25rem;

    padding-top: 0.6666667em;

    padding-inline-end: 1em;

    padding-bottom: 0.6666667em;

    padding-inline-start: 1em;
}

.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;

    margin-bottom: 1.1428571em;

    padding-inline-start: 1.5714286em;
}

.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;

    margin-bottom: 1.1428571em;

    padding-inline-start: 1.5714286em;
}

.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.2857143em;

    margin-bottom: 0.2857143em;
}

.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.4285714em;
}

.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.4285714em;
}

.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5714286em;

    margin-bottom: 0.5714286em;
}

.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.1428571em;
}

.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.1428571em;
}

.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5714286em;

    margin-bottom: 0.5714286em;
}

.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;

    margin-bottom: 1.1428571em;
}

.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.1428571em;
}

.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.2857143em;

    padding-inline-start: 1.5714286em;
}

.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2.8571429em;

    margin-bottom: 2.8571429em;
}

.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8571429em;

    line-height: 1.5;
}

.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 1em;

    padding-bottom: 0.6666667em;

    padding-inline-start: 1em;
}

.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-top: 0.6666667em;

    padding-inline-end: 1em;

    padding-bottom: 0.6666667em;

    padding-inline-start: 1em;
}

.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;
}

.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8571429em;

    line-height: 1.3333333;

    margin-top: 0.6666667em;
}

.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 0;
}

.prose-lg {

    font-size: 1.125rem;

    line-height: 1.7777778;
}

.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;

    margin-bottom: 1.3333333em;
}

.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.2222222em;

    line-height: 1.4545455;

    margin-top: 1.0909091em;

    margin-bottom: 1.0909091em;
}

.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.6666667em;

    margin-bottom: 1.6666667em;

    padding-inline-start: 1em;
}

.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 2.6666667em;

    margin-top: 0;

    margin-bottom: 0.8333333em;

    line-height: 1;
}

.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.6666667em;

    margin-top: 1.8666667em;

    margin-bottom: 1.0666667em;

    line-height: 1.3333333;
}

.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 1.3333333em;

    margin-top: 1.6666667em;

    margin-bottom: 0.6666667em;

    line-height: 1.5;
}

.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7777778em;

    margin-bottom: 0.4444444em;

    line-height: 1.5555556;
}

.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7777778em;

    margin-bottom: 1.7777778em;
}

.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7777778em;

    margin-bottom: 1.7777778em;
}

.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7777778em;

    margin-bottom: 1.7777778em;
}

.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;

    border-radius: 0.3125rem;

    padding-top: 0.2222222em;

    padding-inline-end: 0.4444444em;

    padding-bottom: 0.2222222em;

    padding-inline-start: 0.4444444em;
}

.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;
}

.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8666667em;
}

.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.875em;
}

.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;

    line-height: 1.75;

    margin-top: 2em;

    margin-bottom: 2em;

    border-radius: 0.375rem;

    padding-top: 1em;

    padding-inline-end: 1.5em;

    padding-bottom: 1em;

    padding-inline-start: 1.5em;
}

.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;

    margin-bottom: 1.3333333em;

    padding-inline-start: 1.5555556em;
}

.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;

    margin-bottom: 1.3333333em;

    padding-inline-start: 1.5555556em;
}

.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.6666667em;

    margin-bottom: 0.6666667em;
}

.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.4444444em;
}

.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.4444444em;
}

.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.8888889em;

    margin-bottom: 0.8888889em;
}

.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;
}

.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.3333333em;
}

.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;
}

.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.3333333em;
}

.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.8888889em;

    margin-bottom: 0.8888889em;
}

.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;

    margin-bottom: 1.3333333em;
}

.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.3333333em;
}

.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.6666667em;

    padding-inline-start: 1.5555556em;
}

.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 3.1111111em;

    margin-bottom: 3.1111111em;
}

.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;

    line-height: 1.5;
}

.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0.75em;

    padding-bottom: 0.75em;

    padding-inline-start: 0.75em;
}

.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-top: 0.75em;

    padding-inline-end: 0.75em;

    padding-bottom: 0.75em;

    padding-inline-start: 0.75em;
}

.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}

.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}

.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.7777778em;

    margin-bottom: 1.7777778em;
}

.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}

.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-size: 0.8888889em;

    line-height: 1.5;

    margin-top: 1em;
}

.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}

.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 0;
}
  .container-page {

    margin-left: auto;

    margin-right: auto;

    width: 100%;

    max-width: 72rem;

    padding-left: 1.5rem;

    padding-right: 1.5rem;
}
  .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 0.375rem;

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-bg-opacity, 1));

    padding-left: 1.25rem;

    padding-right: 1.25rem;

    padding-top: 0.75rem;

    padding-bottom: 0.75rem;

    font-size: 0.875rem;

    line-height: 1.25rem;

    font-weight: 500;

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}
  .btn-primary:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-800, 33 43 59) / var(--tw-bg-opacity, 1));
}
  .btn-primary:focus {

    outline: 2px solid transparent;

    outline-offset: 2px;
}
  .btn-primary:focus-visible {

    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);

    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);

    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);

    --tw-ring-opacity: 1;

    --tw-ring-color: rgb(var(--blk-gold-400, 203 160 43) / var(--tw-ring-opacity, 1));
}
  .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 0.375rem;

    border-width: 1px;

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-300, 155 173 196) / var(--tw-border-opacity, 1));

    --tw-bg-opacity: 1;

    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));

    padding-left: 1.25rem;

    padding-right: 1.25rem;

    padding-top: 0.75rem;

    padding-bottom: 0.75rem;

    font-size: 0.875rem;

    line-height: 1.25rem;

    font-weight: 500;

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-text-opacity, 1));

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}
  .btn-outline:hover {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-500, 80 105 136) / var(--tw-border-opacity, 1));

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-700, 50 66 89) / var(--tw-text-opacity, 1));
}
  .btn-outline:focus {

    outline: 2px solid transparent;

    outline-offset: 2px;
}
  .btn-outline:focus-visible {

    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);

    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);

    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);

    --tw-ring-opacity: 1;

    --tw-ring-color: rgb(var(--blk-gold-400, 203 160 43) / var(--tw-ring-opacity, 1));
}
  /* Le corps d'un article suit le THÈME du site, pas une palette de plugin.
     `prose-slate` peignait le texte, les puces, les filets et les tableaux en
     gris ardoise, quelle que soit la couleur choisie dans Réglages → Thème :
     seuls les titres et les liens suivaient. Un article ressortait donc d'un
     autre camaïeu que la page qui l'entoure.

     Tailwind Typography expose sa palette en variables : on les branche sur
     les jetons du site (`--blk-*`, posés par BaseLayout.astro à partir du
     thème). Les replis sont ceux de la config Tailwind — même valeurs, pour
     qu'une page rendue sans variables garde la même teinte.

     ⚠ `--tw-prose-kbd-shadows` attend un TRIPLET « R V B » nu et non une
     couleur : Tailwind l'écrit lui-même en `rgb(var(…) / 10%)`. */
  .prose-aether {

    color: var(--tw-prose-body);

    max-width: 65ch;
}
  .prose-aether :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;

    margin-bottom: 1.25em;
}
  .prose-aether :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-lead);

    font-size: 1.25em;

    line-height: 1.6;

    margin-top: 1.2em;

    margin-bottom: 1.2em;
}
  .prose-aether :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-links);

    text-decoration: underline;

    font-weight: 500;
}
  .prose-aether :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-bold);

    font-weight: 600;
}
  .prose-aether :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: decimal;

    margin-top: 1.25em;

    margin-bottom: 1.25em;

    padding-inline-start: 1.625em;
}
  .prose-aether :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-alpha;
}
  .prose-aether :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-alpha;
}
  .prose-aether :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-alpha;
}
  .prose-aether :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-alpha;
}
  .prose-aether :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-roman;
}
  .prose-aether :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-roman;
}
  .prose-aether :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: upper-roman;
}
  .prose-aether :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: lower-roman;
}
  .prose-aether :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: decimal;
}
  .prose-aether :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    list-style-type: disc;

    margin-top: 1.25em;

    margin-bottom: 1.25em;

    padding-inline-start: 1.625em;
}
  .prose-aether :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {

    font-weight: 400;

    color: var(--tw-prose-counters);
}
  .prose-aether :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {

    color: var(--tw-prose-bullets);
}
  .prose-aether :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    margin-top: 1.25em;
}
  .prose-aether :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-color: var(--tw-prose-hr);

    border-top-width: 1px;

    margin-top: 3em;

    margin-bottom: 3em;
}
  .prose-aether :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 500;

    font-style: italic;

    color: var(--tw-prose-quotes);

    border-inline-start-width: 0.25rem;

    border-inline-start-color: var(--tw-prose-quote-borders);

    quotes: "\201C""\201D""\2018""\2019";

    margin-top: 1.6em;

    margin-bottom: 1.6em;

    padding-inline-start: 1em;
}
  .prose-aether :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: open-quote;
}
  .prose-aether :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: close-quote;
}
  .prose-aether :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 800;

    font-size: 2.25em;

    margin-top: 0;

    margin-bottom: 0.8888889em;

    line-height: 1.1111111;
}
  .prose-aether :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 900;

    color: inherit;
}
  .prose-aether :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 700;

    font-size: 1.5em;

    margin-top: 2em;

    margin-bottom: 1em;

    line-height: 1.3333333;
}
  .prose-aether :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 800;

    color: inherit;
}
  .prose-aether :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    font-size: 1.25em;

    margin-top: 1.6em;

    margin-bottom: 0.6em;

    line-height: 1.6;
}
  .prose-aether :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 700;

    color: inherit;
}
  .prose-aether :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    margin-top: 1.5em;

    margin-bottom: 0.5em;

    line-height: 1.5;
}
  .prose-aether :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 700;

    color: inherit;
}
  .prose-aether :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}
  .prose-aether :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    display: block;

    margin-top: 2em;

    margin-bottom: 2em;
}
  .prose-aether :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}
  .prose-aether :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    font-weight: 500;

    font-family: inherit;

    color: var(--tw-prose-kbd);

    box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);

    font-size: 0.875em;

    border-radius: 0.3125rem;

    padding-top: 0.1875em;

    padding-inline-end: 0.375em;

    padding-bottom: 0.1875em;

    padding-inline-start: 0.375em;
}
  .prose-aether :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-code);

    font-weight: 600;

    font-size: 0.875em;
}
  .prose-aether :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: "`";
}
  .prose-aether :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: "`";
}
  .prose-aether :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;

    font-size: 0.875em;
}
  .prose-aether :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;

    font-size: 0.9em;
}
  .prose-aether :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: inherit;
}
  .prose-aether :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-pre-code);

    background-color: var(--tw-prose-pre-bg);

    overflow-x: auto;

    font-weight: 400;

    font-size: 0.875em;

    line-height: 1.7142857;

    margin-top: 1.7142857em;

    margin-bottom: 1.7142857em;

    border-radius: 0.375rem;

    padding-top: 0.8571429em;

    padding-inline-end: 1.1428571em;

    padding-bottom: 0.8571429em;

    padding-inline-start: 1.1428571em;
}
  .prose-aether :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    background-color: transparent;

    border-width: 0;

    border-radius: 0;

    padding: 0;

    font-weight: inherit;

    color: inherit;

    font-size: inherit;

    font-family: inherit;

    line-height: inherit;
}
  .prose-aether :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {

    content: none;
}
  .prose-aether :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {

    content: none;
}
  .prose-aether :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    width: 100%;

    table-layout: auto;

    margin-top: 2em;

    margin-bottom: 2em;

    font-size: 0.875em;

    line-height: 1.7142857;
}
  .prose-aether :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 1px;

    border-bottom-color: var(--tw-prose-th-borders);
}
  .prose-aether :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-headings);

    font-weight: 600;

    vertical-align: bottom;

    padding-inline-end: 0.5714286em;

    padding-bottom: 0.5714286em;

    padding-inline-start: 0.5714286em;
}
  .prose-aether :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 1px;

    border-bottom-color: var(--tw-prose-td-borders);
}
  .prose-aether :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-bottom-width: 0;
}
  .prose-aether :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    vertical-align: baseline;
}
  .prose-aether :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    border-top-width: 1px;

    border-top-color: var(--tw-prose-th-borders);
}
  .prose-aether :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    vertical-align: top;
}
  .prose-aether :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    text-align: start;
}
  .prose-aether :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}
  .prose-aether :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    color: var(--tw-prose-captions);

    font-size: 0.875em;

    line-height: 1.4285714;

    margin-top: 0.8571429em;
}
  .prose-aether {

    --tw-prose-body: #374151;

    --tw-prose-headings: #111827;

    --tw-prose-lead: #4b5563;

    --tw-prose-links: #111827;

    --tw-prose-bold: #111827;

    --tw-prose-counters: #6b7280;

    --tw-prose-bullets: #d1d5db;

    --tw-prose-hr: #e5e7eb;

    --tw-prose-quotes: #111827;

    --tw-prose-quote-borders: #e5e7eb;

    --tw-prose-captions: #6b7280;

    --tw-prose-kbd: #111827;

    --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);

    --tw-prose-code: #111827;

    --tw-prose-pre-code: #e5e7eb;

    --tw-prose-pre-bg: #1f2937;

    --tw-prose-th-borders: #d1d5db;

    --tw-prose-td-borders: #e5e7eb;

    --tw-prose-invert-body: #d1d5db;

    --tw-prose-invert-headings: #fff;

    --tw-prose-invert-lead: #9ca3af;

    --tw-prose-invert-links: #fff;

    --tw-prose-invert-bold: #fff;

    --tw-prose-invert-counters: #9ca3af;

    --tw-prose-invert-bullets: #4b5563;

    --tw-prose-invert-hr: #374151;

    --tw-prose-invert-quotes: #f3f4f6;

    --tw-prose-invert-quote-borders: #374151;

    --tw-prose-invert-captions: #9ca3af;

    --tw-prose-invert-kbd: #fff;

    --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);

    --tw-prose-invert-code: #fff;

    --tw-prose-invert-pre-code: #d1d5db;

    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);

    --tw-prose-invert-th-borders: #4b5563;

    --tw-prose-invert-td-borders: #374151;

    font-size: 1rem;

    line-height: 1.75;
}
  .prose-aether :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;

    margin-bottom: 0;
}
  .prose-aether :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5em;

    margin-bottom: 0.5em;
}
  .prose-aether :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.375em;
}
  .prose-aether :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0.375em;
}
  .prose-aether :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.75em;

    margin-bottom: 0.75em;
}
  .prose-aether :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;
}
  .prose-aether :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.25em;
}
  .prose-aether :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;
}
  .prose-aether :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 1.25em;
}
  .prose-aether :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.75em;

    margin-bottom: 0.75em;
}
  .prose-aether :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 1.25em;

    margin-bottom: 1.25em;
}
  .prose-aether :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0.5em;

    padding-inline-start: 1.625em;
}
  .prose-aether :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}
  .prose-aether :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}
  .prose-aether :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}
  .prose-aether :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}
  .prose-aether :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}
  .prose-aether :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}
  .prose-aether :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-top: 0.5714286em;

    padding-inline-end: 0.5714286em;

    padding-bottom: 0.5714286em;

    padding-inline-start: 0.5714286em;
}
  .prose-aether :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-start: 0;
}
  .prose-aether :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    padding-inline-end: 0;
}
  .prose-aether :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 2em;

    margin-bottom: 2em;
}
  .prose-aether :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-top: 0;
}
  .prose-aether :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {

    margin-bottom: 0;
}
  .prose-aether {

    max-width: 72ch;
}
  .prose-aether :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {

    font-family: var(--font-display, "Fraunces"), ui-serif, Georgia, serif;

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-text-opacity, 1));
}
  .prose-aether :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-700, 50 66 89) / var(--tw-text-opacity, 1));
}
  .prose-aether :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-gold-500, 169 130 32) / var(--tw-text-opacity, 1));
}
  .prose-aether {

    --tw-prose-body: rgb(var(--blk-ink-700, 88 77 85));
    --tw-prose-headings: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-lead: rgb(var(--blk-ink-600, 106 96 103));
    --tw-prose-links: rgb(var(--blk-ink-700, 88 77 85));
    --tw-prose-bold: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-counters: rgb(var(--blk-ink-500, 126 117 123));
    --tw-prose-bullets: rgb(var(--blk-ink-300, 181 176 179));
    --tw-prose-hr: rgb(var(--blk-ink-200, 212 209 211));
    --tw-prose-quotes: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-quote-borders: rgb(var(--blk-ink-200, 212 209 211));
    --tw-prose-captions: rgb(var(--blk-ink-500, 126 117 123));
    --tw-prose-kbd: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-kbd-shadows: var(--blk-ink-900, 59 46 55);
    --tw-prose-code: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-pre-code: rgb(var(--blk-ink-100, 235 234 235));
    --tw-prose-pre-bg: rgb(var(--blk-ink-900, 59 46 55));
    --tw-prose-th-borders: rgb(var(--blk-ink-300, 181 176 179));
    --tw-prose-td-borders: rgb(var(--blk-ink-200, 212 209 211));
  }
.pointer-events-none {

    pointer-events: none;
}
.visible {

    visibility: visible;
}
.invisible {

    visibility: hidden;
}
.collapse {

    visibility: collapse;
}
.static {

    position: static;
}
.fixed {

    position: fixed;
}
.absolute {

    position: absolute;
}
.relative {

    position: relative;
}
.sticky {

    position: sticky;
}
.inset-0 {

    inset: 0px;
}
.-bottom-20 {

    bottom: -5rem;
}
.-top-20 {

    top: -5rem;
}
.left-0 {

    left: 0px;
}
.left-6 {

    left: 1.5rem;
}
.top-0 {

    top: 0px;
}
.top-8 {

    top: 2rem;
}
.top-full {

    top: 100%;
}
.z-10 {

    z-index: 10;
}
.z-40 {

    z-index: 40;
}
.z-50 {

    z-index: 50;
}
.mx-auto {

    margin-left: auto;

    margin-right: auto;
}
.my-8 {

    margin-top: 2rem;

    margin-bottom: 2rem;
}
.mb-10 {

    margin-bottom: 2.5rem;
}
.mb-2 {

    margin-bottom: 0.5rem;
}
.mb-3 {

    margin-bottom: 0.75rem;
}
.mb-4 {

    margin-bottom: 1rem;
}
.mb-6 {

    margin-bottom: 1.5rem;
}
.mb-8 {

    margin-bottom: 2rem;
}
.ml-auto {

    margin-left: auto;
}
.mr-0 {

    margin-right: 0px;
}
.mt-1 {

    margin-top: 0.25rem;
}
.mt-10 {

    margin-top: 2.5rem;
}
.mt-12 {

    margin-top: 3rem;
}
.mt-16 {

    margin-top: 4rem;
}
.mt-2 {

    margin-top: 0.5rem;
}
.mt-20 {

    margin-top: 5rem;
}
.mt-24 {

    margin-top: 6rem;
}
.mt-3 {

    margin-top: 0.75rem;
}
.mt-4 {

    margin-top: 1rem;
}
.mt-5 {

    margin-top: 1.25rem;
}
.mt-6 {

    margin-top: 1.5rem;
}
.mt-8 {

    margin-top: 2rem;
}
.\!block {

    display: block !important;
}
.block {

    display: block;
}
.inline-block {

    display: inline-block;
}
.inline {

    display: inline;
}
.flex {

    display: flex;
}
.inline-flex {

    display: inline-flex;
}
.table {

    display: table;
}
.grid {

    display: grid;
}
.contents {

    display: contents;
}
.hidden {

    display: none;
}
.aspect-\[4\/3\] {

    aspect-ratio: 4/3;
}
.aspect-video {

    aspect-ratio: 16 / 9;
}
.h-1\.5 {

    height: 0.375rem;
}
.h-16 {

    height: 4rem;
}
.h-72 {

    height: 18rem;
}
.h-\[60vh\] {

    height: 60vh;
}
.h-full {

    height: 100%;
}
.h-screen {

    height: 100vh;
}
.max-h-12 {

    max-height: 3rem;
}
.min-h-full {

    min-height: 100%;
}
.w-1\.5 {

    width: 0.375rem;
}
.w-full {

    width: 100%;
}
.min-w-44 {

    min-width: 11rem;
}
.max-w-2xl {

    max-width: 42rem;
}
.max-w-3xl {

    max-width: 48rem;
}
.max-w-5xl {

    max-width: 64rem;
}
.max-w-md {

    max-width: 28rem;
}
.max-w-none {

    max-width: none;
}
.max-w-prose {

    max-width: 72ch;
}
.max-w-xl {

    max-width: 36rem;
}
.max-w-xs {

    max-width: 20rem;
}
.flex-1 {

    flex: 1 1 0%;
}
.flex-none {

    flex: none;
}
.shrink-0 {

    flex-shrink: 0;
}
.border-collapse {

    border-collapse: collapse;
}
.transform {

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-default {

    cursor: default;
}
.cursor-pointer {

    cursor: pointer;
}
.resize {

    resize: both;
}
.grid-cols-2 {

    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {

    flex-direction: column;
}
.flex-wrap {

    flex-wrap: wrap;
}
.items-center {

    align-items: center;
}
.justify-start {

    justify-content: flex-start;
}
.justify-end {

    justify-content: flex-end;
}
.justify-center {

    justify-content: center;
}
.justify-between {

    justify-content: space-between;
}
.gap-1 {

    gap: 0.25rem;
}
.gap-10 {

    gap: 2.5rem;
}
.gap-12 {

    gap: 3rem;
}
.gap-2 {

    gap: 0.5rem;
}
.gap-3 {

    gap: 0.75rem;
}
.gap-4 {

    gap: 1rem;
}
.gap-5 {

    gap: 1.25rem;
}
.gap-6 {

    gap: 1.5rem;
}
.gap-8 {

    gap: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-16 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-y-reverse: 0;

    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));

    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-ink-100 > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-opacity: 1;

    border-color: rgb(var(--blk-ink-100, 228 233 241) / var(--tw-divide-opacity, 1));
}
.divide-slate-200 > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-opacity: 1;

    border-color: rgb(226 232 240 / var(--tw-divide-opacity, 1));
}
.overflow-hidden {

    overflow: hidden;
}
.truncate {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}
.whitespace-nowrap {

    white-space: nowrap;
}
.rounded {

    border-radius: 0.25rem;
}
.rounded-full {

    border-radius: 9999px;
}
.rounded-lg {

    border-radius: 0.5rem;
}
.rounded-md {

    border-radius: 0.375rem;
}
.border {

    border-width: 1px;
}
.border-b {

    border-bottom-width: 1px;
}
.border-t {

    border-top-width: 1px;
}
.border-dashed {

    border-style: dashed;
}
.border-ink-100 {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-100, 228 233 241) / var(--tw-border-opacity, 1));
}
.border-ink-200 {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-200, 197 207 223) / var(--tw-border-opacity, 1));
}
.border-ink-300 {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-300, 155 173 196) / var(--tw-border-opacity, 1));
}
.border-ink-900 {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-border-opacity, 1));
}
.border-slate-200 {

    --tw-border-opacity: 1;

    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-400 {

    --tw-border-opacity: 1;

    border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}
.bg-amber-500 {

    --tw-bg-opacity: 1;

    background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.bg-gold-500 {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-gold-500, 169 130 32) / var(--tw-bg-opacity, 1));
}
.bg-ink-100 {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-100, 228 233 241) / var(--tw-bg-opacity, 1));
}
.bg-ink-50 {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-50, 245 247 250) / var(--tw-bg-opacity, 1));
}
.bg-ink-900 {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-bg-opacity, 1));
}
.bg-ink-900\/40 {

    background-color: rgb(var(--blk-ink-900, 15 23 42) / 0.4);
}
.bg-slate-100 {

    --tw-bg-opacity: 1;

    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {

    --tw-bg-opacity: 1;

    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-900 {

    --tw-bg-opacity: 1;

    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-slate-900\/40 {

    background-color: rgb(15 23 42 / 0.4);
}
.bg-white {

    --tw-bg-opacity: 1;

    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/80 {

    background-color: rgb(255 255 255 / 0.8);
}
.bg-cover {

    background-size: cover;
}
.bg-center {

    background-position: center;
}
.object-cover {

    object-fit: cover;
}
.p-3 {

    padding: 0.75rem;
}
.p-5 {

    padding: 1.25rem;
}
.p-6 {

    padding: 1.5rem;
}
.px-10 {

    padding-left: 2.5rem;

    padding-right: 2.5rem;
}
.px-3 {

    padding-left: 0.75rem;

    padding-right: 0.75rem;
}
.px-6 {

    padding-left: 1.5rem;

    padding-right: 1.5rem;
}
.px-8 {

    padding-left: 2rem;

    padding-right: 2rem;
}
.py-1 {

    padding-top: 0.25rem;

    padding-bottom: 0.25rem;
}
.py-10 {

    padding-top: 2.5rem;

    padding-bottom: 2.5rem;
}
.py-12 {

    padding-top: 3rem;

    padding-bottom: 3rem;
}
.py-16 {

    padding-top: 4rem;

    padding-bottom: 4rem;
}
.py-2 {

    padding-top: 0.5rem;

    padding-bottom: 0.5rem;
}
.py-20 {

    padding-top: 5rem;

    padding-bottom: 5rem;
}
.py-24 {

    padding-top: 6rem;

    padding-bottom: 6rem;
}
.py-3 {

    padding-top: 0.75rem;

    padding-bottom: 0.75rem;
}
.py-5 {

    padding-top: 1.25rem;

    padding-bottom: 1.25rem;
}
.py-8 {

    padding-top: 2rem;

    padding-bottom: 2rem;
}
.pt-10 {

    padding-top: 2.5rem;
}
.text-left {

    text-align: left;
}
.text-center {

    text-align: center;
}
.text-right {

    text-align: right;
}
.font-display {

    font-family: var(--font-display, "Fraunces"), ui-serif, Georgia, serif;
}
.font-sans {

    font-family: var(--font-body, Inter), ui-sans-serif, system-ui, sans-serif;
}
.font-serif {

    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.text-2xl {

    font-size: 1.5rem;

    line-height: 2rem;
}
.text-3xl {

    font-size: 1.875rem;

    line-height: 2.25rem;
}
.text-4xl {

    font-size: 2.25rem;

    line-height: 2.5rem;
}
.text-5xl {

    font-size: 3rem;

    line-height: 1;
}
.text-base {

    font-size: 1rem;

    line-height: 1.5rem;
}
.text-lg {

    font-size: 1.125rem;

    line-height: 1.75rem;
}
.text-sm {

    font-size: 0.875rem;

    line-height: 1.25rem;
}
.text-xl {

    font-size: 1.25rem;

    line-height: 1.75rem;
}
.text-xs {

    font-size: 0.75rem;

    line-height: 1rem;
}
.font-medium {

    font-weight: 500;
}
.font-semibold {

    font-weight: 600;
}
.uppercase {

    text-transform: uppercase;
}
.italic {

    font-style: italic;
}
.leading-relaxed {

    line-height: 1.625;
}
.tracking-\[0\.2em\] {

    letter-spacing: 0.2em;
}
.tracking-\[0\.3em\] {

    letter-spacing: 0.3em;
}
.tracking-tight {

    letter-spacing: -0.025em;
}
.tracking-wide {

    letter-spacing: 0.025em;
}
.tracking-wider {

    letter-spacing: 0.05em;
}
.text-amber-300 {

    --tw-text-opacity: 1;

    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.text-amber-500 {

    --tw-text-opacity: 1;

    color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-600 {

    --tw-text-opacity: 1;

    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-emerald-600 {

    --tw-text-opacity: 1;

    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-gold-300 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-gold-300, 220 184 76) / var(--tw-text-opacity, 1));
}
.text-gold-500 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-gold-500, 169 130 32) / var(--tw-text-opacity, 1));
}
.text-gold-600 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-gold-600, 124 94 21) / var(--tw-text-opacity, 1));
}
.text-ink-200 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-200, 197 207 223) / var(--tw-text-opacity, 1));
}
.text-ink-300 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-300, 155 173 196) / var(--tw-text-opacity, 1));
}
.text-ink-400 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-400, 111 134 164) / var(--tw-text-opacity, 1));
}
.text-ink-500 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-500, 80 105 136) / var(--tw-text-opacity, 1));
}
.text-ink-600 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-600, 62 82 109) / var(--tw-text-opacity, 1));
}
.text-ink-700 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-700, 50 66 89) / var(--tw-text-opacity, 1));
}
.text-ink-800 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-800, 33 43 59) / var(--tw-text-opacity, 1));
}
.text-ink-900 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-text-opacity, 1));
}
.text-red-600 {

    --tw-text-opacity: 1;

    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-slate-300 {

    --tw-text-opacity: 1;

    color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-slate-400 {

    --tw-text-opacity: 1;

    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {

    --tw-text-opacity: 1;

    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {

    --tw-text-opacity: 1;

    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-800 {

    --tw-text-opacity: 1;

    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-slate-900 {

    --tw-text-opacity: 1;

    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-white {

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/75 {

    color: rgb(255 255 255 / 0.75);
}
.underline {

    text-decoration-line: underline;
}
.line-through {

    text-decoration-line: line-through;
}
.no-underline {

    text-decoration-line: none;
}
.opacity-60 {

    opacity: 0.6;
}
.opacity-70 {

    opacity: 0.7;
}
.opacity-80 {

    opacity: 0.8;
}
.opacity-85 {

    opacity: 0.85;
}
.shadow {

    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);

    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {

    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {

    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {

    outline-style: solid;
}
.blur {

    --tw-blur: blur(8px);

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-lg {

    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-md {

    --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {

    --tw-grayscale: grayscale(100%);

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur {

    --tw-backdrop-blur: blur(8px);

    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);

    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

/* Les classes composant du .com (sites/aether/src/styles/global.css). Elles
   sont recopiées ici parce qu'un satellite ne compile pas ce fichier-là ; la
   règle reste « une seule définition par classe » — si l'une change là-bas,
   elle change ici. */

/* Marquee / carrousel / embed — les règles que le layout du .com pose en
   `\3c style is:global>`. Sans elles, un bloc « logos clients » ne défile pas et
   un embed n'a pas de hauteur. */
.aether-marquee { overflow: hidden; }
.aether-marquee-track {
  display: flex;
  width: max-content;
  animation: aether-marquee linear infinite;
}
.aether-marquee:hover .aether-marquee-track { animation-play-state: paused; }
.aether-marquee--nopause:hover .aether-marquee-track { animation-play-state: running; }
@keyframes aether-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.aether-carousel { overflow: hidden; }
.aether-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .aether-marquee-track { animation: none !important; }
  .aether-carousel-track { transition: none !important; }
}
[data-embed] { width: 100%; }
[data-embed] iframe { width: 100%; border: 0; display: block; }
[data-embed][style*="aspect-ratio"] iframe { height: 100%; }

/* ── Habillage « fx-* » — le panneau Habillage de l'éditeur ─────────────────
   Classes posables par l'éditeur ET par un agent (site_update_page). Deux
   règles absolues : couleurs UNIQUEMENT via les jetons --blk-* (le thème du
   site pilote tout), et chaque mouvement sous garde prefers-reduced-motion.
   ⚠ Ce bloc existe en DEUX exemplaires (blocks.css pour les satellites,
   global.css pour le .com) — identiques au caractère près, un test compare. */
.fx-glow{box-shadow:0 0 var(--fx-glow-size,44px) -6px var(--fx-glow-color,rgb(var(--blk-gold-500,242 82 31)/.5))}
.fx-glass{background:rgb(var(--blk-ink-50,247 247 247)/.55);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border:1px solid rgb(var(--blk-ink-900,59 46 55)/.1)}
.fx-grain{position:relative;isolation:isolate}
.fx-grain::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  opacity:var(--fx-grain-opacity,.06);mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E")}
.fx-gradient-anim{background-image:linear-gradient(115deg,
  rgb(var(--blk-gold-500,242 82 31)/.14),
  rgb(var(--blk-ink-100,235 234 235)/.55) 45%,
  rgb(var(--blk-gold-300,248 158 130)/.16));
  background-size:220% 220%;animation:fx-gradient var(--fx-gradient-speed,16s) ease-in-out infinite}
@keyframes fx-gradient{0%{background-position:0% 30%}50%{background-position:100% 70%}100%{background-position:0% 30%}}
.fx-hover-zoom{overflow:hidden}
.fx-hover-zoom img{transition:transform .55s cubic-bezier(.22,1,.36,1)}
.fx-hover-zoom:hover img,img.fx-hover-zoom:hover{transform:scale(1.05)}
img.fx-hover-zoom{transition:transform .55s cubic-bezier(.22,1,.36,1)}
.fx-hover-color,.fx-hover-color img,.fx-hover-color video{filter:grayscale(1);
  transition:filter .5s ease,opacity .5s ease}
.fx-hover-color:hover,.fx-hover-color:hover img,.fx-hover-color:hover video{filter:grayscale(0)}
.fx-hover-lift{transition:transform .25s ease,box-shadow .25s ease}
.fx-hover-lift:hover{transform:translateY(-4px);
  box-shadow:0 14px 34px -12px var(--fx-shadow-color,rgb(var(--blk-ink-900,59 46 55)/.35))}
.fx-text-image{background-size:cover;background-position:center;
  -webkit-background-clip:text;background-clip:text;
  color:transparent;-webkit-text-fill-color:transparent}
.fx-veil{position:relative}
.fx-veil::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:var(--fx-veil-color,rgb(var(--blk-ink-900,59 46 55)));
  opacity:var(--fx-veil-opacity,.5)}
/* Les 4 ombres composent taille x pulse (anime) x flou (--fx-relief-blurf,
   50 % du curseur = facteur 2) + offsets (--fx-relief-ox/oy, animes par la
   circulation et l'aller-retour). @property rend ces variables INTERPOLABLES
   - sans lui, navigateur ancien = ombre statique, jamais cassee. */
@property --fx-relief-pulse{syntax:'<number>';inherits:false;initial-value:1}
@property --fx-relief-ox{syntax:'<length>';inherits:false;initial-value:0px}
@property --fx-relief-oy{syntax:'<length>';inherits:false;initial-value:0px}
/* Orientation de l'ombre exterieure : --fx-relief-dirx/diry (unitless,
   defaut 0/1 = vers le bas ; haut 0/-1, gauche -1/0, droite 1/0). */
.fx-shadow-out{box-shadow:calc(var(--fx-relief-size,26px)*var(--fx-relief-dirx,0)*var(--fx-relief-pulse,1) + var(--fx-relief-ox,0px)) calc(var(--fx-relief-size,26px)*var(--fx-relief-diry,1)*var(--fx-relief-pulse,1) + var(--fx-relief-oy,0px)) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.55) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-shadow-in{box-shadow:inset var(--fx-relief-ox,0px) var(--fx-relief-oy,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-top{box-shadow:inset var(--fx-relief-ox,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-bottom{box-shadow:inset var(--fx-relief-ox,0px) calc(var(--fx-relief-size,26px)*-1*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-top.fx-edge-shadow-bottom{box-shadow:inset var(--fx-relief-ox,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45)),inset var(--fx-relief-ox,0px) calc(var(--fx-relief-size,26px)*-1*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-left{box-shadow:inset calc(var(--fx-relief-size,26px)*var(--fx-relief-pulse,1)) var(--fx-relief-oy,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-right{box-shadow:inset calc(var(--fx-relief-size,26px)*-1*var(--fx-relief-pulse,1)) var(--fx-relief-oy,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
.fx-edge-shadow-left.fx-edge-shadow-right{box-shadow:inset calc(var(--fx-relief-size,26px)*var(--fx-relief-pulse,1)) var(--fx-relief-oy,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45)),inset calc(var(--fx-relief-size,26px)*-1*var(--fx-relief-pulse,1)) var(--fx-relief-oy,0px) calc(var(--fx-relief-size,26px)*var(--fx-relief-blurf,2)*var(--fx-relief-pulse,1)) calc(var(--fx-relief-size,26px)*-0.5) var(--fx-relief-color,rgb(var(--blk-ink-900,59 46 55)/.45))}
/* Animations d'ombre - une variable multiplicatrice + offsets, partagees
   par toutes les ombres du bloc. Vitesse: --fx-relief-anim-speed. */
.fx-relief-anim-pulse{animation:fxReliefPulse var(--fx-relief-anim-speed,2.4s) ease-in-out infinite}
.fx-relief-anim-respiration{animation:fxReliefRespiration var(--fx-relief-anim-speed,5.5s) ease-in-out infinite}
.fx-relief-anim-eclair{animation:fxReliefEclair var(--fx-relief-anim-speed,3.2s) linear infinite}
.fx-relief-anim-circulation{animation:fxReliefCirculation var(--fx-relief-anim-speed,4s) linear infinite}
.fx-relief-anim-allerretour{animation:fxReliefAllerRetour var(--fx-relief-anim-speed,3s) ease-in-out infinite}
@keyframes fxReliefPulse{50%{--fx-relief-pulse:1.45}}
@keyframes fxReliefRespiration{50%{--fx-relief-pulse:1.45}}
@keyframes fxReliefEclair{0%,6%,10%,100%{--fx-relief-pulse:1}8%{--fx-relief-pulse:2.1}9%{--fx-relief-pulse:1.2}52%{--fx-relief-pulse:1}54%{--fx-relief-pulse:1.8}56%{--fx-relief-pulse:1}}
@keyframes fxReliefCirculation{0%,100%{--fx-relief-ox:0px;--fx-relief-oy:calc(var(--fx-relief-size,26px)*-0.6)}25%{--fx-relief-ox:calc(var(--fx-relief-size,26px)*0.6);--fx-relief-oy:0px}50%{--fx-relief-ox:0px;--fx-relief-oy:calc(var(--fx-relief-size,26px)*0.6)}75%{--fx-relief-ox:calc(var(--fx-relief-size,26px)*-0.6);--fx-relief-oy:0px}}
@keyframes fxReliefAllerRetour{0%,100%{--fx-relief-ox:calc(var(--fx-relief-size,26px)*-0.8)}50%{--fx-relief-ox:calc(var(--fx-relief-size,26px)*0.8)}}
.fx-shape{clip-path:var(--fx-shape-path,none)}
[data-aether-admin] .fx-shape{clip-path:none}
[data-aether-admin] .aether-pm-cell{clip-path:none!important}
/* Scroll cinéma (lot B) — récit épinglé et section horizontale. La scène est
   épinglée par position:sticky (jamais de pin-spacer GSAP) ; en aperçu admin
   les étapes/panneaux se DÉPLIENT (une étape cachée serait inéditable). */
.aether-ss-step{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity .5s ease,visibility .5s ease}
.aether-ss-step.is-active{opacity:1;visibility:visible}
.aether-ss-admin .aether-ss-stage{position:static;height:auto}
.aether-ss-admin .aether-ss-step{position:static;opacity:1;visibility:visible;margin-bottom:2.5rem}
.aether-hs-track{will-change:transform}
.aether-hs-panel{flex:0 0 100vw;min-width:100vw;display:flex;align-items:center}
.aether-hs-admin .aether-hs-stage{position:static;height:auto;overflow:visible}
.aether-hs-admin .aether-hs-track{flex-direction:column;transform:none!important}
.aether-hs-admin .aether-hs-panel{min-width:0;flex-basis:auto;margin-bottom:2.5rem}
@media (max-width: 767px){
  [data-hscroll]{height:auto!important}
  .aether-hs-stage{position:static;height:auto;overflow:visible}
  .aether-hs-track{flex-direction:column;transform:none!important}
  .aether-hs-panel{min-width:0;flex-basis:auto}
}
/* Réseau de particules — le canvas remplit son bloc, le contenu passe dessus. */
.aether-pn-canvas{position:absolute;inset:0;width:100%;height:100%;display:block}
[data-pn-mount]{position:absolute;inset:0;overflow:hidden}

/* Fond de scène — couche plein écran derrière la page, pilotée par les blocs
   (data-backdrop). Deux sous-couches empilées font le fondu croisé. Elle vit
   dans <body>, hors du <main> enregistré par l'éditeur. */
.aether-backdrop{position:fixed;inset:0;z-index:-1;pointer-events:none;overflow:hidden}
.aether-backdrop-layer{position:absolute;inset:0;opacity:0;transition:opacity .7s ease}
.aether-backdrop-layer.is-front{opacity:1}
.aether-backdrop-layer.no-fade{transition:none}
/* Transition « depuis le centre » : la couche qui ARRIVE s'ouvre en cercle
   par-dessus l'ancienne (d'ou le z-index), sans fondu d'opacite. 80 % couvre
   toujours l'ecran — il faut 70,7 % pour atteindre les coins depuis le
   centre, quel que soit le format. */
.aether-backdrop-layer.iris{opacity:1;transition:clip-path .9s cubic-bezier(.22,1,.36,1);z-index:1}
.aether-backdrop-media{position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;background-size:cover;background-position:center}
.aether-backdrop-media video,.aether-backdrop-media canvas{width:100%;height:100%;object-fit:cover}
/* Bloc rendu TRANSPARENT (case du volet Fond de scene) : son fond CSS
   masquait le fond de scene qui vit derriere la page. */
.fx-bloc-transparent{background:transparent!important}
.aether-backdrop-voile{position:absolute;inset:0;opacity:0;
  transition:opacity .7s ease,background-color .7s ease}
/* Fond « défile avec le bloc » (accroche defile) : un fond SIMPLE monté DANS
   la section — il monte/descend avec elle, coupé par ses limites. La section
   reçoit aether-has-defile (stacking context) pour que le fond passe SOUS le
   contenu mais AU-DESSUS du fond propre du bloc. Jamais persisté (balayé par
   l'éditeur à l'enregistrement). */
.aether-has-defile{position:relative;z-index:0}
.aether-backdrop-defile{position:absolute;inset:0;z-index:-1;overflow:hidden;pointer-events:none}

/* Photomontage — templates de composition multi-images. Les coupes vivent en
   CSS (clip-path) ; les coupes ONDULEES referencent les <clipPath> SVG
   responsives injectes par shapes.js (aether-wave-1/2). En apercu admin les
   decoupes se desactivent (regle [data-aether-admin] ci-dessus). */
.aether-pm{display:grid;position:relative;width:100%}
.aether-pm .aether-pm-cell{overflow:hidden;position:relative;min-height:100%}
.aether-pm img{width:100%;height:100%;object-fit:cover;display:block}
.aether-pm--classique-2{grid-template-columns:1fr 1fr;gap:12px}
.aether-pm--classique-3{grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr;gap:12px}
.aether-pm--classique-3 .aether-pm-cell:first-child{grid-row:1/3}
.aether-pm--diagonale-2{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--diagonale-2 .aether-pm-cell{grid-area:1/1}
.aether-pm--diagonale-2 .aether-pm-cell:nth-child(1){clip-path:polygon(0 0,58% 0,44% 100%,0 100%)}
.aether-pm--diagonale-2 .aether-pm-cell:nth-child(2){clip-path:polygon(60% 0,100% 0,100% 100%,46% 100%)}
.aether-pm--diagonale-3{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--diagonale-3 .aether-pm-cell{grid-area:1/1}
.aether-pm--diagonale-3 .aether-pm-cell:nth-child(1){clip-path:polygon(0 0,40% 0,26% 100%,0 100%)}
.aether-pm--diagonale-3 .aether-pm-cell:nth-child(2){clip-path:polygon(42% 0,72% 0,58% 100%,28% 100%)}
.aether-pm--diagonale-3 .aether-pm-cell:nth-child(3){clip-path:polygon(74% 0,100% 0,100% 100%,60% 100%)}
.aether-pm--hexa-3{grid-template-columns:repeat(3,1fr);gap:10px;padding-block:4%}
.aether-pm--hexa-3 .aether-pm-cell{clip-path:polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%)}
.aether-pm--hexa-3 .aether-pm-cell:nth-child(2){transform:translateY(7%)}
.aether-pm--vague-2{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--vague-2 .aether-pm-cell{grid-area:1/1}
.aether-pm--vague-2 .aether-pm-cell:nth-child(1){clip-path:url(#aether-wave-1)}
.aether-pm--vague-2 .aether-pm-cell:nth-child(2){clip-path:url(#aether-wave-2)}
/* v2 — nouveaux templates. */
.aether-pm--classique-4{grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:12px}
.aether-pm--bandeau-5{grid-template-columns:repeat(4,1fr);grid-template-rows:1.6fr 1fr;gap:10px}
.aether-pm--bandeau-5 .aether-pm-cell:first-child{grid-column:1/5}
.aether-pm--grille-6{grid-template-columns:repeat(3,1fr);grid-template-rows:1fr 1fr;gap:10px}
.aether-pm--mosaique-7{grid-template-columns:repeat(4,1fr);grid-template-rows:1fr 1fr 1fr;gap:10px}
.aether-pm--mosaique-7 .aether-pm-cell:nth-child(1){grid-column:1/3;grid-row:1/3}
.aether-pm--mosaique-7 .aether-pm-cell:nth-child(4){grid-column:3/5}
.aether-pm--mosaique-7 .aether-pm-cell:nth-child(5){grid-column:1/2;grid-row:3}
.aether-pm--mosaique-7 .aether-pm-cell:nth-child(6){grid-column:2/3;grid-row:3}
.aether-pm--mosaique-7 .aether-pm-cell:nth-child(7){grid-column:3/5;grid-row:3}
.aether-pm--grille-8{grid-template-columns:repeat(4,1fr);grid-template-rows:1fr 1fr;gap:10px}
.aether-pm--grille-9{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);gap:10px}
.aether-pm--diagonale-4{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--diagonale-4 .aether-pm-cell{grid-area:1/1}
.aether-pm--diagonale-4 .aether-pm-cell:nth-child(1){clip-path:polygon(0 0,30% 0,18% 100%,0 100%)}
.aether-pm--diagonale-4 .aether-pm-cell:nth-child(2){clip-path:polygon(32% 0,55% 0,43% 100%,20% 100%)}
.aether-pm--diagonale-4 .aether-pm-cell:nth-child(3){clip-path:polygon(57% 0,80% 0,68% 100%,45% 100%)}
.aether-pm--diagonale-4 .aether-pm-cell:nth-child(4){clip-path:polygon(82% 0,100% 0,100% 100%,70% 100%)}
.aether-pm--chevrons-4{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--chevrons-4 .aether-pm-cell{grid-area:1/1}
.aether-pm--chevrons-4 .aether-pm-cell:nth-child(1){clip-path:polygon(0 0,22% 0,34% 50%,22% 100%,0 100%,12% 50%)}
.aether-pm--chevrons-4 .aether-pm-cell:nth-child(2){clip-path:polygon(24% 0,48% 0,60% 50%,48% 100%,24% 100%,36% 50%)}
.aether-pm--chevrons-4 .aether-pm-cell:nth-child(3){clip-path:polygon(50% 0,74% 0,86% 50%,74% 100%,50% 100%,62% 50%)}
.aether-pm--chevrons-4 .aether-pm-cell:nth-child(4){clip-path:polygon(76% 0,100% 0,100% 100%,76% 100%,88% 50%)}
/* VRAI nid d'abeille : 7 hexagones flat-top IMBRIQUES (colonnes 2-3-2 :
   pas horizontal 0.75*w, decalage vertical h/2 — les bords se partagent,
   aucun trou). Position absolue en %, l'imbrication tient a tout ratio. */
.aether-pm--hexa-7{display:block;position:relative;overflow:hidden;height:auto!important;aspect-ratio:1/1.02;max-width:min(100%,104vh);margin-inline:auto}
.aether-pm--hexa-7 .aether-pm-cell{position:absolute;width:39%;height:33.4%;min-height:0;
  clip-path:polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%)}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(1){left:30.5%;top:0}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(2){left:1.25%;top:16.7%}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(3){left:59.75%;top:16.7%}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(4){left:30.5%;top:33.3%}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(5){left:1.25%;top:50%}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(6){left:59.75%;top:50%}
.aether-pm--hexa-7 .aether-pm-cell:nth-child(7){left:30.5%;top:66.6%}
.aether-pm--cercles-5{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--cercles-5 .aether-pm-cell{grid-area:1/1}
.aether-pm--cercles-5 .aether-pm-cell:nth-child(1){clip-path:circle(24% at 50% 50%)}
.aether-pm--cercles-5 .aether-pm-cell:nth-child(2){clip-path:circle(12% at 14% 26%)}
.aether-pm--cercles-5 .aether-pm-cell:nth-child(3){clip-path:circle(12% at 86% 26%)}
.aether-pm--cercles-5 .aether-pm-cell:nth-child(4){clip-path:circle(12% at 14% 74%)}
.aether-pm--cercles-5 .aether-pm-cell:nth-child(5){clip-path:circle(12% at 86% 74%)}
.aether-pm--losanges-6{grid-template-columns:repeat(3,1fr);grid-template-rows:1fr 1fr;gap:8px}
.aether-pm--losanges-6 .aether-pm-cell{clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%)}
.aether-pm--triangles-6{grid-template-columns:repeat(6,1fr);grid-template-rows:1fr}
.aether-pm--triangles-6 .aether-pm-cell{margin-inline:-8%}
.aether-pm--triangles-6 .aether-pm-cell:nth-child(odd){clip-path:polygon(50% 0,100% 100%,0 100%)}
.aether-pm--triangles-6 .aether-pm-cell:nth-child(even){clip-path:polygon(0 0,100% 0,50% 100%)}
.aether-pm--vague-3{grid-template-columns:1fr;grid-template-rows:1fr}
.aether-pm--vague-3 .aether-pm-cell{grid-area:1/1}
.aether-pm--vague-3 .aether-pm-cell:nth-child(1){z-index:0}
.aether-pm--vague-3 .aether-pm-cell:nth-child(2){clip-path:url(#aether-wave-1);z-index:1}
.aether-pm--vague-3 .aether-pm-cell:nth-child(3){clip-path:url(#aether-wave-2);z-index:1}
/* Cellule TEXTE : fond transparent, centre — le fond de page/scene se voit. */
.aether-pm-texte{display:flex;align-items:center;justify-content:center;height:100%;
  padding:1rem;text-align:center;font-weight:600}
.aether-pm video{width:100%;height:100%;object-fit:cover;display:block}
.aether-pm [data-3d-mount]{position:absolute;inset:0}
/* Voile INVERSE : le SVG plein cadre au fill-rule evenodd, emis par toHtml. */
.aether-pm-inverse{position:absolute;inset:0;width:100%;height:100%;display:block;pointer-events:none}
/* Cadres dynamiques : drop-shadow SUIT la forme clippee de chaque cellule. */
.aether-pm--cadre-neon .aether-pm-cell{filter:drop-shadow(0 0 6px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))));
  animation:aetherPmNeon var(--pm-frame-speed,2.6s) ease-in-out infinite}
.aether-pm--cadre-arcenciel .aether-pm-cell{filter:drop-shadow(0 0 6px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))));
  animation:aetherPmHue var(--pm-frame-speed,6s) linear infinite}
.aether-pm--cadre-respiration .aether-pm-cell{filter:drop-shadow(0 0 4px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))));
  animation:aetherPmRespire var(--pm-frame-speed,5s) ease-in-out infinite}
@keyframes aetherPmNeon{0%,100%{filter:drop-shadow(0 0 3px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))))}50%{filter:drop-shadow(0 0 12px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))))}}
@keyframes aetherPmHue{to{filter:drop-shadow(0 0 6px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31)))) hue-rotate(360deg)}}
@keyframes aetherPmRespire{0%,100%{filter:drop-shadow(0 0 2px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))))}50%{filter:drop-shadow(0 0 9px var(--pm-frame-color,rgb(var(--blk-gold-500,242 82 31))))}}
/* Mobile : tout montage en PILE lisible — les decoupes tombent. */
@media (max-width: 767px){
  .aether-pm{display:block!important;height:auto!important}
  .aether-pm .aether-pm-cell{clip-path:none!important;transform:none!important;
    position:relative!important;min-height:32vh;margin:0 0 10px}
  .aether-pm-inverse{display:none}
}
/* Slider empile — pile d'images/videos/3D superposees, une couche visible.
   L'ENTRANTE recouvre (st-enter-*, z-index 2) ; la sortante reste dessous et
   perd is-active a la fin — un seul jeu de keyframes. En apercu admin la pile
   se DEPLIE (couches a la suite, editables) et rien ne s'anime. */
.aether-stack{position:relative;overflow:hidden;width:100%}
/* Slider pilote au SCROLL : la piste donne la course (1 ecran par couche),
   le cadre reste fige (sticky, centre verticalement) pendant qu'on defile.
   En apercu admin la piste s'aplatit — le slider s'edite normalement. */
/* Accordeon PILOTE AU SCROLL : la section est une piste (1 ecran par
   question), le contenu reste fige, le defilement ouvre les <details>. */
.aether-acc-drive{position:relative}
.aether-acc-drive>.aether-acc-cadre{position:sticky;top:calc((100vh - var(--acc-h,70vh))/2);height:var(--acc-h,70vh);overflow:auto}
[data-aether-admin] .aether-acc-drive{height:auto!important}
[data-aether-admin] .aether-acc-drive>.aether-acc-cadre{position:relative;top:0;height:auto}
.aether-stack-drive{position:relative}
.aether-stack-drive .aether-stack{position:sticky;top:calc((100vh - var(--stack-h,60vh))/2);height:var(--stack-h,60vh)}
[data-aether-admin] .aether-stack-drive{height:auto!important}
[data-aether-admin] .aether-stack-drive .aether-stack{position:relative;top:0}
.aether-stack-item{position:absolute;inset:0;opacity:0;pointer-events:none;z-index:0;overflow:hidden}
.aether-stack-item.is-active{opacity:1;pointer-events:auto;z-index:1}
.aether-stack-item img,.aether-stack-item video{width:100%;height:100%;object-fit:cover;display:block}
.aether-stack-item[class*="st-enter-"]{z-index:2;opacity:1}
.st-enter-left{animation:stEnterLeft .6s cubic-bezier(.22,1,.36,1) both}
.st-enter-right{animation:stEnterRight .6s cubic-bezier(.22,1,.36,1) both}
.st-enter-up{animation:stEnterUp .6s cubic-bezier(.22,1,.36,1) both}
.st-enter-down{animation:stEnterDown .6s cubic-bezier(.22,1,.36,1) both}
.st-enter-fade{animation:stEnterFade .55s ease both}
.st-enter-drop{animation:stEnterDrop .65s cubic-bezier(.34,1.56,.64,1) both}
.st-enter-popup{animation:stEnterPopup .5s cubic-bezier(.34,1.56,.64,1) both}
@keyframes stEnterLeft{from{transform:translateX(100%)}to{transform:none}}
@keyframes stEnterRight{from{transform:translateX(-100%)}to{transform:none}}
@keyframes stEnterUp{from{transform:translateY(100%)}to{transform:none}}
@keyframes stEnterDown{from{transform:translateY(-100%)}to{transform:none}}
@keyframes stEnterFade{from{opacity:0}to{opacity:1}}
@keyframes stEnterDrop{from{transform:translateY(-104%)}to{transform:none}}
@keyframes stEnterPopup{from{transform:scale(.2);opacity:0}to{transform:none;opacity:1}}
.aether-stack-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  width:2.4rem;height:2.4rem;border-radius:999px;border:0;cursor:pointer;
  background:rgb(var(--blk-ink-900,59 46 55)/.45);color:rgb(var(--blk-paper-50,255 255 255));font-size:1.5rem;line-height:1;
  display:flex;align-items:center;justify-content:center;transition:background .2s}
.aether-stack-arrow:hover{background:rgb(var(--blk-ink-900,59 46 55)/.7)}
.aether-stack-arrow--prev{left:.75rem}
.aether-stack-arrow--next{right:.75rem}
.aether-stack-dots{position:absolute;left:0;right:0;bottom:.8rem;z-index:3;
  display:flex;gap:.5rem;justify-content:center}
.aether-stack-dot{width:.6rem;height:.6rem;border-radius:999px;border:0;cursor:pointer;
  background:rgb(var(--blk-paper-50,255 255 255)/.5);padding:0;transition:background .2s,transform .2s}
.aether-stack-dot.is-on{background:rgb(var(--blk-paper-50,255 255 255));transform:scale(1.25)}
/* Apercu admin : pile depliee, chaque couche editable, aucun controle. */
[data-aether-admin] .aether-stack{height:auto!important;overflow:visible}
[data-aether-admin] .aether-stack-item{position:relative;inset:auto;opacity:1;pointer-events:auto;min-height:180px;margin:0 0 10px}
[data-aether-admin] .aether-stack-arrow,[data-aether-admin] .aether-stack-dots{display:none}


/* Supports runtime : retour élastique du bouton magnétique, inclinaison 3D. */
.fx-magnetic-anim{transition:transform .22s cubic-bezier(.22,1,.36,1);will-change:transform}
.fx-tilting{transition:transform .18s ease-out;transform-style:preserve-3d;will-change:transform}
/* En-tête compact une fois la page défilée (drapeau posé par le moteur).
   `.wrap` = en-tête satellite, `.container-page` = en-tête du .com : chaque
   règle ne matche que son moteur, le bloc reste identique des deux côtés. */
.site-header{position:sticky;top:0;z-index:40}
/* En-tete NON FIGE (reglage du theme) : il defile avec la page. Double
   classe : le CSS custom d'un satellite redeclare souvent .site-header
   (sticky) APRES cette feuille — la specificite doit gagner, pas l'ordre. */
.site-header.site-header--static{position:static}
.site-header .wrap,.site-header .container-page{transition:padding .25s ease,height .25s ease}
body.aether-scrolled .site-header{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  background:rgb(var(--blk-ink-50,247 247 247)/.82);
  box-shadow:0 4px 24px -12px rgb(var(--blk-ink-900,59 46 55)/.3)}
body.aether-scrolled .site-header .wrap{padding-block:.55rem}
body.aether-scrolled .site-header .container-page{height:3.25rem}
@media (prefers-reduced-motion: reduce){
  .fx-gradient-anim{animation:none}
  .fx-relief-anim-pulse,.fx-relief-anim-respiration,.fx-relief-anim-eclair,.fx-relief-anim-circulation,.fx-relief-anim-allerretour{animation:none}
  .aether-pm--cadre-neon .aether-pm-cell,.aether-pm--cadre-arcenciel .aether-pm-cell,.aether-pm--cadre-respiration .aether-pm-cell{animation:none}
  .fx-hover-zoom img,img.fx-hover-zoom,.fx-hover-color,.fx-hover-lift,.fx-magnetic-anim,.fx-tilting{transition:none}
  .aether-stack-item[class*="st-enter-"]{animation:none}
}

/* ── Bloc « Popup » ──────────────────────────────────────────────────────────
   Le bloc vit dans la page (donc éditable au clic, publié avec elle) ; c'est le
   moteur qui l'ouvre au bon moment (src/siteRuntime/popup.js). Tant qu'il n'est
   pas ouvert il ne prend aucune place et n'attrape aucun clic.

   Les couleurs viennent du thème du site : un popup n'a pas de palette à lui. */
.aether-popup{position:fixed;z-index:9990;background:var(--text,#0f172a);color:var(--bg,#fff);
  box-shadow:0 18px 50px rgba(0,0,0,.28);opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .22s ease, transform .22s ease}
.aether-popup.is-open{opacity:1;visibility:visible;pointer-events:auto}
.aether-popup[hidden]{display:none}
.aether-popup .aether-popup-corps{padding:1.6rem 1.5rem;max-width:34rem;margin:0 auto}
.aether-popup [data-popup-close]{position:absolute;top:.5rem;right:.7rem;background:none;border:0;
  color:inherit;opacity:.65;font-size:1.1rem;line-height:1;cursor:pointer;padding:.25rem}
.aether-popup [data-popup-close]:hover{opacity:1}

/* Flottant : seul format qui pose un voile — il interrompt vraiment la lecture.

   ⚠ Le voile est un élément FRÈRE, posé dans <body> par le moteur, et NON un
   `::before` du popup. Raison mesurée en direct : le popup se centre avec un
   `transform`, et un élément transformé devient le référentiel de ses
   descendants en `position:fixed`. Le voile faisait donc `inset:0` sur la
   BOÎTE DU POPUP (544×232 px relevés à l'écran) au lieu de la fenêtre : la
   page derrière restait en pleine lumière, et le voile invisible sous le
   popup. Aucun test en navigateur virtuel ne pouvait le voir — il n'y a pas
   de mise en page là-bas. */
.aether-popup--center{left:50%;top:50%;transform:translate(-50%,-46%);width:min(90vw,34rem);border-radius:10px}
.aether-popup--center.is-open{transform:translate(-50%,-50%)}
.aether-popup-voile{position:fixed;inset:0;z-index:9989;background:rgba(0,0,0,.45);
  opacity:0;transition:opacity .22s ease}
.aether-popup-voile.is-open{opacity:1}

.aether-popup--top{left:0;right:0;top:0;transform:translateY(-100%)}
.aether-popup--top.is-open{transform:none}
.aether-popup--bottom{left:0;right:0;bottom:0;transform:translateY(100%)}
.aether-popup--bottom.is-open{transform:none}
.aether-popup--left{left:0;top:0;bottom:0;width:min(92vw,22rem);transform:translateX(-100%);overflow:auto}
.aether-popup--left.is-open{transform:none}
.aether-popup--right{right:0;top:0;bottom:0;width:min(92vw,22rem);transform:translateX(100%);overflow:auto}
.aether-popup--right.is-open{transform:none}
.aether-popup--left .aether-popup-corps,
.aether-popup--right .aether-popup-corps{display:flex;flex-direction:column;justify-content:center;height:100%}

/* Popup « contenu = une page du site » : l'iframe remplit le corps, la boîte
   s'élargit (une vraie page a besoin de place), et dans une page embarquée
   ([data-aether-embed] sur <html>, posé par le runtime quand ?aether-embed=1)
   l'en-tête et le pied du site disparaissent — on ne montre que les blocs. */
[data-aether-embed] .site-header,[data-aether-embed] .site-footer{display:none}
.aether-popup-iframe{display:block;width:100%;height:100%;border:0;background:transparent}
.aether-popup [data-popup-embed]{height:100%}
.aether-popup .aether-popup-corps--page{padding:0;max-width:none;height:100%;overflow:hidden}
.aether-popup--center.aether-popup-page{width:min(94vw,62rem)}
.aether-popup--center.aether-popup-page .aether-popup-corps--page{height:min(84vh,44rem)}
.aether-popup--top.aether-popup-page .aether-popup-corps--page,
.aether-popup--bottom.aether-popup-page .aether-popup-corps--page{height:min(52vh,28rem)}
.aether-popup--left.aether-popup-page,.aether-popup--right.aether-popup-page{width:min(94vw,34rem)}
/* En aperçu admin l'iframe ne se charge pas : un libellé dit ce qui s'affichera. */
.aether-popup--admin .aether-popup-corps--page{height:auto}
.aether-popup--admin [data-popup-embed]::before{content:attr(data-label);display:block;
  padding:1.2rem;font-size:.8rem;opacity:.75}

/* Dans l'aperçu de l'admin le popup s'affiche EN PLACE : caché, il serait
   inéditable. Pas de position fixe, pas de voile — on veut pouvoir cliquer
   dedans et voir le reste de la page. */
.aether-popup--admin{position:relative;inset:auto;width:auto;max-width:none;transform:none;
  opacity:1;visibility:visible;pointer-events:auto;margin:1.5rem 0;border-radius:10px}

@media (prefers-reduced-motion: reduce){
  .aether-popup,.aether-popup-voile{transition:none}
}

/* ── Bloc « Flux XML » (RSS / Atom) ──────────────────────────────────────────
   Les articles sont FIGÉS dans la page à la publication (server/siteFeed.cjs)
   et injectés en aperçu par le runtime : ce CSS ne suppose donc aucun JS.
   Dispositions : cards (grille), list (vignette à gauche), journal (1 grand +
   petits), frames (cadres, variante polaroid). Taille = hauteur de vignette. */
.aether-flux{--flux-cols:3;--flux-thumb:11rem;display:grid;gap:1.5rem;
  grid-template-columns:repeat(var(--flux-cols),minmax(0,1fr))}
.aether-flux--s{--flux-thumb:7rem}
.aether-flux--l{--flux-thumb:16rem}
.aether-flux-item{display:flex;flex-direction:column;min-width:0;border-radius:12px;overflow:hidden;
  background:rgb(var(--blk-paper-50,255 255 255));
  box-shadow:0 1px 3px rgb(var(--blk-ink-900,59 46 55)/.08);transition:transform .25s ease,box-shadow .25s ease}
.aether-flux-item:hover{transform:translateY(-2px);box-shadow:0 12px 32px -14px rgb(var(--blk-ink-900,59 46 55)/.35)}
.aether-flux-item>a,.aether-flux-item>summary{display:flex;flex-direction:column;flex:1;color:inherit;text-decoration:none}
.aether-flux-figure{margin:0;height:var(--flux-thumb);overflow:hidden;background:rgb(var(--blk-ink-100,240 240 240))}
.aether-flux-figure img{width:100%;height:100%;object-fit:cover;display:block}
.aether-flux-body{display:flex;flex-direction:column;gap:.4rem;padding:1rem 1.1rem 1.2rem}
.aether-flux-body h3{margin:0;line-height:1.3}
.aether-flux-body p{margin:0}
.aether-flux-empty{grid-column:1/-1;text-align:center;padding:2rem 0}

/* Liste : vignette à gauche, texte à droite, une colonne. */
.aether-flux--list{grid-template-columns:1fr;gap:1rem}
.aether-flux--list .aether-flux-item>a,.aether-flux--list .aether-flux-item>summary{flex-direction:row;align-items:stretch}
.aether-flux--list .aether-flux-figure{flex:0 0 calc(var(--flux-thumb)*1.4);height:auto;min-height:var(--flux-thumb)}

/* Journal : le premier article prend deux colonnes et deux rangées. */
.aether-flux--journal .aether-flux-item--lead{grid-column:span 2;grid-row:span 2}
.aether-flux--journal .aether-flux-item--lead .aether-flux-figure{height:calc(var(--flux-thumb)*1.8)}
.aether-flux--journal .aether-flux-item--lead h3{font-size:1.5rem}

/* Cadres : bordure simple, ou polaroid (marge basse épaisse, légère rotation). */
.aether-flux--frames .aether-flux-item{border:1px solid rgb(var(--blk-ink-200,225 225 225));box-shadow:none;border-radius:6px}
.aether-flux--polaroid .aether-flux-item{padding:.7rem .7rem 1.4rem;background:#fff;border:0;border-radius:2px;
  box-shadow:0 6px 18px -8px rgb(var(--blk-ink-900,59 46 55)/.45);transform:rotate(-1.2deg)}
.aether-flux--polaroid .aether-flux-item:nth-child(even){transform:rotate(1.1deg)}
.aether-flux--polaroid .aether-flux-item:hover{transform:rotate(0) translateY(-2px)}
.aether-flux--polaroid .aether-flux-figure{border-radius:0}
.aether-flux--polaroid .aether-flux-body{padding:.9rem .3rem 0;text-align:center}

/* Accordéon : <details> natif, zéro JS. */
.aether-flux-item summary{cursor:pointer;list-style:none}
.aether-flux-item summary::-webkit-details-marker{display:none}
.aether-flux-item[open] summary .aether-flux-body h3{color:rgb(var(--blk-gold-500,190 150 60))}
.aether-flux-full{padding:0 1.1rem 1.2rem}
.aether-flux-source{margin-top:1rem;font-size:.85rem}
.aether-flux-source a{color:rgb(var(--blk-gold-500,190 150 60))}

/* Popup : <dialog> natif — fermeture par le bouton (form method=dialog) ou Escape. */
.aether-flux-dialog{width:min(92vw,46rem);max-height:86vh;padding:0;border:0;border-radius:14px;
  background:rgb(var(--blk-paper-50,255 255 255));color:rgb(var(--blk-ink-900,59 46 55));
  box-shadow:0 30px 80px -20px rgb(var(--blk-ink-900,59 46 55)/.5)}
.aether-flux-dialog::backdrop{background:rgb(var(--blk-ink-900,59 46 55)/.55);-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px)}
.aether-flux-dialog>form{position:sticky;top:0;display:flex;justify-content:flex-end;padding:.5rem .6rem 0;
  background:rgb(var(--blk-paper-50,255 255 255))}
.aether-flux-dialog>form button{width:2.2rem;height:2.2rem;border:0;border-radius:999px;font-size:1.4rem;line-height:1;
  cursor:pointer;background:rgb(var(--blk-ink-100,240 240 240));color:inherit}
.aether-flux-dialog>article{padding:.4rem 1.6rem 1.6rem}
.aether-flux-dialog>article h2{margin:0 0 .4rem}
.aether-flux-dialog .aether-flux-full{padding:1rem 0 0}

/* Pagination (/page/2, /page/3…). */
.aether-flux-pages{display:flex;justify-content:center;gap:.4rem;margin-top:2rem;flex-wrap:wrap}
.aether-flux-pages a,.aether-flux-pages span{min-width:2.2rem;padding:.4rem .6rem;text-align:center;border-radius:8px;
  border:1px solid rgb(var(--blk-ink-200,225 225 225));text-decoration:none;color:inherit;font-size:.9rem}
.aether-flux-pages span[aria-current]{background:rgb(var(--blk-ink-900,59 46 55));color:rgb(var(--blk-paper-50,255 255 255));border-color:transparent}
.aether-flux-pages .aether-flux-pages-gap{border-color:transparent;min-width:auto;padding-inline:.1rem}
.aether-flux-pages a:hover{border-color:rgb(var(--blk-gold-500,190 150 60))}

/* Page article générée : vignette héro pleine largeur. */
.aether-flux-article .aether-flux-figure--hero{height:min(26rem,56vw);border-radius:12px;margin-bottom:2rem}
.aether-flux-crumb a{text-decoration:none;color:inherit}

/* Éditeur (admin) : un montage encore vide dit ce qu'il attend, au lieu d'un
   blanc qu'on prendrait pour un bloc cassé. Le libellé vient du bloc. */
[data-aether-admin] [data-flux-mount]:empty::before{content:attr(data-label);display:block;padding:1.5rem;
  text-align:center;font-size:.85rem;opacity:.65;border:1px dashed rgb(var(--blk-ink-300,205 205 205));border-radius:12px;cursor:pointer}
[data-aether-admin] [data-flux-mount]:empty:hover::before{opacity:.9;border-color:rgb(var(--blk-gold-500,190 150 60))}

@media (max-width:768px){
  .aether-flux{grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
  .aether-flux--journal .aether-flux-item--lead{grid-column:1/-1;grid-row:auto}
  .aether-flux--list .aether-flux-item>a,.aether-flux--list .aether-flux-item>summary{flex-direction:column}
  .aether-flux--list .aether-flux-figure{flex:none;height:var(--flux-thumb)}
}
@media (max-width:480px){
  .aether-flux{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce){
  .aether-flux-item,.aether-flux--polaroid .aether-flux-item{transition:none;transform:none}
}
.hover\:border-ink-300:hover {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-300, 155 173 196) / var(--tw-border-opacity, 1));
}
.hover\:bg-ink-50:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-50, 245 247 250) / var(--tw-bg-opacity, 1));
}
.hover\:bg-ink-900:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-bg-opacity, 1));
}
.hover\:text-ink-700:hover {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-700, 50 66 89) / var(--tw-text-opacity, 1));
}
.hover\:text-ink-900:hover {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-900, 15 23 42) / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:opacity-100:hover {

    opacity: 1;
}
.hover\:shadow-sm:hover {

    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:grayscale-0:hover {

    --tw-grayscale: grayscale(0);

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.focus\:border-ink-500:focus {

    --tw-border-opacity: 1;

    border-color: rgb(var(--blk-ink-500, 80 105 136) / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus {

    outline: 2px solid transparent;

    outline-offset: 2px;
}
.group:focus-within .group-focus-within\:flex {

    display: flex;
}
.group:hover .group-hover\:flex {

    display: flex;
}
.group:hover .group-hover\:text-ink-700 {

    --tw-text-opacity: 1;

    color: rgb(var(--blk-ink-700, 50 66 89) / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {

    .sm\:inline {

        display: inline;
    }

    .sm\:text-4xl {

        font-size: 2.25rem;

        line-height: 2.5rem;
    }

    .sm\:text-5xl {

        font-size: 3rem;

        line-height: 1;
    }
}
@media (min-width: 768px) {

    .md\:col-span-1 {

        grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {

        grid-column: span 2 / span 2;
    }

    .md\:flex {

        display: flex;
    }

    .md\:grid-cols-2 {

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {

        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {

        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-\[2fr_3fr\] {

        grid-template-columns: 2fr 3fr;
    }

    .md\:grid-cols-\[3fr_2fr\] {

        grid-template-columns: 3fr 2fr;
    }

    .md\:flex-row {

        flex-direction: row;
    }

    .md\:items-end {

        align-items: flex-end;
    }

    .md\:items-center {

        align-items: center;
    }

    .md\:justify-between {

        justify-content: space-between;
    }

    .md\:py-28 {

        padding-top: 7rem;

        padding-bottom: 7rem;
    }

    .md\:py-32 {

        padding-top: 8rem;

        padding-bottom: 8rem;
    }

    .md\:text-3xl {

        font-size: 1.875rem;

        line-height: 2.25rem;
    }

    .md\:text-4xl {

        font-size: 2.25rem;

        line-height: 2.5rem;
    }

    .md\:text-5xl {

        font-size: 3rem;

        line-height: 1;
    }

    .md\:text-6xl {

        font-size: 3.75rem;

        line-height: 1;
    }
}
@media (min-width: 1024px) {

    .lg\:col-span-2 {

        grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {

        grid-column: span 3 / span 3;
    }

    .lg\:grid-cols-3 {

        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {

        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:grid-cols-5 {

        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
