/* ========================================================
   BLOG ARTICLE STYLES (DYNAMIC VIEWS)
   ======================================================== */

.blog-article-page {
    /* Minimal dark background to assist reading legibility */
    background: #040812;
    color: #e2e8f0;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 9999;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00F0FF, #a855f7);
    transition: width 0.1s ease;
}

/* Article Hero */
.article-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
}

.article-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 1000px;
    margin: 20px auto;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #a0aec0;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 40px;
}

.meta-dot {
    color: rgba(255, 255, 255, 0.2);
}

.hero-video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-board {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

/* Base Body Layout */
.article-body-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 100px;
    position: relative;
}

/* Sidebar Social */
.social-share-sidebar {
    width: 60px;
    flex-shrink: 0;
    display: none;
    /* hidden on mobile */
}

@media (min-width: 1024px) {
    .social-share-sidebar {
        display: block;
    }
}

.share-sticky-wrap {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.share-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #a0aec0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
    color: #a855f7;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

/* Content Area */
.article-content {
    flex-grow: 1;
    max-width: 800px;
}

.content-block {
    margin-bottom: 40px;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.lead-paragraph {
    font-size: 1.35rem !important;
    line-height: 1.7 !important;
    color: #f8fafc !important;
    font-family: 'Playfair Display', serif;
}

.article-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    margin: 50px 0 25px;
    color: #fff;
}

/* Image Breakouts */
.image-breakout {
    border-radius: 12px;
    overflow: hidden;
    margin: 50px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-article-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.media-grid {
    display: grid;
    gap: 20px;
}

.media-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.media-grid .image-breakout {
    margin: 0;
}

/* Custom Separator */
.decorative-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 60px 0;
}

/* Pull Quotes */
.pull-quote {
    background: rgba(168, 85, 247, 0.05);
    border-left: 4px solid #a855f7;
    padding: 30px 40px;
    margin: 50px 0;
    border-radius: 0 12px 12px 0;
}

.pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem !important;
    font-style: italic;
    color: #fff !important;
    margin: 0 !important;
}

/* FAQ Overrides for Article List */
.faq-block {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-q-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 10px;
}

.brand-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-faq-item.border-none {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-a p {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    color: #94a3b8 !important;
}

/* Author block / CTA */
.author-signoff {
    background: rgba(0, 240, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    text-align: center;
    margin-top: 60px;
}

.mt-5 {
    margin-top: 50px;
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 20px;
    background: #020408;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-left {
    text-align: left;
}