/* ==========================================================================
   AI Narratives
   Article Page
   article.css
   Version: 1.0

   Developed by
   Zytrix Core Systems Enterprise
   ========================================================================== */

/* ==========================================================================
   ARTICLE HEADER
   ========================================================================== */

.article-header{

    background:#FFFFFF;

    padding:70px 0 50px;

    border-bottom:1px solid #E5E7EB;

}

.article-header .container{

    max-width:900px;

}

.article-category{

    display:inline-block;

    padding:8px 14px;

    background:#DBEAFE;

    color:#1D4ED8;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:20px;

}

.article-title{

    font-size:56px;

    font-weight:700;

    line-height:1.15;

    color:#111827;

    margin-bottom:20px;

}

.article-subtitle{

    font-size:22px;

    color:#6B7280;

    line-height:1.7;

    margin-bottom:35px;

}

/* ==========================================================================
   META INFORMATION
   ========================================================================== */

.article-meta{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    align-items:center;

    color:#6B7280;

    font-size:15px;

}

.article-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

/* ==========================================================================
   FEATURE IMAGE
   ========================================================================== */

.article-feature{

    margin:50px 0;

}

.article-feature img{

    width:100%;

    border-radius:16px;

    display:block;

}

.article-feature figcaption{

    margin-top:15px;

    text-align:center;

    color:#6B7280;

    font-size:14px;

}

/* ==========================================================================
   ARTICLE BODY
   ========================================================================== */

.article-wrapper{

    display:grid;

    grid-template-columns:1fr 320px;

    gap:60px;

    padding:70px 0;

}

.article-content{

    max-width:850px;

}

.article-content h2{

    margin-top:70px;

    margin-bottom:20px;

}

.article-content h3{

    margin-top:50px;

    margin-bottom:15px;

}

.article-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:28px;

}

.article-content img{

    width:100%;

    border-radius:14px;

    margin:35px 0;

}

.article-content ul,

.article-content ol{

    margin:25px 0 30px 30px;

}

.article-content li{

    margin-bottom:12px;

}

.article-content hr{

    margin:60px 0;

    border:none;

    border-top:1px solid #E5E7EB;

}

/* ==========================================================================
   BLOCKQUOTE
   ========================================================================== */

.article-content blockquote{

    margin:40px 0;

    padding:30px;

    background:#F8FAFC;

    border-left:5px solid #2563EB;

    font-size:20px;

    font-style:italic;

}

/* ==========================================================================
   TABLES
   ========================================================================== */

.article-content table{

    width:100%;

    margin:40px 0;

    border-collapse:collapse;

}

.article-content th{

    background:#F3F4F6;

    padding:16px;

}

.article-content td{

    padding:16px;

    border-bottom:1px solid #E5E7EB;

}

/* ==========================================================================
   SIDEBAR
   =================================================================