body.type-post article {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}


body.type-post article img {
    width: 100%;
    height: auto;
    flex: 1;
    object-fit: contain;
}


body.type-post article footer {
    width: 100%;
}


body.type-post .news-item-detail {
    /* padding-bottom: 32px; */
    padding-bottom: 0;
}

/* body.type-post .news-item-detail div.text p:first-of-type {
    color: #e5ce99 !important;
} */

body.type-post .news-item-detail div.text h2 {
    font-size: 21px;
    margin-bottom: 0;
}

body.type-post .news-item-detail div.text p {
    margin-bottom: 8px;
    letter-spacing: 0px;
}


body.type-post .news-item-detail div.text ul,
body.type-post .news-item-detail div.text ol {
    margin-top: 0;
}

.news-item-detail .next-prev {
    display: none;
}

.next-blog-text p,
.next-blog-text h2 {
    margin: 5px 0;
}

.next-blog-text h2 {
    color: #e5ce99;
}

.next-blog {
    display: flex;
    gap: 80px;
}

.next-blog-items {
    display: flex;
}

.next-blog-items .image {
    width: 270px;
    margin-right: 20px;
}

@media(min-width:992px) and (max-width: 1200px) {
    body.type-post article {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    body.type-post article {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .next-blog {
        display: flex;
        flex-direction: column;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    body.type-post article {
        margin-top: 20px;
    }

    article header h1[itemprop="headline"] {
        font-size: 40px;
    }

    body.type-post article {
        gap: 0 !important;
    }

    .next-blog {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .next-blog-items .image {
        width: 160px;
        margin-right: 10px;
    }

    .next-blog-items {
        display: flex;
        gap: 10px;
    }
}