/* ==========================================================================
   VAZI 2026: ARTICLE STYLES
   Optimized for Readability and Emotional Depth.
   ========================================================================== */

:root {
    --vazi-black: hsl(240, 10%, 4%);
    --vazi-near-black: hsl(240, 10%, 7%);
    --vazi-dark-gray: hsl(240, 5%, 15%);
    --vazi-medium-gray: hsl(240, 5%, 45%);
    --vazi-light-gray: hsl(240, 5%, 90%);
    --vazi-white: hsl(0, 0%, 100%);
    --vazi-accent: hsl(45, 100%, 50%); /* Gold/Highlight */
    --vazi-accent-soft: hsla(45, 100%, 50%, 0.1);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Article Header Section */
.article-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--vazi-medium-gray);
    margin-bottom: 2rem;
}

.article-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--vazi-medium-gray);
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Feature Image */
.article-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

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

.article-image:hover {
    transform: scale(1.02);
}

/* Article Container (Main Content) */
.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.article-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--vazi-near-black);
}

.article-body p {
    margin-bottom: 2rem;
}

/* Editorial Pull Quotes */
.pull-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin: 4rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--vazi-accent);
    color: var(--vazi-black);
    line-height: 1.3;
}

/* The Bridge Link - Signature CTA */
.article-bridge {
    margin-top: 6rem;
    padding: 3rem;
    background: var(--vazi-light-gray);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.article-bridge a {
    color: var(--vazi-black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Sidebar Section */
.article-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.sidebar-block {
    margin-bottom: 3rem;
}

.sidebar-block h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--vazi-medium-gray);
}

.sidebar-block p {
    font-size: 0.9rem;
    color: var(--vazi-medium-gray);
}

.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 1rem;
}

.related-list a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.related-list a:hover {
    color: var(--vazi-accent);
}

/* Knowledge Moment / Farmer Standard Block */
/* (Not explicitly used in the HTML but useful for styling if we add a wrapper) */
.knowledge-moment {
    background: var(--vazi-near-black);
    color: var(--vazi-white);
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
}

/* Desktop & Mobile Adjustments */
@media (max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        margin-top: 4rem;
        position: static;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
}
