/* ===== PROGRESS BAR ===== */
#bsc-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #1a8f80, #2aac9c);
    z-index: 99999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(42, 172, 156, 0.5);
}

/* ===== READING TIME ===== */
.bsc-meta {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.bsc-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    background-color: #1a8f80;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
}

.bsc-reading-time svg {
    flex-shrink: 0;
}

/* ===== ARTICLE TYPOGRAPHY ===== */
.single .entry-content,
.single article .entry-content,
.single .post-content,
.single .elementor-widget-theme-post-content .elementor-widget-container {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.85;
    color: #1a1a1a;
}

/* ===== DROP CAP ===== */
.single .entry-content > p:first-of-type::first-letter,
.single .post-content > p:first-of-type::first-letter {
    float: left;
    font-size: 4.2em;
    line-height: 0.75;
    margin: 6px 10px 0 0;
    color: #1a8f80;
    font-weight: 700;
    font-family: Georgia, serif;
}

/* ===== HEADINGS ===== */
.single .entry-content h2,
.single .post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid #1a8f80;
    line-height: 1.3;
}

.single .entry-content h3,
.single .post-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2aac9c;
    margin-top: 36px;
    margin-bottom: 12px;
}

/* ===== BLOCKQUOTE ===== */
.single .entry-content blockquote,
.single .post-content blockquote {
    margin: 40px 0;
    padding: 24px 28px;
    background: #f4fbfa;
    border-left: 5px solid #2aac9c;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    font-style: italic;
    color: #1a8f80;
    line-height: 1.7;
}

.single .entry-content blockquote p,
.single .post-content blockquote p {
    margin: 0;
}

/* ===== LINK ===== */
.single .entry-content a,
.single .post-content a {
    color: #1a8f80;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.single .entry-content a:hover,
.single .post-content a:hover {
    color: #2aac9c;
}

/* ===== IMMAGINI ===== */
.single .entry-content img,
.single .post-content img {
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(26, 143, 128, 0.12);
    max-width: 100%;
    height: auto;
}

/* ===== SEPARATORE ===== */
.single .entry-content hr,
.single .post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #1a8f80, #90d1bf, transparent);
    margin: 48px 0;
}

/* ===== DIVIDER DECORATIVO FINE ARTICOLO ===== */
.bsc-end-divider {
    text-align: center;
    margin: 56px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 760px;
}

.bsc-end-divider::before,
.bsc-end-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90d1bf);
}

.bsc-end-divider::after {
    background: linear-gradient(90deg, #90d1bf, transparent);
}

.bsc-end-divider span {
    width: 8px;
    height: 8px;
    background: #1a8f80;
    border-radius: 50%;
    display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .single .entry-content,
    .single .post-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .single .entry-content h2,
    .single .post-content h2 {
        font-size: 19px;
    }

    .single .entry-content > p:first-of-type::first-letter,
    .single .post-content > p:first-of-type::first-letter {
        font-size: 3.5em;
    }
}
