/* ═══════════════════════════════════
   PROSTABLES BLOG SINGLE - TREND 2026
   ═══════════════════════════════════ */

.blog-single-hero-2026 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--color-primary);
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-accent);
    z-index: 10001;
    transition: width 0.1s ease-out;
}

.hero-parallax-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 120%; /* For parallax offset */
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(14, 3, 56, 0.2) 0%, 
        rgba(14, 3, 56, 0.4) 50%, 
        var(--color-primary) 100%
    );
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-meta-floating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 40px;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-cat {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-title-kinetic {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    color: white;
    max-width: 1000px;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    margin-left: 10px;
}

/* Content Section 2026 */
.blog-single-content-2026 {
    padding: 120px 0;
    background: #F9F7F2;
    position: relative;
}

.content-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
}

.content-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 150px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(14, 3, 56, 0.1);
}

.author-info .label {
    display: block;
    font-size: 0.75rem;
    color: rgba(14, 3, 56, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info .name {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.share-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(14, 3, 56, 0.3);
    letter-spacing: 2px;
}

.share-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 15px rgba(14, 3, 56, 0.05);
}

.share-link:hover {
    background: var(--color-accent);
    color: white;
    transform: translateX(5px);
}

/* Main Body Content */
.article-main-body {
    max-width: 850px;
}

.entry-content-2026 {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-1);
}

.entry-content-2026 h2 {
    font-size: 2.8rem;
    margin: 60px 0 30px;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.entry-content-2026 p {
    margin-bottom: 40px;
}

.entry-content-2026 blockquote {
    margin: 60px 0;
    padding: 0 40px;
    border-left: 4px solid var(--color-accent);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.4;
}

.entry-content-2026 img {
    max-width: calc(100% + 100px);
    margin-left: -50px;
    height: auto;
    border-radius: 32px;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 40px 80px rgba(14, 3, 56, 0.15);
}

@media (max-width: 1100px) {
    .content-grid-container {
        grid-template-columns: 1fr;
    }
    .content-sidebar {
        order: 2;
    }
    .sidebar-sticky {
        position: static;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .author-card {
        margin-bottom: 0;
    }
    .share-vertical {
        flex-direction: row;
        align-items: center;
    }
    .share-icons {
        flex-direction: row;
    }
    .entry-content-2026 img {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title-kinetic {
        font-size: 3rem;
    }
    .blog-single-content-2026 {
        padding: 60px 0;
    }
}
