/*بـسـم الله الـرحـمـان الـرحـیـم*/








/* =========================
   ARTICLE PAGE
========================= */

.article-page{
    width:100%;
    max-width:900px;
    margin:110px auto;
    padding:30px;
    background:linear-gradient(145deg,#07111d,#020617);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
    color:#e5e7eb;
}



/* =========================
   HERO
========================= */

.article-hero{
    position:relative;
    height:430px;
    border-radius:25px;
    overflow:hidden;
}


.article-cover{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}



.article-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(2,6,23,.95),
        rgba(2,6,23,.25)
    );
}




.article-hero-content{
    position:absolute;
    bottom:35px;
    right:35px;
    left:35px;
    z-index:2;
}



/* TITLE */

.article-title{
    font-size:36px;
    font-weight:900;
    color:white;
    margin:0 0 20px;
}



/* META */

.article-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:20px;
}



.article-meta span{
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.3);
    color:#d1fae5;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    backdrop-filter:blur(10px);
}




/* SHARE BUTTON */

.share-btn{
    display:flex;
    align-items:center;
    gap:10px;

    border:none;
    cursor:pointer;

    background:#22c55e;
    color:#022c22;

    padding:12px 25px;
    border-radius:50px;

    font-size:15px;
    font-weight:800;

    transition:.3s;
}



.share-btn img{
    width:22px;
    height:22px;
}



.share-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(34,197,94,.35);
}




/* =========================
   ARTICLE CONTENT
========================= */


.article-content{
    margin-top:40px;
}



.article-section,
.article-highlight,
.article-result{

    padding:25px;

    margin-bottom:25px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.07);

    transition:.3s;

}




.article-section:hover{

    border-color:#22c55e;

    background:rgba(34,197,94,.04);

}




.article-section h2,
.article-result h2{

    margin:0 0 15px;

    font-size:24px;

    color:#22c55e;

    font-weight:900;

}



.article-section p,
.article-highlight p,
.article-result p{

    margin:0;

    line-height:2.2;

    font-size:17px;

    color:#cbd5e1;

    text-align:justify;

}




/* HIGHLIGHT BOX */


.article-highlight{

    background:
    linear-gradient(
        145deg,
        rgba(34,197,94,.15),
        rgba(34,197,94,.03)
    );

    border-color:rgba(34,197,94,.35);

}



.article-highlight h3{

    margin:0 0 15px;

    color:#4ade80;

    font-size:22px;

}



/* LIST */

.article-list{

    margin:25px 0;

    padding-right:25px;

}



.article-list li{

    margin:12px 0;

    color:#d1d5db;

    font-size:16px;

}





/* RESULT */


.article-result{

    border-color:rgba(34,197,94,.35);

}





/* =========================
   END CTA
========================= */


.article-end{

    margin-top:35px;

    padding:30px;

    text-align:center;

    background:rgba(34,197,94,.08);

    border-radius:22px;

    border:1px solid rgba(34,197,94,.25);

}



.article-end h3{

    color:white;

    font-size:22px;

    margin-bottom:20px;

}



.article-end a{

    display:inline-block;

    background:#22c55e;

    color:#022c22;

    text-decoration:none;

    padding:13px 35px;

    border-radius:50px;

    font-weight:900;

    transition:.3s;

}



.article-end a:hover{

    transform:translateY(-3px);

}





/* =========================
   RESPONSIVE
========================= */


@media(max-width:768px){


.article-page{

    margin:20px 12px;

    padding:18px;

    border-radius:22px;

}



.article-hero{

    height:300px;

}



.article-hero-content{

    right:20px;

    left:20px;

    bottom:20px;

}



.article-title{

    font-size:25px;

}



.article-meta span{

    font-size:12px;

    padding:8px 14px;

}



.article-section,
.article-highlight,
.article-result{

    padding:18px;

}



.article-section h2,
.article-result h2{

    font-size:20px;

}



.article-section p,
.article-highlight p,
.article-result p{

    font-size:15px;

}


}



@media(max-width:420px){


.article-hero{

    height:250px;

}



.article-title{

    font-size:21px;

}



.article-page{

    padding:14px;

}



.article-end{

    padding:20px;

}


}