.docs-logo img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────────────────────────────── */
/* AI-draft banner                                                          */
/* ──────────────────────────────────────────────────────────────────────── */
.ai-draft-banner {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 0.75em 1em;
    margin: 0 0 1.5em 0;
    border-radius: 4px;
    font-size: 0.92em;
    line-height: 1.5;
}
.ai-draft-banner strong {
    color: #b26500;
}
.ai-draft-banner a {
    font-weight: 600;
}
html.theme--documenter-dark .ai-draft-banner {
    background: #3a2e14;
    border-left-color: #ffb300;
    color: #f5d58a;
}
html.theme--documenter-dark .ai-draft-banner strong {
    color: #ffd86b;
}

/* ──────────────────────────────────────────────────────────────────────── */
/* Per-section "report" — right-aligned plain text in heading              */
/* ──────────────────────────────────────────────────────────────────────── */
.report-section-link {
    float: right;
    font-size: 0.6em;
    font-weight: 400;
    color: #bbb;
    text-decoration: none;
    line-height: 2.2;
}
.report-section-link:hover,
.report-section-link:focus {
    color: #b26500;
    text-decoration: underline;
}
html.theme--documenter-dark .report-section-link {
    color: #555;
}
html.theme--documenter-dark .report-section-link:hover,
html.theme--documenter-dark .report-section-link:focus {
    color: #ffd86b;
}

/* ──────────────────────────────────────────────────────────────────────── */
/* Bibliography (DocumenterCitations :numeric)                              */
/* Default rendering puts the [N] label and the entry on separate lines     */
/* (a <dt>/<dd> pair) with the <dd><p> margins adding a blank line between   */
/* every reference. Lay the dl out as a two-column grid so each entry reads  */
/* "[N]  Author, Title…" on one row, and zero the inner <p> margins.        */
/* ──────────────────────────────────────────────────────────────────────── */
.citation dl {
    display: grid;
    grid-template-columns: max-content auto;
    column-gap: 0.6em;
    row-gap: 0.5em;
    margin: 0;
}
.citation dt {
    grid-column-start: 1;
}
.citation dd {
    grid-column-start: 2;
    margin: 0;
}
.citation dd p {
    margin: 0;
}
