/**
 * Post NOTE annotation
 *
 * A full-width separator + toggle button + hidden note body, rendered at the
 * bottom of a post when its `note` column is non-empty (includes/PostRenderer.php).
 */

/* Match the prominent separator at the top of each post: the theme's own `hr`
   rule sets a 2px solid line (white on dark, black on light). We only set spacing
   here and inherit that border, so the note line is as noticeable as the header one. */
.postnote-hr {
    border-top-width: 2px;
    border-top-style: solid;
    margin: 10px 0 8px 0;
    width: 100%;
}

.postnote-wrap {
    margin: 4px 0 6px 0;
}

.postnote-toggle {
    cursor: pointer;
}

.postnote-body {
    margin-top: 8px;
    padding: 8px 10px;
    border-left: 3px solid #17a2b8;   /* btn-info accent */
    background: rgba(23, 162, 184, 0.08);
    border-radius: 3px;
    line-height: 1.45;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Archive links section (bottom of post, below the note; separated by its own
   .postnote-hr). Uses the same accent so it reads as an app-added annotation. */
.archivelinks-wrap {
    margin: 4px 0 6px 0;
}

.archivelinks-header {
    font-weight: bold;
    margin-bottom: 6px;
}

.archivelinks-header i {
    margin-right: 4px;
}

.archivelink-item {
    padding: 2px 0 2px 6px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.archivelink-item i.iconlink {
    margin-right: 5px;
}

.archivelink-src {
    opacity: 0.7;
    font-size: 0.9em;
}
