/* ── Reading Time Tracker — Front-end Badge ─────────────────── */

.rtt-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #374151;
    margin: 0 0 20px 0;
    font-family: inherit;
    line-height: 1.5;
}

.rtt-badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: #6b7280;
}

.rtt-estimated {
    color: #4b5563;
}

.rtt-real {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 5px;
    padding: 2px 8px;
    color: #065f46;
    font-size: 12px;
    cursor: default;
}

.rtt-real svg {
    width: 13px;
    height: 13px;
    stroke: #059669;
}

.rtt-scroll {
    opacity: 0.7;
}

.rtt-inline {
    font-size: 0.9em;
    color: #555;
}

/* Contador total público */
.rtt-total {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
    .rtt-badge {
        background: #1f2937;
        border-color: #374151;
        color: #d1d5db;
    }
    .rtt-real {
        background: #064e3b;
        border-color: #065f46;
        color: #6ee7b7;
    }
}
