/**
 * INVIYA - Single Page Immersive Styling
 * Editorial & Magazine Inspired
 */

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-light-blue);
    z-index: 10001;
    transition: width 0.1s linear;
}

.article-hero {
    position: relative;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 37, 90, 0.4) 0%, rgba(0, 37, 90, 0.7) 100%);
}

.article-title {
      font-size: clamp(2rem, 1vw, 2rem);
    line-height: 1;
    margin-top: 1.5rem;
    font-weight: 800;
     
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
   
}

/* Article Layout - Single Column centered */
.article-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.article-main-content {
    max-width: 900px;
    width: 100%;
}
.article-main-content *,.article-main-content .content-section *{ 
  font-family: var(--font-primary) !important;
}

.lead-text {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1.4;
    color: var(--color-deep-navy);
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

/* Removed Sidebar classes */
.article-sidebar {
    display: none;
}

.content-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.immersive-figure {
    margin: 4rem 0;
    width: 120%;
    margin-left: -10%;
}

.immersive-figure img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.immersive-figure figcaption {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
    opacity: 0.6;
}

.cinematic-quote {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-core-blue);
    margin: 5rem 0;
    padding-left: 3rem;
    border-left: 2px solid var(--color-light-blue);
    font-style: italic;
}

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .immersive-figure {
        width: 100%;
        margin-left: 0;
    }
}
