:root {
    --bg-color: #111111;
    --text-color: #e0e0e0;
    --text-muted: #999999;
    --accent-color: #ffffff;
    --font-serif: 'Helvetica', sans-serif;
    --font-sans: 'Helvetica', sans-serif;
    --reading-width: 740px;
}

body.blog-reading-page {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    font-family: 'Helvetica', sans-serif !important;
}

/* Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1000;
}

.reading-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.1s linear;
}

/* Hero Section */
.article-hero {
    padding: 160px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--accent-color);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.article-meta {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.article-entry-image-wrapper {
    width: 100%;
    max-width: 1400px;
    /* Wider than text */
    margin: 0 auto 80px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.8s;
}

.article-entry-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-content {
    max-width: var(--reading-width);
    margin: 0 auto;
    padding: 0 20px 120px;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
}

.article-content p {
    margin-bottom: 32px;
    color: #cccccc;
    opacity: 0.9;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-top: 60px;
    margin-bottom: 24px;
    font-weight: 400;
}

.article-content h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #eeeeee;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 500;
}

.article-content blockquote {
    border-left: 2px solid var(--accent-color);
    padding-left: 30px;
    margin: 60px 0;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
}

/* Image Breaks */
.article-image-break {
    margin: 60px 0;
    width: 100%;
    border-radius: 2px;
}

.article-image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer Article Nav */
.article-footer-nav {
    border-top: 1px solid #222;
    padding-top: 80px;
    margin-top: 80px;
}

.read-next-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .article-title {
        font-size: 2.8rem;
    }

    .article-content {
        font-size: 1.1rem;
    }

    .article-hero {
        padding-top: 120px;
    }
}

/* Scroll Reveal Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* MOBILE FIXES */
@media screen and (max-width: 479px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-hero {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .article-content {
        padding: 0 15px 80px;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
    
    .article-content blockquote {
        font-size: 1.4rem;
        margin: 40px 0;
        padding-left: 20px;
    }
}
