/* Blog single UX (2026-07-11): progress bar, sticky agenda, hero, vreme čitanja */

#itl-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: darkorange;
    z-index: 100000;
}

#itl-agenda {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translate(-50%, -200%);
    max-width: min(70vw, 640px);
    z-index: 99998;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #3c3950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.25s ease;
}

#itl-agenda.visible {
    transform: translate(-50%, 0);
}

#itl-agenda .itl-agenda-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: darkorange;
    margin-right: 8px;
    vertical-align: 1px;
}

.itl-post-hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 14px;
}

.itl-reading-time {
    display: inline-block;
    color: #99939e;
    font-size: 14px;
    margin-bottom: 22px;
}

.itl-reading-time b {
    color: darkorange;
    font-weight: 700;
}

@media (max-width: 767px) {
    #itl-agenda {
        top: auto;
        bottom: 12px;
        max-width: 86vw;
        transform: translate(-50%, 300%);
    }
}
