/* ==========================================================================
   TALKINK HIGH-DENSITY EDITORIAL ARTICLE LAYER
   Optimized for Edge-to-Edge Full-Screen Viewports (PC & Mobile)
   ========================================================================== */

/* 1. Global Viewport Box-Breaker (Forces Full-Screen Content Stretch) */
#about-container {
    max-width: 100% !important; /* Fixed box layout ko destroy karne ke liye */
    width: 100% !important;
    padding: 40px var(--padding-inline, 5%) !important; /* PC par standard flexible margins */
    box-sizing: border-box;
}

/* 2. Base Content Animation Reset */
.article-section {
    display: none; /* Regulated via Dynamic Javascript Router Switch */
    animation: articleReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    width: 100%;
}

@keyframes articleReveal {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Advanced Multi-Dialect Metadata Nodes */
.meta-header-cluster {
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.meta-node {
    font-size: 12px;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

/* 4. High-End Typography Scale (Premium Reader Feel) */
.article-section h1 {
    font-family: var(--font-display);
    font-size: 40px; /* Big bold premium look on PC screens */
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-section h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

/* Paragraphs engineered flawlessly for massive dense information arrays */
.article-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8; /* Pure editorial typography for fatigue reduction */
    letter-spacing: -0.003em;
    text-align: justify; /* Perfect straight reading edges on broad displays */
    margin-bottom: 24px;
}

.article-section p strong {
    color: #ffffff;
    font-weight: 600;
}

/* 5. Fluid Responsive Table Configuration */
.info-alert-box {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(56, 189, 248, 0.2);
    border-radius: 14px;
    padding: 28px;
    margin: 36px 0;
    width: 100%;
    box-sizing: border-box;
}

.info-alert-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.info-alert-box th, .info-alert-box td {
    padding: 14px 16px;
}

/* 6. Navigation Trigger Back Control Layout */
.back-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fs-body);
    font-weight: 600;
    margin-bottom: 36px;
    padding: 8px 18px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-nav-btn i {
    transition: transform 0.3s ease;
}

.back-nav-btn:hover {
    color: var(--accent-cyan);
    border-color: rgba(56, 189, 248, 0.25);
    background-color: var(--accent-glow);
    transform: translateX(-3px);
}

.back-nav-btn:hover i {
    transform: translateX(-3px);
}

/* 7. Bullet Layout System Parameters */
.article-section .sub-feature-list {
    list-style: none;
    margin-top: 24px;
    padding-left: 0;
}

.article-section .sub-feature-list li {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
}

.article-section .list-bullet {
    color: var(--accent-cyan);
    font-size: 14px;
    margin-right: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ==========================================================================
   8. Extreme Layout Media Queries (Breaks out of all box limitations)
   ========================================================================== */
@media (max-width: 1024px) {
    .article-section h1 {
        font-size: 34px;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    #about-container {
        padding: 24px 20px !important; /* Eliminates vast margins on tabs & phones */
    }
    
    .article-section h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .info-alert-box {
        padding: 20px;
        margin: 24px 0;
    }
}

@media (max-width: 480px) {
    .article-section h1 {
        font-size: 22px;
        line-height: 1.35;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }

    .article-section p {
        font-size: 14.5px;
        line-height: 1.7;
        text-align: left; /* Dropping justification for screen size safety to keep spaces uniform */
        margin-bottom: 18px;
    }

    .meta-header-cluster {
        gap: 8px;
        margin-bottom: 20px;
    }

    .meta-node {
        font-size: 11px;
        padding: 4px 10px;
    }

    .info-alert-box th, .info-alert-box td {
        padding: 10px 8px;
        font-size: 12px;
    }
}
