.posts-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 120px;
    row-gap: 80px;
}

.posts-navigation{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.posts-navigation__button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 5px;
}

.posts-navigation__button path{
    transition: .2s;
}

.posts-navigation__button:hover path{
    stroke: var(--green-color);
}

.posts-navigation__button-prev{
    margin-right: 30px;
    padding-left: 10px;
}

.posts-navigation__button-next{
    margin-left: 30px;
    padding-right: 10px;
}

.page-numbers:not(.next, .prev){
    margin-inline: 10px;
    padding-block: 5px;
}

@media screen and (max-width: 1600px) {
    .posts-wrapper{
        column-gap: 100px;
    }
}

@media screen and (max-width: 1200px) {
    .posts-wrapper{
        column-gap: 80px;
        row-gap: 60px;
    }
}

@media screen and (max-width: 1025px) {
    .posts-wrapper{
        column-gap: 60px;
        row-gap: 45px;
    }
}

@media screen and (max-width: 767px) {
    .posts-wrapper{
        grid-template-columns: 100%;
        row-gap: 30px;
    }

    .posts-navigation{
        margin-top: 45px;
    }

}

@media screen and (max-width: 370px){
    .posts-navigation{
        margin-top: 30px;
    }
}




















/* Post content */
.post-content__image img{
    height: 550px;
    object-fit: cover;
    border-radius: 5px;
}

.post-content__image .post-thumbnail{
    position: relative;
    display: block;
}

.post-content__image .post-thumbnail:after{
    content: "";
    background: var(--black-color);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    border-radius: 5px;
}

.post-content__image .post-thumbnail:hover:after{
    opacity: 0.1;
}

.post-content__body{
    margin-top: 20px;
}

.post-content__title{
    margin-bottom: 10px;
}

.post-content__title a{
    font-size: 22px;
    line-height: 22px;
}

.post-content__meta span{
    font-size: 14px;
    line-height: 14px;
}

.post-content__entry{
    margin-top: 20px;
}

.post-content__entry p{
    font-size: 18px;
    line-height: 20px;
}

@media screen and (max-width: 1600px) {
    .post-content__image img{
        height: 480px;
    }

    .post-content__title{
        margin-bottom: 5px;
    }

    .post-content__entry{
        margin-top: 15px;
    }

    .post-content__title a{
        font-size: 20px;
        line-height: 20px;
    }

    .post-content__meta span{
        font-size: 12px;
        line-height: 12px;
    }

    .post-content__entry p{
        font-size: 16px;
        line-height: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .post-content__image img{
        height: 380px;
    }
}

@media screen and (max-width: 1025px) {
    .post-content__image img{
        height: 350px;
    }
}

@media screen and (max-width: 767px) {
    .post-content__image img{
        height: 300px;
    }

    .post-content__title a{
        font-size: 18px;
        line-height: 20px;
    }

    .post-content__entry{
        margin-top: 10px;
    }
}

@media screen and (max-width: 370px){
    .post-content__image img{
        height: 250px;
    }
}

















/* Single post */
.single-post__image img{
    border-radius: 5px;
    object-fit: cover;
    height: 500px;
}

.single-post__body{
    margin-top: 30px;
}

.single-post__title{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 5px;
}

.single-post__meta span{
    font-size: 16px;
    line-height: 16px;
}

.single-post__entry{
    margin-top: 20px;
}

.single-post__entry p {
    font-size: 20px;
    line-height: 24px;
}

@media screen and (max-width: 1600px) {
    .single-post__image img{
        height: 450px;
    }

    .single-post__title{
        font-size: 24px;
        line-height: 24px;
    }

    .single-post__meta span{
        font-size: 14px;
        line-height: 14px;
    }

    .single-post__entry{
        margin-top: 15px;
    }

    .single-post__entry p {
        font-size: 18px;
        line-height: 20px;
    }
}

@media screen and (max-width: 1025px) {
    .single-post__image img{
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .single-post__image img{
        height: 350px;
    }

    .single-post__body{
        margin-top: 20px;
    }

    .single-post__title{
        font-size: 18px;
        line-height: 18px;
    }

    .single-post__meta span{
        font-size: 12px;
        line-height: 12px;
    }

    .single-post__entry{
        margin-top: 10px;
    }

    .single-post__entry p {
        font-size: 16px;
        line-height: 18px;
    }
}

@media screen and (max-width: 400px) {
    .single-post__image img{
        height: 250px;
    }
}