/* Reading Time Estimator - Frontend Styles */

/* ── Shared base ─────────────────────────────────────── */
.rte-badge {
    display: inline-block;
    font-size: 0.85em;
    line-height: 1;
    margin: 0.6em 0 1em;
}

/* ── Badge style (pill with background) ─────────────── */
.rte-style-badge {
    background-color: #f0f4ff;
    color: #3b5bdb;
    border: 1px solid #c5d0fa;
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ── Inline style (subtle, italicised) ──────────────── */
.rte-style-inline {
    color: #666;
    font-style: italic;
    border-left: 3px solid #ddd;
    padding-left: 8px;
}

/* ── Minimal style (plain text) ─────────────────────── */
.rte-style-minimal {
    color: #888;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Dark-mode support ───────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .rte-style-badge {
        background-color: #1e2a4a;
        color: #99b0ff;
        border-color: #3b5bdb;
    }
    .rte-style-inline {
        color: #aaa;
        border-left-color: #555;
    }
    .rte-style-minimal {
        color: #888;
    }
}
