.article-wrapper {
    max-width: 80%;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    line-height: 2.9;
    direction: rtl;
    text-align: right;
}
@media (max-width: 550px) {
    .article-wrapper {
        max-width: 100%;
    }
}

.article-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1rem;
}

.article-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid #eee;
    padding-bottom: .5rem;
    margin-bottom: 2rem;
}
@media (max-width: 550px) {
    .article-meta {
        border-bottom: none;
        border-top: 1px solid #eee;
        padding-top: .5rem;
   
    }
}

.article-content h2 {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #ea580c;
    font-weight: 900;
}

.article-content h3 {
    margin-top: 1rem;
    color: #333;
    font-size: 1.15rem;
}

.article-content ul, .article-content ol {
    padding-right: 1.5rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-quote {
    background: #fff7ed;
    border-right: 4px solid #ea580c;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
}

.article-cta {
    display: inline-block;
    padding: 0.2rem 1.5rem;
    background: #ea580c;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s
    ease;
    width: -webkit-fill-available;
    text-align: center;
}

.article-cta:hover {
    background: #c74709;
}

.article-content hr {
    margin: 2.5rem 0;
    border: 1px dashed #101828;
    border-top: 1px solid #eee;
}
.article-wrapper p{
    color: var(--bs-gray-700)!important;
}
.article-wrapper ol,.article-wrapper ul{
    padding: 1rem;
}