.articles_main_wrapper{
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.articles_archive{
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    margin-top: 50px;
}
.article_top_data_section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
}
.article_top_data_section label,
.article_tag label{
    font-size: 16px;
    font-family: var(--main-font);
    font-weight: normal;
}
.article_tag{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article_title{
    margin-top: 10px;
    margin-bottom: 10px;
}
.article_title label{
    font-size: 50px;
    text-align: right;
    font-family: var(--main-font);
    font-weight: 900;
}
.article_icons{
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}
.article_icon{
    width: 30px;
    height: 30px;
}
.article_main_text {
    width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: var(--main-font);
    text-align: right;
    direction: rtl;
    font-weight: normal;
}