
#articleBody h1{

    font-size:48px;
    font-weight:900;
    line-height:1.25;

    margin-bottom:35px;

    color:#0f172a;
}

 

 

#articleBodys h2::after {
    content: "";
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 100px;
}

@media (min-width: 640px) {
    #articleBody h2 {
        font-size: 1.875rem; /* sm:text-3xl = 30px */
        line-height: 2.25rem;
    }
}
 


 
#articleBody h3 {
    margin: 0;
    font-size: 1.125rem; /* text-lg = 18px */
    font-weight: 700;   /* font-bold */
    color: #030712;     /* text-gray-950 */
}
 


#articleBody h4{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin:45px 0 18px;

    padding:12px 22px;

    font-size:24px;

    font-weight:700;

    background:#eff6ff;

    border-radius:50px;

    color:#1d4ed8;

}


/*========================================
        PARAGRAPH
========================================*/

#articleBody p{
    text-align:justify;

}

/* First Paragraph */

#articleBody>p:first-of-type{

    font-size:22px;

    color:#111827;

}


/*========================================
        DROP CAP
========================================*/

#articleBody>p:first-of-type::first-letter{

    float:left;

    font-size:72px;

    line-height:.8;

    margin-right:12px;

    margin-top:8px;

    color:#2563eb;

    font-weight:900;

}


/*========================================
            LIST
========================================*/


 
 

#articleBodys li::before {
    content: "✓";
    position: absolute;
    left: -20px;
    top: 0;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
}

 



/*========================================
        STRONG
========================================*/

#articleBody strong{

    color:#0f172a;

    font-weight:800;

}


/*========================================
        BLOCKQUOTE
========================================*/

#articleBody blockquote{

    margin:40px 0;

    padding:35px;

    background:linear-gradient(135deg,#eff6ff,#ffffff);

    border-left:6px solid #2563eb;

    border-radius:24px;

    font-size:22px;

    font-style:italic;

    color:#1e293b;

}
 


/*========================================
            TABLE
========================================*/

#articleBody table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:18px;

}

#articleBody th{
    background:#2563eb;
    color:white;
    padding:18px;
    text-align: left;
}

#articleBody td{

    padding:16px;

    border-bottom:1px solid #edf2f7;

}

#articleBody tr:nth-child(even){

    background:#f8fafc;

}


/*========================================
            LINKS
========================================*/

#articleBody a{

    color:#2563eb;

    text-decoration:none;

    font-weight:700;

    background-image:linear-gradient(#2563eb,#2563eb);

    background-repeat:no-repeat;

    background-size:0 2px;

    background-position:left bottom;

    transition:.35s;

}

#articleBody a:hover{

    background-size:100% 2px;

}


/*========================================
        WORD HOVER
========================================*/

#articleBody span[class^="word-"]{

    border-radius:6px;

    transition:.25s;

}

#articleBody span[class^="word-"]:hover{

    background:#dbeafe;

    color:#1d4ed8;

}


/*========================================
        SELECTION
========================================*/

#articleBody *::selection{

    background:#bfdbfe;

}


/*========================================
        MOBILE
========================================*/

@media(max-width:768px){

#articleBody{

    padding:28px;

    border-radius:22px;

    font-size:18px;

}

#articleBody h1{

    font-size:34px;

}

 

 

#articleBody h4{

    font-size:20px;

}

#articleBody>p:first-of-type::first-letter{

    font-size:58px;

}

}


 /* ===============================
   Premium Article Figure Style
================================== */

#articleBody figure {
    display: table;
    margin: 2.5rem auto;
    padding: 10px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(15,23,42,.08),
        0 2px 8px rgba(15,23,42,.05);
    border: 1px solid #eef2f7;
    transition: all .35s ease;
    max-width: 100%;
}

#articleBody figure:hover{
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(15,23,42,.12),
        0 8px 18px rgba(15,23,42,.08);
}

#articleBody figure img{
    display:block;
    width:100%;
    height:auto;
    max-width:900px;
    border-radius:12px;
    object-fit:cover;
    transition:transform .45s ease;
}

#articleBody figure:hover img{
    transform:scale(1.02);
}

#articleBody figcaption{
    padding:14px 18px 6px;
    text-align:center;
    font-size:.92rem;
    color:#6b7280;
    line-height:1.6;
    font-style:italic;
    letter-spacing:.2px;
}

/* Small accent line */

#articleBody figcaption::before{
    content:"";
    display:block;
    width:50px;
    height:3px;
    margin:0 auto 12px;
    border-radius:20px;
    background:linear-gradient(90deg,#2563eb,#7c3aed);
}

/* Alignment */

#articleBody figure.align-left{
    float:left;
    margin:8px 30px 20px 0;
    max-width:45%;
}

#articleBody figure.align-right{
    float:right;
    margin:8px 0 20px 30px;
    max-width:45%;
}

#articleBody figure.align-center{
    margin-left:auto;
    margin-right:auto;
}

/* Responsive */

@media (max-width:768px){

    #articleBody figure{
        margin:1.8rem auto;
        border-radius:14px;
        padding:8px;
    }

    #articleBody figure img{
        border-radius:10px;
    }

    #articleBody figcaption{
        font-size:.85rem;
        padding:12px;
    }

    #articleBody figure.align-left,
    #articleBody figure.align-right{
        float:none;
        max-width:100%;
        margin:1.5rem auto;
    }

} 