.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #997B2F, #e7d4aa, #FFF, #e7d4aa);
    width: 0%;
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
    transition: width 0.1s linear;
}

.article-page {
    padding-bottom: 150px;
}

.art-header {
    text-align: center;
    padding: 180px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.art-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
    text-transform: none;
    -webkit-line-clamp: 5;
}

.art-meta {
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.share-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

    .share-trigger:hover {
        opacity: 0.7;
    }

    .share-trigger i {
        font-size: 1rem;
    }

.art-hero-container {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 0 20px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

.art-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.art-hero-container:hover .art-hero-img {
    transform: scale(1.05);
}

.art-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

    .art-body p {
        font-size: 1.15rem;
        line-height: 1.9;
        color: #ccc;
        margin-bottom: 40px;
        font-weight: 300;
        text-align: justify;
    }

        .art-body p b {
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.25px;
        }

    .art-body h2 {
        font-size: 2.5rem;
        color: #fff;
        margin-top: 100px;
        margin-bottom: 30px;
        text-transform: none;
        line-height: 1.3;
    }

.art-img-wide {
    width: 120%;
    margin-left: -10%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 20px;
    border: 1px solid #1a1a1a;
    display: block;
}

.img-caption {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    margin-bottom: 60px;
}

.art-quote {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin: 70px -40px 70px 0;
    font-size: 1.9rem;
    line-height: 1.5;
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.drop-cap::first-letter {
    float: left;
    font-size: 5.5rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 8px;
    font-weight: 400;
    background: linear-gradient(110deg, #997B2F, #e7d4aa, #FFF, #e7d4aa);
    background-size: 200% 200%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.art-cta-wrapper {
    margin: 80px 0 0 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding: 80px 0 0 0;
}

.art-cta-label {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    .article-page {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .art-header {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .header-title {
        font-size: 2.5rem;
    }

    .art-hero-container {
        margin-bottom: 60px;
        height: auto;
        margin-top: 40px;
        overflow: hidden;
        aspect-ratio: 16 / 9;
    }

    .art-hero-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #050505;
    }

    .art-body p {
        font-size: 1.05rem;
        text-align: left;
    }

    .art-quote {
        margin: 50px 0;
        font-size: 1.4rem;
        border-left-width: 2px;
        padding-left: 20px;
    }

    .art-img-wide {
        width: 100%;
        margin-left: 0;
    }

    .art-cta-wrapper {
        padding: 50px 20px;
    }

    .drop-cap::first-letter {
        font-size: 4rem;
        margin-top: 5px;
    }
}
