/* SHOW ARTICLE */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #0d6efd;
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Prose / Article Body Custom Typography */
.article-body-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

.article-body-prose p {
    margin-bottom: 1.5rem;
}

.article-body-prose h2,
.article-body-prose h3,
.article-body-prose h4 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.article-body-prose ul,
.article-body-prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body-prose li {
    margin-bottom: 0.5rem;
}

/* Author Avatar */
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sticky Sidebar adjustment */
.blog-sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Latest Posts Revamp */
.latest-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
    transition: transform 0.2s ease;
}

.latest-post-item:hover {
    transform: translateY(-2px);
}

.latest-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 0.5rem;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-post-content h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.latest-post-content h5 a {
    color: #1e293b;
    text-decoration: none;
}

.latest-post-content h5 a:hover {
    color: #0d6efd;
}

.latest-post-content .date {
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

/* Custom Breadcrumb */
.custom-breadcrumb {
    font-size: 0.9rem;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #0d6efd;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}