.posts-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.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(--hover-main-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;
}
.archive-breadcrumb {
    margin-top: 40px;
    text-align: center;
}

.posts-page__title {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.post-content__title a {
    color: #020429;
    font-size: 24px;
    line-height: 100%;
}

.archive-description {
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.4em;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.archive-description>* {
    margin-bottom: 15px;
}





/* load more */
.load-more {
    border-radius: 144px;
    backdrop-filter: blur(8px);
    width: 130px;
    height: 130px;
    color: #fff;
    background: #0094E7;
    font-weight: bold;
    font-size: 18px;
    transition: .4s;
    cursor: pointer;
}

.load-more:hover {
    transform: translateY(10px);
    box-shadow: 0px 0px 34px 0px rgba(48, 168, 255, 0.25);
}
.load-more.loading {
    opacity: .5;
    transform: none;
    user-select: none;
    pointer-events: none;
    animation: 1s opacityAnim infinite;
}

@keyframes opacityAnim {
    0% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }
}


@media screen and (max-width: 1025px) {
    .posts-wrapper{
        column-gap: 20px;
        row-gap: 20px;
    }
    .posts-page__title {
        margin-bottom: 30px;
    }
}

@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 {
    padding: 30px;
    background: #fff;
    border-radius: 24px;
}

.post-content img {
    border-radius: 24px;
}
.post-content__image img{
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
}

.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: 36px;
}
.post-content__entry{
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.4em;
    height: calc(3 * 1.4em);
    overflow: hidden;
}

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

.post-content__btn {
    padding: 15px 50px;
}
@media screen and (max-width: 1600px) {
    .post-content__entry p{
        font-size: 16px;
        line-height: 18px;
    }
}

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

@media screen and (max-width: 1025px) {
    .post-content__image img{
        height: 250px;
    }
    .post-content {
        padding: 15px;
    }
    .post-content__title a {
        font-size: 28px;
    }
}

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

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

    .post-content__entry{
        margin-top: 10px;
    }
}
@media screen and (max-width: 500px) {
    .post-content__image img {
        height: 250px;
    }
}

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

















