.archive-posts {
    padding: 100px 0;
    background-color: var(--color_light_yellow2);
}

.archive-posts .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 40px;
}

.archive-posts .posts-grid .post-summary {
    background-color: var(--color_white);
}

.archive-posts .posts-grid .archive-post-data {
    padding: 25px 15px 35px;
}

.archive-posts .post-thumbnail a {
    width: 100%;
}

.archive-posts .post-thumbnail img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    object-position: top center;
}

.archive-posts .posts-grid .archive-post-data .post-title {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.archive-posts .posts-grid .archive-post-data .post-title:hover {
    color: var(--color_blue);
}

.archive-posts .navigation.pagination {
    width: fit-content;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100%;
}

.archive-posts .pagination .page-numbers {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    margin: 0 12px;
    text-decoration: none;
}

.archive-posts .pagination .prev.page-numbers,
.archive-posts .pagination .next.page-numbers {
    text-decoration: none;
}

@media (max-width: 1199px) {
    .archive-posts {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .archive-posts .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-posts .pagination {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .archive-posts {
        padding: 60px 0;
    }

    .archive-posts .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 25px;
    }

    .archive-posts .pagination {
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .archive-posts .posts-grid {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;
    }
}