.news__header {
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-style: italic;
    color: #000000;
    margin: 30px 0 10px 0;
    background-image: url(../image/news_header_back@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 30px 16px;
}

.post {
    position: relative;
}

.post:last-of-type {
    margin-bottom: 40px;
}

.entry-header,
.entry-header--main-page {
    padding: 0px 0px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-content {
    padding-top: 23px;
    margin: 0 30px;
    position: relative;
}

.entry-content::before {
    content: '';
    position: absolute;
    background-image: url(../image/dots.png);
    width: 100%;
    height: 2px;
    top: 0;
}

.entry-content a {
    color: #004bd4;
    text-decoration: none;
}

.entry-title a {
    color: #010101;
    font-weight: 500;
    text-decoration: none;
}

.entry-meta a, .entry-meta span {
    font-size: 14px;
    color: #000000;
    font-style: italic;
    text-decoration: none;
}

.entry-footer {
    display: none;
}

.news__all {
    display: block;
    width: 100%;
    padding-right: 30px;
    margin-top: 10px;
    text-align: right;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .news {
        width: 100%;
    }
    .entry-header {
        flex-wrap: wrap;
    }
    .entry-title {
        width: 100%;
    }
}

/*single_new*/

.news_single {
    flex-wrap: wrap;
}

.news_single__content {
    width: 65%;
    align-self: flex-start;
}

.comments-area {
    width: 100%;
}

.screen-reader-text {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-links a {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .news_single__content {
        width: 100%;
    }
    .nav-links {
        padding: 0 10px;
    }
}

/*comments*/

.comments-area {
    background-image: url(../image/post_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 40px;
    padding: 10px 30px 13px;
}

.comment-reply-title {
    margin: 12px 0;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: inline-block;
    min-width: 66px;
    margin-right: 18px;
}

.comment-notes {
    font-style: italic;
}

.comment-form .form-submit .submit {
    width: 120px;
    padding: 5px;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    border: none;
    border-radius: 4px;
    background-image: url(../image/btn_back@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/*author*/
.comment {
    position: relative;
    padding: 18px 0;
}
.comment:last-of-type::before {
    content: '';
    position: absolute;
    background-image: url(../image/dots.png);
    width: 100%;
    height: 2px;
    bottom: 0;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.comment-awaiting-moderation {
    width: 100%;
    text-align: right;
}

.comment-meta a {
    color: #010101;
}

.comment-content a,
.reply a {
    color: #004bd4;
    text-decoration: none;
}

/*all_news*/

.all_news .entry-content::before {
    display: none;
}

.all_news::after {
    display: none;
}

.all_news .content-page {
    margin: 0;
    padding: 0;
    background-image: none;
}

.all_news .content-page::after {
    content: none;
}

.wp-block-latest-posts__list li {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.wp-block-latest-posts__list li > a {
    display: block;
    padding: 0px 0 10px;
    color: #010101;
    font-weight: 500;
    text-decoration: none;
    font-size: 22px;
}

.wp-block-latest-posts__post-full-content {
    width: 100%;
    padding-top: 23px;
    position: relative;
}

.wp-block-latest-posts__post-full-content::after {
    content: '';
    position: absolute;
    background-image: url(../image/dots.png);
    width: 100%;
    height: 2px;
    top: 0;
}

@media (max-width: 1023px) {
    .news__header {
        width: 100%;
        font-size: 22px;
        margin: 0 0 10px 0;
        background-image: none;
        padding: 15px 5px;
        background-color: #ffef5a;
        flex-direction: column;
    }
    .entry-content::before {
        content: none;
    }
    .all_news .content-page {
        background-color: transparent;
    }
    .wp-block-latest-posts__list li > a {
        font-size: 18px;  
    }
    .wp-block-latest-posts__post-full-content {
        padding: 0;
    }
    .wp-block-latest-posts__post-full-content::after {
        content: none;
    }
}