.global_single_post {
    margin: 100px 0;
}

.global_single_post_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single .single_entry_wrap {
    width: 15%;
}

.single .single_data_wrap {
    width: 85%;
    padding-left: 25px;
}

.single .entry-title {
    color: var(--color_blue);
}

.single .entry-content {
    font-size: 19px;
}

.single .entry-meta .post-date {
    margin-bottom: 10px;
}

.single_data_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single .single_post_content {
    width: 65%;
    padding-right: 25px;
}

.single .recent-posts {
    width: 35%;
}

.single .recent-posts ul {
    margin: 0;
    list-style: none;
}

.single .recent-posts ul li {
    margin: 0;
    padding: 0;
}

.single .recent-posts ul li a {
    color: var(--color_black_text);
}

.single .recent-posts ul li a:hover {
    color: var(--color_blue);
}

@media (max-width: 1199px) {
    .global_single_post {
        margin: 80px 0;
    }
}

@media (max-width: 991px) {

    .single .entry-meta {
        margin-bottom: 20px;
    }

    .global_single_post {
        margin: 60px 0;
    }

    .single .single_entry_wrap {
        width: 100%;
    }

    .single .single_data_wrap {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .single .single_post_content {
        width: 100%;
        padding-right: 0;
    }

    .single .recent-posts {
        width: 100%;
    }
    .single .entry-content {
    font-size: 19px;
}
}