.article-page{
    padding:80px 20px;
    background:#fff;
    direction:rtl;
}


.article-page__container{
    max-width:900px;
    margin:auto;
}


/* Header */

.article-page__header{
    text-align:center;
    margin-bottom:50px;
}


.article-page__category{
    display:inline-block;
    color:#b68a35;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}


.article-page__title{

    font-size:38px;
    line-height:1.7;
    color:#222;
    margin-bottom:20px;

}


.article-page__meta{

    display:flex;
    justify-content:center;
    gap:15px;
    color:#777;
    font-size:14px;

}


/* Banner */

.article-page__banner{

    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:25px;
    margin-bottom:50px;

}


.article-page__banner img{

    width:100%;
    height:100%;
    object-fit:cover;

}


/* Content */

.article-page__content{

    font-size:18px;
    line-height:2.2;
    color:#444;

}


.article-page__content h2{

    font-size:28px;
    color:#222;
    margin:50px 0 20px;
    line-height:1.8;

}


.article-page__content p{

    margin-bottom:25px;
    text-align:justify;

}


.article-page__lead{

    font-size:20px;
    font-weight:500;
    color:#333;

}



.article-page__content ul{

    margin:25px 0;
    padding-right:25px;

}


.article-page__content li{

    margin-bottom:12px;

}



.article-page__content blockquote{

    background:#faf5eb;
    border-right:5px solid #b68a35;
    padding:20px 25px;
    margin:35px 0;
    border-radius:15px;
    color:#555;

}



.article-page__content hr{

    border:none;
    height:1px;
    background:#eee;
    margin:50px 0;

}



.article-page__content img{

    width:100%;
    border-radius:20px;
    margin:35px 0;

}



/* CTA */

.article-page__cta{

    background:#222;
    color:#fff;
    padding:40px;
    text-align:center;
    border-radius:25px;
    margin:60px 0;

}


.article-page__cta h3{

    font-size:28px;
    margin-bottom:15px;

}


.article-page__cta p{

    color:#ddd;
    text-align:center;

}


.article-page__cta a{

    display:inline-block;
    margin-top:20px;
    background:#b68a35;
    color:white;
    padding:12px 35px;
    border-radius:50px;
    text-decoration:none;

}



/* FAQ */

.article-page__faq{

    margin-top:70px;

}



.article-page__faq > h2{

    text-align:center;
    margin-bottom:40px;

}



.article-page__faq-item{

    border:1px solid #eee;
    border-radius:15px;
    margin-bottom:15px;
    overflow:hidden;
    background:#fff;

}



.article-page__faq-question{

    width:100%;
    border:none;
    background:#fff;
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-family:inherit;
    font-size:17px;
    text-align:right;
    color:#222;

}



.article-page__faq-question span{

    color:#b68a35;
    font-size:25px;

}



.article-page__faq-answer{

    max-height:0;
    overflow:hidden;
    transition:.3s ease;
    padding:0 22px;

}



.article-page__faq-answer p{

    margin:20px 0;
    color:#666;

}



.article-page__faq-item.active 
.article-page__faq-answer{

    max-height:300px;

}



/* Related */

.article-page__related{

    margin-top:70px;

}



.article-page__related-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}



.article-page__related-grid a{

    background:#fafafa;
    padding:25px;
    border-radius:15px;
    text-decoration:none;
    color:#333;
    transition:.3s;

}



.article-page__related-grid a:hover{

    transform:translateY(-5px);
    color:#b68a35;

}



/* Responsive */


@media(max-width:768px){


.article-page{

    padding:50px 15px;

}


.article-page__title{

    font-size:27px;

}


.article-page__meta{

    flex-wrap:wrap;

}


.article-page__banner{

    height:280px;

}


.article-page__content{

    font-size:16px;

}


.article-page__content h2{

    font-size:23px;

}


.article-page__cta{

    padding:30px 20px;

}


.article-page__related-grid{

    grid-template-columns:1fr;

}


}